/* =========================
   ROOT VARIABLES
========================= */
:root {

    /* Colors */
    --primary-color: #ffed00;
    --secondary-color: #e5097f;
    --tertiary-color: #00a0e3;
    /* --accent-color: #e67e22; */
    --success-color: #2ecc71;
    --danger-color: #ce1515;
    --warning-color: #770000;

    --text-dark: #000000;
    --text-light: #777777;
    --white: #ffffff;
    --black: #000000;
    --border-color: #dddddd;
    --bg-light: #f8f9fa;

    /* Fonts */
    /* --font-main: 'Segoe UI', Arial, sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 20px;
    --font-size-xl: 24px; */

}

/* =========================
   CSS RESET / BASE
========================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth fonts */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* =========================
   IMAGES & MEDIA
========================= */

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    display: block;
}

/* =========================
   LINKS & BUTTONS
========================= */

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

/* =========================
   FORM ELEMENTS
========================= */

input,
textarea,
select,
button {
    font: inherit;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #007bff;
}

/* =========================
   LISTS
========================= */

ul,
ol {
    list-style: none;
}

/* =========================
   TABLE FIX
========================= */

table {
    border-collapse: collapse;
    width: 100%;
}

/* =========================
   FLEX & GRID HELPERS
========================= */

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid {
    display: grid;
}

/* =========================
   RESPONSIVE CONTAINER
========================= */

.container {
    width: min(1200px, 95%);
    margin-inline: auto;
}

/* =========================
   TEXT HELPERS
========================= */

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* =========================
   MOBILE SAFE DEFAULTS
========================= */

body {
    overflow-x: hidden;
    /* height: 100000vh; */
}

/* Navbar background glass effect */
.custom-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Logo */
.logo {
    width: 120px;
    /* height: 200px; */
    object-fit: contain;
    margin-right: 8px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem !important;
    display: flex !important;
    align-items: center;
    color: #111 !important;
    padding-bottom: 0 !important;
}

/* Menu links */
.nav-link {
    position: relative;
    font-weight: 500;
    margin-left: 25px;
    color: #333 !important;
    transition: 0.3s;
}

/* Hover underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero section */
.lux-swiper {
    height: 80vh;
    margin-top: 150px;
    overflow: hidden;
}

.swiper,
.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Background images */
.slide1 {
    background-image: url("/assets/images/banner.png");
}

.slide2 {
    background-image: url("/assets/images/swiper-bg-2.png");
}

.slide3 {
    background-image: url("/assets/images/swiper-bg-1.avif");
}

/* cinematic dark overlay */
.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));

}

/* center content */
.slide-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px 30px 10px;
    /* border-radius: 20px; */
    /* glass morph effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: reveal 1.2s ease forwards;
}


.slide-inner h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.slide-inner p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Luxury gradient button */
.lux-btn {
    padding: 14px 34px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary));
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.lux-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, var(--secondary), var(--primary-color));
}

/* reveal animation */
@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* pagination */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Navigation buttons */
.lux-nav {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Remove default swiper icon */
.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
}

/* Custom arrows */
.swiper-button-prev::before,
.swiper-button-next::before {
    font-size: 22px;
    color: white;
    font-weight: bold;
}

.swiper-button-prev::before {
    content: "‹";
}

.swiper-button-next::before {
    content: "›";
}

/* Hover effect */
.lux-nav:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary));
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Position */
.swiper-button-prev {
    left: 30px;
}

.swiper-button-next {
    right: 30px;
}

@media (max-width: 768px) {
    .lux-nav {
        display: none;
    }
}

.about-flow {
    position: relative;
    padding: 60px 0px;
    background: #fdfdfd;
    overflow: hidden;
}

/* floating gradient shapes */
.about-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
    animation: float 12s infinite alternate ease-in-out;
}

.shape1 {
    background: var(--primary-color);
    top: -200px;
    left: -200px;
}

.shape2 {
    background: var(--secondary-color);
    bottom: -200px;
    right: -200px;
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(80px);
    }
}

