/* -----------------utility class-------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 40%,
            rgba(240, 174, 88, 0.333) 0%,
            rgba(234, 151, 42, 0) 25%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(32, 210, 121, 0.25) 75%,
            rgba(0, 200, 100, 0.315) 100%),
        linear-gradient(90deg,
            rgba(255, 180, 80, 0.25) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(0, 200, 100, 0.25) 100%),
        #f7f7f7;
}


:root {
    --style: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --orange: #f26522;
    --green: #009245;
    --white: #ffffff;
    --nevy: #0c1a24;
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --background:
        radial-gradient(circle at 10% 40%,
            rgba(240, 174, 88, 0.333) 0%,
            rgba(234, 151, 42, 0) 25%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(32, 210, 121, 0.25) 75%,
            rgba(0, 200, 100, 0.315) 100%),
        linear-gradient(90deg,
            rgba(255, 180, 80, 0.25) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(0, 200, 100, 0.25) 100%),
        #f7f7f7;
}

h1 {
    font-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;
    transition: color 0.25s var(--ease-soft);
}

.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;

    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);

    /* Smoother, more organic float */
    animation: floatingButton 3.2s var(--ease-soft) infinite;
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

/* Hover */
.float-btn:hover {
    transform: scale(1.14) translateY(-4px);
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.35);
    animation-play-state: paused;
}

/* Smoother floating movement with slight ease-in/out on both ends */
@keyframes floatingButton {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* WhatsApp */
.whatsapp {
    background: #25D366;
    font-size: 30px;
    animation-duration: 2.6s;
}

/* Call */
.call {
    background: #0078ff;
    animation-duration: 3.1s;
}

/* Responsive */
@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 {
    background:
        radial-gradient(circle at 10% 40%,
            rgba(240, 174, 88, 0.333) 0%,
            rgba(234, 151, 42, 0) 25%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(32, 210, 121, 0.25) 75%,
            rgba(0, 200, 100, 0.315) 100%),
        linear-gradient(90deg,
            rgba(255, 180, 80, 0.25) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(0, 200, 100, 0.25) 100%),
        #f7f7f7;

    padding: 0.8rem 2rem 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(90, 90, 90, 0.2);
    transition: background 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft);
    z-index: 100;
}

.header.scrolled {
    background-color: rgba(30, 30, 30, 0.85);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.nav-left {
    max-width: 28rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 4rem;
    height: 4rem;
    transition: transform 0.4s var(--ease-smooth);
}

.logo:hover {
    transform: rotate(-6deg) scale(1.05);
}

.logo-text {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: start;
    margin-bottom: 0.5rem;
}

.devo {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: start;
    font-weight: 500;
    font-size: 1.5rem;
    margin-left: 0.3rem;
    color: var(--orange);
    line-height: 2rem;
    letter-spacing: 0.5px;
}

.devo span {
    color: var(--green)
}

.sub-t {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: start;
    font-weight: 500;
    font-size: 1rem;
    margin-left: 0.3rem;
    color: var(--nevy);
    line-height: 1.2rem;
    letter-spacing: 1.2px;
}

#about {
    scroll-margin-top: 80px;
}

.book button {
    background: var(--orange);
    color: #fff;
    border: 1px solid var(--nevy);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
    gap: 10px;
    transition: all 0.35s var(--ease-smooth);
}

.book button i {
    font-size: 20px;
    transition: transform 0.35s var(--ease-smooth);
}

.book button:hover {
    background: rgb(231, 109, 49);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(242, 101, 34, 0.35);
}

.book button:hover i {
    transform: rotate(-15deg);
}


.nav-data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    position: relative;
    width: 40px;
    height: 40px;
}

.bar,
.close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 4rem;
    cursor: pointer;
    transition: opacity 0.25s var(--ease-soft), transform 0.35s var(--ease-smooth);
}

.nav-toggle i {
    font-size: 1.6rem;
}

.close {
    opacity: 0;
}

@media screen and (max-width:960px) {
    .header {
        padding: 0.1rem 0.2rem;
    }

    .nav-left {
        max-width: 30rem;
    }

    .logo {
        width: 3.5rem;
        height: 3.5rem;
    }

    .logo-text {
        align-items: start;
    }

    .devo {
        font-weight: 500;
        font-size: 1.45rem;
    }

    .sub-t {
        font-weight: 500;
        font-size: 0.99rem;
    }

    .nav-menu {
        position: absolute;
        border-top: 1px solid var(--nevy);
        left: -100%;
        top: 4.68rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: left 0.45s var(--ease-smooth), opacity 0.35s var(--ease-soft);
        z-index: 100;
        background-color: white;
    }

    .nav-link {
        color: black;
        font-weight: 400 !important;
        font-size: 1rem !important;
        padding: 0.9rem 1rem;
    }

    .nav-menu::-webkit-scrollbar {
        width: 0;
    }

    .nav {
        padding: 0.4rem 0.5rem;
    }

    .book {
        padding: 1rem 16px !important;
        margin-top: 0rem;
        font-size: 1.1rem !important;
        border-radius: 6px;
        width: 100%;
        text-align: center;
        justify-content: center !important;
    }

    .book button {
        width: 100%;
        margin-left: 0rem;
        justify-content: center;
    }
}

.nav-link {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s var(--ease-soft), transform 0.25s var(--ease-soft);
}

.nav-link i {
    font-size: 12px;
}

.show-menu {
    left: 0;
    opacity: 1;
    pointer-events: initial;
}

.show-icon .bar {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.show-icon .close {
    opacity: 1;
    transform: rotate(90deg) scale(1);
}

@media screen and (min-width: 961px) {
    .nav {
        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.3rem 0.7rem;
        justify-content: initial;
        column-gap: .5rem;
        font-size: 1rem;
        color: black;
    }

    .nav-link:hover {
        background-color: rgb(246, 244, 244);
        border-radius: 6px;
        transform: translateY(-1px);
    }
}























/* -----------------------footer-section--------------- */
.footer {
    background: #000000f8;
    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.8rem;
    transition: transform 0.4s var(--ease-smooth);
}

.footer-about .logo1:hover img {
    transform: rotate(-6deg) scale(1.05);
}

.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 var(--ease-soft), transform 0.3s var(--ease-soft), padding-left 0.3s var(--ease-soft);
    display: inline-block;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--accent, var(--orange));
    padding-left: 4px;
}

.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 var(--ease-soft), transform 0.3s var(--ease-smooth);
}

.footer-contact .social-icons a:hover {
    transform: translateY(-4px) scale(1.15);
}

.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, var(--orange));
}

.footer-contact a:hover {
    color: var(--accent, var(--orange));
}

.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;
    transition: color 0.3s var(--ease-soft);
}

.footer-bottom .policy-links a:hover {
    color: var(--accent, var(--orange));
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

.footer-bottom span {
    color: var(--orange);
    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: 4rem;
    }

    .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: 10px 0;
    }

    .footer-links a,
    .footer-products a {
        font-size: 0.9rem;
    }

    .footer-contact .social-icons {
        gap: 0.9rem;
        margin-bottom: 15px;
    }

    .footer-contact .social-icons a {
        font-size: 1.5rem;
    }

    .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;
    }
}

.quote-success,
.quote-error {
    max-width: 700px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
}

.quote-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}