* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2473A7;
    --primary-dark: #1b5e89;
    --dark: #222222;
    --text: #222222;
    --muted: #777777;
    --light: #f6f8fa;
    --border: #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}


/* ================= TOPBAR ================= */

.topbar {
    height: 30px;
    background: #1d1d1d;
    color: #ccc;
    font-size: 12px;
}

.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social {
    display: flex;
    gap: 14px;
}

.social a:hover {
    color: var(--primary);
}


/* ================= NAVBAR ================= */

.navbar {
    width: 100%;
    height: 78px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 1000;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo img {
    width: 175px;
    height: auto;
    display: block;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 38px;
}

.navbar nav > a,
.dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    height: 78px;
    color: #333333;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
    transition: color .2s ease;
}

.navbar nav > a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 0;
    height: 2px;
    background: #2473A7;
    transform: translateX(-50%);
    transition: width .2s ease;
}

.navbar nav > a:hover,
.navbar nav > a.active,
.nav-dropdown:hover .dropdown-toggle {
    color: #2473A7;
}

.navbar nav > a:hover::after,
.navbar nav > a.active::after,
.nav-dropdown:hover .dropdown-toggle::after {
    width: 18px;
}

.nav-dropdown {
    position: relative;
    height: 100%;
}

.dropdown-toggle {
    gap: 5px;
}

.dropdown-toggle span {
    font-size: 14px;
    line-height: 1;
    margin-top: -2px;
}

.dropdown-menu {
    position: absolute;
    top: 67px;
    left: 50%;
    width: 245px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 2000;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 9px;
    height: 9px;
    background: #ffffff;
    border-left: 1px solid #eeeeee;
    border-top: 1px solid #eeeeee;
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    position: relative;
    display: block;
    padding: 11px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s ease;
}

.dropdown-menu a:hover {
    background: #f5f8fa;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu strong {
    display: block;
    margin-bottom: 3px;
    color: #222222;
    font-size: 12px;
    font-weight: 600;
}

.dropdown-menu small {
    display: block;
    color: #999999;
    font-size: 12px;
    line-height: 1.4;
}

.nav-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search {
    width: 205px;
    height: 38px;
    display: flex;
    align-items: center;
    background: #f6f8f9;
    border: 1px solid #e6eaec;
    border-radius: 20px;
    padding-left: 13px;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.search:focus-within {
    background: #ffffff;
    border-color: #2473A7;
    box-shadow: 0 6px 20px rgba(36, 115, 167, .10);
}

.search input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 5px;
    color: #333333;
    font-size: 12px;
}

.search input::placeholder {
    color: #999999;
}