/* content layer */
.about-content {
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* giant title */
.flow-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    background: linear-gradient(45deg,
            var(--tertiary-color) 0%,
            var(--secondary-color) 50%,
            var(--primary-color) 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* lead text */
.flow-lead {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 50px;
    max-width: 700px;
}

/* flowing rows */
.flow-row {
    display: flex;
    gap: 60px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.flow-row h3 {
    flex: 1;
    font-size: 2rem;
    font-weight: 800;
    color: #111;
}

.flow-row p {
    flex: 2;
    font-size: 1.01rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
}

/* reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* mobile */
@media (max-width: 768px) {
    .flow-title {
        font-size: 3rem;
    }

    .flow-row {
        flex-direction: column;
        gap: 15px;
    }

    .flow-lead {
        font-size: 1.2rem;
    }
}

.vision-mission {
    position: relative;
    padding: 140px 20px;
    background: url("/assets/images/missiomn-vision.jpg") center/cover no-repeat;
    overflow: hidden;
    color: white;
    background-attachment: fixed;
}

/* blur overlay */
.vm-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* content */
.vm-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* divider line */
.vm-divider {
    width: 2px;
    height: 180px;
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

/* blocks */
.vm-block {
    flex: 1;
}

.vm-block h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vm-block p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.vm-block ul {
    padding-left: 20px;
}

.vm-block li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* mobile */
@media (max-width: 768px) {
    .vm-content {
        flex-direction: column;
        text-align: center;
    }

    .vm-divider {
        width: 80px;
        height: 2px;
    }

    .vm-block h2 {
        font-size: 2.3rem;
    }
}

.how-flow {
    padding: 140px 20px;
    background: linear-gradient(180deg, #fdfdfd, #f3f5f8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* glow background */
.how-flow::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    filter: blur(160px);
    opacity: 0.25;
    top: -150px;
    left: -150px;
}

.how-flow::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-color), transparent 70%);
    filter: blur(160px);
    opacity: 0.25;
    bottom: -150px;
    right: -150px;
}

.flow-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #111;
}

.flow-sub {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 80px;
}

/* vertical flow */
.flow-container {
    max-width: 900px;
    margin: auto;
    position: relative;
}

/* center glowing line */
.flow-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(var(--tertiary-color), var(--secondary-color));
    transform: translateX(-50%);
    border-radius: 20px;
    opacity: 0.6;
}

/* step */
.flow-step {
    display: flex;
    align-items: center;
    margin: 60px 0;
    position: relative;
}

.flow-step:nth-child(odd) {
    flex-direction: row;
}

.flow-step:nth-child(even) {
    flex-direction: row-reverse;
}

/* animated dot */
.flow-dot {
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px var(--primary-color);
    animation: pulse 2s infinite;
}

/* glass content */
.flow-content {
    width: 42%;
    padding: 35px;
    /* border-radius: 20px; */
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.flow-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.flow-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.flow-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--primary-color);
    }

    70% {
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

/* mobile */
@media (max-width: 768px) {
    .flow-container::before {
        left: 12px;
    }

    .flow-step {
        flex-direction: row !important;
        padding-left: 40px;
    }

    .flow-content {
        width: 100%;
    }

    .flow-dot {
        position: absolute;
        left: 0;
    }
}

.services-marquee {
    padding: 120px 0;
    background: #0f172a;
    /* Deep Navy/Black */
    overflow: hidden;
    position: relative;
}

/* Background Animated Glow */
.bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.services-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: #ffffff;
    letter-spacing: -1px;
}

.services-title span {
    background: linear-gradient(90deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Swiper Container */
.serviceSwiper {
    padding: 40px 0;
}

/* GLASS CARD DESIGN */
.service-card {
    width: 320px !important;
    height: 280px;
    padding: 40px 30px;
    border-radius: 24px;
    /* Soft modern curves */
    position: relative;
    z-index: 1;

    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Icon Styling */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f8fafc;
}

.service-card p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Inner Glow Effect on Hover */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* =========================
   FAQ SECTION FIXES
========================= */

.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* Individual FAQ Cards */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    margin-bottom: 16px;
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* Header Wrapper */
.faq-accordion .accordion-header {
    margin: 0;
    padding: 0;
}

/* Fix Button Width & Remove Black Box */
.faq-accordion .accordion-button {
    display: flex !important;
    width: 100% !important;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark) !important;
    background-color: var(--white) !important;
    padding: 20px 25px !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    text-align: left;
    cursor: pointer;
}

/* Fix Focus State (Removes the ugly black border) */
.faq-accordion .accordion-button:focus,
.faq-accordion .accordion-button:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Active Open State */
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--tertiary-color) !important;
    padding-bottom: 10px !important;
    /* Brings header closer to text when open */
}

/* Add Custom Dropdown Arrow (In case Bootstrap's SVG is missing) */
.faq-accordion .accordion-button::after {
    content: '\25BC';
    /* Downward triangle */
    font-size: 0.8rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
    margin-left: 15px;
}

/* Rotate Arrow when Open */
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--tertiary-color);
}

/* Answer Body */
.faq-accordion .accordion-body {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 25px 25px 25px !important;
    background-color: var(--white);
    border-top: none !important;
}

/* =========================
   FOOTER SECTION
========================= */

.custom-footer {
    background-color: #0f172a;
    /* Matches the deep navy of your services section */
    color: #94a3b8;
    position: relative;
    padding-top: 80px;
    font-size: 0.95rem;
}

/* Gradient line at the top to tie in your CMYK theme */
.footer-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--tertiary-color), var(--secondary-color), var(--primary-color));
}

.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Small underline below headings */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-text {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Contact List */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 15px;
}

