/* -----------------utility class-------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 95% 40%,
            /* Position glow at the far right */
            rgba(255, 80, 50, 0.38) 0%,
            /* Start color: soft red/orange glow */
            rgba(255, 80, 50, 0.15) 30%,
            rgba(44, 17, 17, 0) 70%),
        #141c23;
    /* dark navy/black fallback */
}


:root {
    --primary-color: #63e5ff;
    --secondary-color: #b1f1ff;
    --section-margin: 1rem;
    --section-pading: 1rem;
    --nav-padding: 1vw 3vw;
    --botton-border-radius: 5px;
    --border-radius-10px: 6px;
    --container-border: 1px solid #cccccc;
    --container-background-color: white;
    --nevy: #0c1a24;
    --accent: #e05a44;
    --text-light: #d1d1d1;
    ;
    --style: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;



}

h1 {
    --heading-size: 2.5rem;
    --font-weight: 900;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: justify;
    line-height: 2rem;
    color: black;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
}

/* Floating Buttons Section */
.floating-buttons-section {
    position: relative;
    z-index: 999;
}

/* Button container */
.floating-buttons {
    position: fixed;
    right: 1rem;
    bottom: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Common button styles */
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hover animation */
.float-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

/* WhatsApp & Call colors */
.whatsapp {
    background: #25D366;
}

.call {
    background: #0078ff;
}

/* Responsive adjustments */
@media (max-width: 530px) {
    .floating-buttons {
        right: 0.5rem;
        bottom: 1rem;
        gap: 10px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* ---------------------------navigation-start--------------------------- */
.header {

    width: 100%;
    background-color: var(--nevy);
    transition: background-color 0.35s ease;
    z-index: 100;
}

.header.scrolled {
    background-color: rgba(30, 30, 30, 0.85);
}

.nav-left {
    max-width: 28rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
}


.logo {
    width: 4.3rem;
}

.logo-text {
    flex-direction: column;
}

.can {
    font-family: 'Fredoka', sans-serif;
    text-align: start;
    padding-top: 5px;
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
    text-shadow: 1px 1px 1px #ff0404;
}


.nav-data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    color: white;
}

.bar,
.close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity .1s, transform .2s;
}

.nav-toggle i {
    font-size: 1.4rem;
}

.close {
    opacity: 0;
}

.nav-link {
    font-family: Segoe UI, Arial, sans-serif;
    ;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}

.nav-link:hover {
    color: #d6513d;
}

.nav-list .active {
    color: #d6513d;
}


@media screen and (max-width:769px) {
    .nav-left {
        max-width: 30rem;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background:
            radial-gradient(circle at 95% 40%,
                /* Position glow at the far right */
                rgba(255, 102, 75, 0.126) 0%,
                /* Start color: soft red/orange glow */
                rgba(255, 80, 50, 0.15) 30%,
                rgba(113, 103, 103, 0) 70%),
            #141c23;
        transition: background-color 0.35s ease;
    }
    .logo {
        width: 4rem;
    }

    .logo-text {
        align-items: start;
    }

    .can {
        font-size: 1.3rem;
        padding-top: 1px;
    }

    .nav-data {
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu {
        position: absolute;
        left: 0;
        top: 4.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        background-color: rgb(255, 255, 255);
        transition: top .3s, opacity .2s;
    }

    .nav-link {
        color: black;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .nav-menu::-webkit-scrollbar {
        width: 0;
    }

    .nav {
        padding: 0.8rem 0.5rem;
    }

}

@media screen and (max-width:530px) {

    .logo {
        width: 3.8rem;
    }

    .logo-text {
        align-items: start;
    }

    .can {
        padding-top: 5px;
        font-weight: 700;
        font-size: 1.3rem;
        text-shadow: 1px 0.5px 1px #ff0404;
    }
}

.nav-link i {
    font-size: 12px;
}

.show-menu {
    opacity: 1;
    pointer-events: initial;
    z-index: 100;
}

.show-icon .bar {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .close {
    opacity: 1;
    transform: rotate(90deg);
}

.dropdown-item {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 1rem;
    font-weight: initial;
    transition: transform .2s;
}

.dropdown-link {
    width: 100%;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color .3s;
}

.dropdown-link i {
    font-size: 12px;
    font-weight: initial;
}

.dropdown-link:hover {
    color: red;
}

.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    border-radius: 10px;
    transition: max-height .2s ease-out;
}

.dropdown-item:hover .dropdown-menu {
    transition: max-height .2s ease-in;
}

.plus {
    margin-left: auto;
}

@media screen and (min-width: 769px) {
    .nav {
        padding: var(--nav-padding);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-toggle {
        display: none;
    }

    .nav-list {
        height: 100%;
        display: flex;
    }

    .nav-link {
        height: 100%;
        padding: 0.5rem 0.7rem;
        justify-content: initial;
        column-gap: .5rem;
        font-size: 1rem;
        font-family: var(--style);
        color: white;

    }

    .dropdown-item {
        position: relative;
    }

    .dropdown-menu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        width: 210px;
        left: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s;
    }

    .dropdown-link {
        padding: 0.55rem 1rem;
    }

    .dropdown-item:hover .dropdown-menu {
        opacity: 1;
        pointer-events: initial;
        transition: top .3s;
    }
}

/* -----------------------footer-section--------------- */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 2rem 1rem;
    font-family: var(--style);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.footer-about .logo1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-about .logo1 img {
    width: 3.8rem;
    height: 3.3rem;
}

.logo1 h1 {
    font-size: 1.4rem;
    color: #fff;
    font-family: var(--style);
    font-weight: 500;
}

.footer-about .about-text {
    font-size: 0.8rem;
    color: #bbb;
    font-weight: 600;
    line-height: 1.45;
    font-family: var(--style);
}

.footer-links h3,
.footer-products h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}


.footer-links ul li,
.footer-products ul li {
    margin: 6px 0;
}

.footer-links a,
.footer-products a {
    color: #ccc;
    font-size: 0.9rem;
    font-family: var(--style);
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--accent);
}

.footer-contact .social-icons {
    display: flex;
    gap: 0.6rem;
}

.footer-contact p span {
    margin-left: 1rem;
}

.footer-contact .social-icons a {
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s;
}

.footer-contact a {
    color: #fff;
    line-height: 0.5;
    font-size: 0.9rem;
    font-family: var(--style);
    display: block;
    margin-block: 0.8rem;
}

.footer-contact .social-icons i:hover {
    color: var(--accent);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 0.9rem;
    margin: 6px 0;
    color: #fff;
    line-height: 1.5;
    text-align: start;

}

.footer-contact i {
    margin-right: 8px;
    color: #fff;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom .policy-links {
    margin-bottom: 8px;
}

.footer-bottom .policy-links a {
    color: #aaa;
    margin: 0 10px;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-bottom .policy-links a:hover {
    color: var(--accent);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

.footer-bottom span {
    color: #fbbf24;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 530px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }


    .footer-about .logo1 {
        gap: 0.5rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .footer-about .logo1 img {
        width: 4rem;
        height: 3.1rem;
    }

    .logo1 h1 {
        font-size: 1.18rem;
    }

    .footer-about .about-text {
        font-size: 0.8rem;
        line-height: 1.58;
    }

    .footer-contact p span {
        margin-left: 0rem;
    }


    .footer-links h3,
    .footer-products h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }


    .footer-links ul li,
    .footer-products ul li {
        margin: 6px 0;
    }

    .footer-links a,
    .footer-products a {
        font-size: 0.9rem;
    }

    .footer-contact .social-icons {
        gap: 0.6rem;
        margin-bottom: 15px;
    }

    .footer-contact .social-icons a {
        font-size: 1.2rem;
    }

    .footer-contact a {
        font-size: 0.9rem;
        margin-block: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
        margin: 9px 0;
        line-height: 1.5;
        text-align: center;

    }

    .footer-contact i {
        margin-right: 8px;
    }

    .footer-bottom {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .footer-bottom .policy-links {
        margin-bottom: 8px;
    }

    .footer-bottom .policy-links a {
        margin: 0 10px;
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    .footer-bottom span {
        font-weight: 500;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact .social-icons {
        justify-content: center;
    }
}