.search button {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #2473A7;
    font-size: 18px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 0;
    outline: 0;
    background: #f5f7f8;
    border-radius: 10px;
    color: #2473A7;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 950px) {
    .navbar nav {
        gap: 22px;
        margin-right: 22px;
    }

    .search {
        width: 175px;
    }

    .logo img {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 68px;
    }

    .nav-container {
        position: relative;
    }

    .logo img {
        width: 145px;
    }

    .nav-right {
        margin-left: auto;
        margin-right: 10px;
    }

    .search {
        width: 145px;
        height: 34px;
    }

    .search button {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 10px 20px 15px;
        background: #ffffff;
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
        box-shadow: 0 12px 25px rgba(0, 0, 0, .07);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .navbar nav.mobile-open {
        display: flex;
    }

    .navbar nav > a,
    .dropdown-toggle {
        height: 48px;
        padding: 0 5px;
        justify-content: space-between;
        font-size: 12px;
    }

    .navbar nav > a::after,
    .dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown {
        height: auto;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        padding: 4px 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .nav-dropdown.mobile-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        padding: 10px 12px 10px 20px;
    }

    .dropdown-menu strong {
        font-size: 12px;
    }

    .dropdown-menu small {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 130px;
    }

    .nav-right {
        margin-right: 7px;
    }

    .search {
        width: 125px;
    }

    .search input {
        font-size: 12px;
    }

    .search input::placeholder {
        font-size: 12px;
    }

    .menu-toggle {
        width: 35px;
        height: 35px;
    }
}


/* ================= HERO SLIDER ================= */

.hero {
    padding: 25px 0 35px;
    background: #ffffff;
}

.hero-slider {
    position: relative;
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-slide {
    display: none;
    width: 100%;
}

.hero-slide.active {
    display: block;
}

.hero-content {
    min-height: 510px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 35px;
    padding: 45px 55px 55px;
    box-sizing: border-box;
}

.hero-text {
    max-width: 570px;
}

.hero-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #2473A7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.hero-text h1 {
    margin: 0 0 20px;
    color: #202020;
    font-size: 43px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -.8px;
}

.hero-text h1 strong {
    color: #2473A7;
    font-weight: 700;
}

.hero-text p {
    max-width: 500px;
    margin: 0 0 27px;
    color: #777777;
    font-size: 13px;
    line-height: 1.8;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    height: 43px;
    padding: 0 20px;
    box-sizing: border-box;
    background: #2473A7;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}

.hero-button:hover {
    background: #1d608b;
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 560px;
    max-height: 430px;
    height: auto;
    display: block;
    object-fit: contain;
}

.slider-dots {
    position: absolute;
    left: 55px;
    bottom: 15px;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 10;
}

.slider-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.slider-dots span.active {
    width: 21px;
    border-radius: 10px;
    background: #2473A7;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    background: #ffffff;
    color: #2473A7;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
    transition: background .2s ease, color .2s ease;
}

.slider-arrow:hover {
    background: #2473A7;
    color: #ffffff;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

@media (max-width: 1050px) {
    .hero-content {
        min-height: 450px;
        padding: 40px 45px 50px;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image {
        min-height: 350px;
    }

    .hero-image img {
        max-height: 370px;
    }

    .slider-dots {
        left: 45px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 12px 0 30px;
    }

    .hero-slider {
        width: 94%;
    }

    .hero-content {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 35px 30px 45px;
        text-align: center;
    }

    .hero-text {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-label {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .hero-text h1 {
        margin-bottom: 15px;
        font-size: 31px;
        line-height: 1.2;
    }

    .hero-text p {
        max-width: 500px;
        margin: 0 auto 22px;
        font-size: 12px;
        line-height: 1.7;
    }

    .hero-button {
        height: 40px;
        min-width: 135px;
        font-size: 12px;
    }

    .hero-image {
        min-height: 260px;
        margin-top: 5px;
    }

    .hero-image img {
        width: 90%;
        max-width: 450px;
        max-height: 280px;
    }

    .slider-dots {
        left: 50%;
        bottom: 12px;
        transform: translateX(-50%);
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 19px;
    }

    .slider-prev {
        left: 7px;
    }

    .slider-next {
        right: 7px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 8px 0 25px;
    }

    .hero-slider {
        width: 96%;
    }

    .hero-content {
        gap: 5px;
        padding: 28px 22px 38px;
    }

    .hero-label {
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: 1.3px;
    }

    .hero-text h1 {
        margin-bottom: 13px;
        font-size: 25px;
        letter-spacing: -.4px;
    }

    .hero-text p {
        margin-bottom: 18px;
        font-size: 12px;
        line-height: 1.7;
    }

    .hero-button {
        min-width: 125px;
        height: 37px;
        padding: 0 15px;
        font-size: 12px;
    }

    .hero-image {
        min-height: 205px;
        margin-top: 8px;
    }

    .hero-image img {
        width: 95%;
        max-height: 220px;
    }

    .slider-dots {
        bottom: 9px;
    }

    .slider-dots span {
        width: 6px;
        height: 6px;
    }

    .slider-dots span.active {
        width: 17px;
    }
}

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 4px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    transition: .2s;
}

.btn:hover {
    background: var(--primary-dark);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.slider-dots span {
    width: 7px;
    height: 7px;
    background: #bbb;
    border-radius: 50%;
}

.slider-dots .active {
    background: var(--primary);
}


/* ================= SECTION ================= */

.section {
    padding: 65px 0;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: 27px;
    margin-top: 5px;
}

.section-heading.center {
    text-align: center;
}


/* ================= CATEGORY ================= */
.categories {
    padding: 65px 0 70px;
    background: #ffffff;
}

.categories-heading {
    max-width: 600px;
    margin: 0 auto 35px;
    text-align: center;
}

.categories-heading span {
    display: block;
    margin-bottom: 7px;
    color: #2473A7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.categories-heading h2 {
    margin: 0 0 10px;
    color: #222222;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.2;
}

.categories-heading p {
    margin: 0;
    color: #888888;
    font-size: 12px;
    line-height: 1.7;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category-card {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #eeeeee;
    border-radius: 8px;
    text-decoration: none;
    aspect-ratio: 5 / 3;
}

.category-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease;
}

.category-card:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .categories {
        padding: 55px 0 60px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 600px) {
    .categories {
        padding: 50px 0 55px;
    }

    .categories-heading {
        margin-bottom: 25px;
    }

    .categories-heading h2 {
        font-size: 23px;
    }

    .categories-heading p {
        font-size: 12px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-card {
        border-radius: 7px;
    }
}

@media (max-width: 400px) {
    .categories {
        padding: 45px 0 50px;
    }

    .categories-heading h2 {
        font-size: 21px;
    }

    .categories-heading span {
        font-size: 12px;
    }

    .categories-heading p {
        font-size: 12px;
    }
}

/* ================= CTA ================= */


/* ================= FOOTER ================= */

footer {
    background: #171b1f;
    color: #fff;
    margin-top: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(140px, .8fr) minmax(260px, 1.2fr);
    gap: 80px;
    padding-top: 65px;
    padding-bottom: 60px;
}

.footer-about {
    max-width: 430px;
}

.footer-about h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .3px;
}

.footer-about p {
    max-width: 400px;
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.footer-column > a:not(.footer-social) {
    margin-bottom: 12px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.4;
}

.footer-social i {
    width: 18px;
    flex-shrink: 0;
    color: rgba(255,255,255,.8);
    font-size: 16px;
    line-height: 1;
}

.footer-social span {
    white-space: nowrap;
}

.copyright {
    padding: 18px 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.35);
    text-align: center;
    font-size: 12px;
}

.footer-column > a:not(.footer-social) {
    transition: color .2s ease;
}

.footer-column > a:not(.footer-social):hover {
    color: #fff;
}

.footer-social {
    transition: color .2s ease, transform .2s ease;
}

.footer-social:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-social:hover i {
    color: #2473A7;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1.3fr;
        gap: 40px;
    }
}

@media (max-width: 650px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
        padding-top: 50px;
        padding-bottom: 45px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-about p {
        max-width: 500px;
    }

    .footer-contact {
        grid-column: 2;
    }

    .footer-social span {
        white-space: normal;
    }
}

@media (max-width: 450px) {
    .footer-container {
        display: block;
    }

    .footer-about,
    .footer-column {
        margin-bottom: 35px;
    }

    .footer-contact {
        margin-bottom: 0;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 800px) {

    .container {
        width: 92%;
    }

    .topbar {
        display: none;
    }

    .navbar {
        height: 60px;
    }

    .nav-container {
        gap: 0;
    }

    nav,
    .nav-right {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    nav.mobile-open {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        padding: 45px 0 15px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        height: 270px;
        justify-content: center;
    }

    .hero-image img {
        max-height: 270px;
    }

    .section {
        padding: 45px 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .product-info strong {
        font-size: 12px;
    }
}


@media (max-width: 450px) {

    .logo {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .product-heading {
        align-items: start;
    }

}

.testimonials {
    padding: 55px 0;
    background: #2473A7;
    color: #fff;
    overflow: hidden;
}

.testimonials-heading {
    margin-bottom: 30px;
}

.testimonials-heading span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.testimonials-heading h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
}

.testimonial-slider {
    max-width: 900px;
    margin: auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .4s ease;
}

.testimonial-main {
    min-width: 100%;
    box-sizing: border-box;
    padding: 28px 35px 25px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    color: #2473A7;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-profile h3 {
    margin: 0 0 2px;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-profile span {
    color: rgba(255,255,255,.55);
    font-size: 12px;
}

.testimonial-content {
    max-width: 650px;
    margin: 25px auto 0;
    text-align: center;
}

.testimonial-quote {
    margin-bottom: 8px;
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: .5;
    color: rgba(255,255,255,.3);
}

.testimonial-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.testimonial-footer {
    max-width: 900px;
    margin: 15px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-footer > span {
    color: rgba(255,255,255,.5);
    font-size: 12px;
    letter-spacing: 1px;
}

.testimonial-controls {
    display: flex;
    gap: 5px;
}

.testimonial-controls button {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 45px 0;
    }

    .testimonials-heading {
        margin-bottom: 25px;
    }

    .testimonials-heading h2 {
        font-size: 22px;
    }

    .testimonial-main {
        padding: 23px 22px;
    }

    .testimonial-content {
        margin-top: 22px;
    }

    .testimonial-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonial-main {
        padding: 20px 17px;
    }

    .testimonial-content p {
        font-size: 12px;
        line-height: 1.8;
    }
}


.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
    z-index: 9999;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 9px 25px rgba(0, 0, 0, .23);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 27px;
    }
}