.footer-contact i {
    color: var(--tertiary-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

.footer-contact a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    background-color: #0b1120;
    /* Slightly darker than footer bg */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

/* =========================
   PRODUCTS FLEX GRID SECTION
========================= */

.products-section {
    padding: 180px 0 100px;
    background-color: var(--bg-light);
}

.products-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.products-sub {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* 
  FLEXBOX GRID SETUP
  Using flex-wrap and gap to create a grid-like structure
*/
.product-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

/* Individual Product Cards */
.product-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 260px;
    max-width: 320px;

    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

/* Hover Effects */
.product-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--tertiary-color);
    /* Cyan border on hover */
}

/* Image Container */
.product-img-box {
    width: 100%;
    height: 220px;
    /* Fixed height so all cards align perfectly */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f1f1f1;
    /* Fallback color before images load */
    position: relative;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the box without distorting */
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.08);
    /* Slight zoom on hover */
}

/* Product Title */
.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: auto;
    /* Pushes the title to the bottom */
    margin-bottom: 10px;
}

/* =========================
   RESPONSIVE FLEX BREAKPOINTS
========================= */

/* Tablets (3 items per row) */
@media (max-width: 992px) {
    .product-card {
        flex: 1 1 calc(33.333% - 30px);
    }
}

/* Large Mobile (2 items per row) */
@media (max-width: 768px) {
    .product-card {
        flex: 1 1 calc(50% - 30px);
    }
}

/* Small Mobile (1 item per row) */
@media (max-width: 576px) {
    .product-card {
        flex: 1 1 100%;
    }
}

/*=========================================
            HEADER
==========================================*/

.custom-navbar {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 15px 0;
    transition: .35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
    z-index: 9999;
}

.custom-navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.logo {
    width: 120px;
    transition: .3s;
}

.custom-navbar.scrolled .logo {
    width: 100px;
}

.navbar-brand {
    padding: 0;
}

/*=============================
        NAV LINKS
==============================*/

.navbar-nav {
    gap: 15px;
}

.nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #111 !important;
    transition: .3s;
    padding: 8px 0 !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link::after {

    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;

    background: linear-gradient(90deg,
            var(--tertiary-color),
            var(--secondary-color),
            var(--primary-color));

    transition: .35s;
    border-radius: 20px;
}

.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;
}


/*=============================
      CONTACT INFO
==============================*/

.nav-contact a {

    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.nav-contact a:hover {

    color: var(--secondary-color) !important;
}


/*=============================
      HAMBURGER
==============================*/

.navbar-toggler {

    border: none;
    outline: none;
    box-shadow: none !important;
    padding: 0;
}

.navbar-toggler:focus {

    box-shadow: none;
}

.navbar-toggler-icon {

    background-image: none;
    width: 30px;
    height: 24px;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {

    display: block;
    background: #111;
    border-radius: 50px;
    transition: .35s;
}

.navbar-toggler-icon {

    height: 3px;
    margin-top: 10px;
}

.navbar-toggler-icon::before {

    content: '';
    position: absolute;
    top: -9px;
    width: 30px;
    height: 3px;
    left: 0;
}

.navbar-toggler-icon::after {

    content: '';
    position: absolute;
    top: 9px;
    width: 30px;
    height: 3px;
    left: 0;
}

/*============================
      OPEN ICON
=============================*/

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {

    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {

    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {

    transform: rotate(-45deg);
    top: 0;
}


/*============================
      MOBILE MENU
=============================*/

@media(max-width:991px) {

    .custom-navbar {

        padding: 12px 0;

    }

    .navbar-collapse {

        margin-top: 18px;

        background: #fff;

        border-radius: 15px;

        padding: 25px;

        box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

    }

    .navbar-nav {

        gap: 8px;
    }

    .nav-link {

        margin-left: 0;
        padding: 14px 0 !important;
        font-size: 17px;
        border-bottom: 1px solid #eee;
    }

    .nav-contact {

        display: flex;
        flex-direction: column;
        gap: 18px;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #eee;
    }

    .nav-contact a {

        font-size: 16px;
    }

}


/*=========================
      DESKTOP
==========================*/

@media(min-width:992px) {

    .nav-contact {

        display: flex;
        align-items: center;
        gap: 25px;
    }

}

.nav-contact{
    display:flex;
    gap:14px;
}

.nav-contact a{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f5f5f5;

    transition:.3s;
}

.nav-contact a i{

    color:#333;
    font-size:17px;
}

.nav-contact a:hover{

    background:var(--secondary-color);
    transform:translateY(-3px);
}

.nav-contact a:hover i{

    color:#fff;
}


/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    height: 60px;
    border-radius: 50px;
    padding: 0 15px; /* Starts compact */
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-float i {
    font-size: 30px;
    min-width: 30px;
    text-align: center;
}

.whatsapp-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover State - Expands into a pill */
.whatsapp-float:hover {
    /* transform: translateY(-5px); */
    padding: 0 25px; /* Widens the button */
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    animation: none; /* Stops pulsing when hovering */
}

.whatsapp-float:hover .whatsapp-text {
    max-width: 150px;
    opacity: 1;
    margin-left: 12px;
}

/* Pulsing Animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
body a:hover {
    text-decoration: none;

}
/* Mobile Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        height: 55px;
        padding: 0 12px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .about-flow{
        padding: 60px 15px;
    }
}