/* ===== Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #1d5d9a;
    --accent-color: #00d9ff;
    --gold-color: #d4af37;
    --purple-color: #8b5cf6;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-light: #f8f9fa;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Manrope', sans-serif !important;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: '32px';
    font-weight: 600;
    margin-bottom: 2rem;
}

/* ===== Top Bar ===== */
.top-bar {
    font-size: 0.85rem;
    background: #000 !important;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar .container-fluid {
    padding: 0rem 2rem;
}

.exclusive-offer {
    background: transparent;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}

.top-bar .btn-light {
    background: white;
    color: #000;
    border: none;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== Navigation ===== */
.navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--text-dark);
    transition: color 0.3s ease;
}


.nav-link.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.navbar-actions {
    gap: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler span {
    display: block;
    background-color: #4f4f4f;
    height: 3px;
    width: 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    border-radius: 10px;
    left: 0;
    opacity: 1;
    transition: all 0.35s ease-out;
    transform-origin: center left;
}

.navbar-toggler span:nth-child(1) {
    margin-top: 0.3em;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    background-color: var(--secondary-color);
    transform: translate(15%, -33%) rotate(45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translate(15%, 33%) rotate(-45deg);
    background-color: var(--secondary-color);
}

.navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg);
}

.navbar-toggler span:nth-child(2) {
    opacity: 1;
}

.navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg);
}

.btn-ai {
    background: linear-gradient(135deg, #ff006e, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-ai:hover {
    transform: scale(1.1);
}

.btn-shop {
    background: var(--text-dark);
    color: white;
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;

}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    opacity: 0.9;
}

.btn-secondary {
    background: white;
    color: var(--secondary-color);
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
    border: 1px solid var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--secondary-color);
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
    border: 1px solid var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}


.btn-shop:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .navbar-nav {
        margin: 1rem 0;
    }

    .navbar-actions {
        margin-top: 1rem;
    }

    .navbar .dropdown>.dropdown-menu {
        display: none;
        /* keep default hidden */
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity .18s ease, transform .18s ease, visibility .18s;
    }

    /* on hover show it */
    .navbar .dropdown:hover>.dropdown-menu,
    .navbar .dropdown:focus-within>.dropdown-menu {
        display: block !important;
        /* override Bootstrap inline rules */
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* helpful: mark the trigger visually if needed */
    .navbar .dropdown:hover>.dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.navbar .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
    z-index: 1000;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Bootstrap show class for dropdowns */
.navbar .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}


/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
}

.hero-description {
    font-size: 1rem;
}

.hero-carousel-section {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #000;
}

/* .hero-carousel-section .carousel-item {
    height: auto;
} */

.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
    object-position: center;
}

/* Custom Carousel Controls */
.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-carousel-section:hover .carousel-control-prev,
.hero-carousel-section:hover .carousel-control-next {
    opacity: 0.8;
}

.hero-carousel-section .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero-carousel-section .carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-carousel-section .carousel-item {
        height: auto;
    }
}


/* Experience Section  */

.experience {
    background-color: #f2f6fb;
}

.experience h2 {
    font-weight: bold;
}

/* Slider Styles */
.experience .slider-container-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.experience .slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    /* Firefox */
}

.experience .slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.experience .slider-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    border-radius: 18px;
    padding: 30px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    width: 380px;
    max-width: 380px;
}

.experience .slider-card h5 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.experience .slider-card p {
    font-size: 0.9rem;
    /* Decreased from default */
    margin-bottom: 15px;
    line-height: 1.4;
    opacity: 0.9;
}

.experience .slider-card .icon-box {
    margin-top: auto;
    /* Pushes icon to bottom */
}

.experience .slider-card .icon-box img {
    height: 60px;
    /* Fixed image height */
    width: auto;
    /* Maintains aspect ratio */
    object-fit: contain;
    /* Prevents distortion */
}

.experience .slider-btn {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: absolute;
}

.experience .slider-btn.prev {
    left: -20px;
}

.experience .slider-btn.next {
    right: -20px;
}

@media (max-width: 768px) {
    .experience .slider-btn {
        display: none;
        /* Hide buttons on mobile, allow touch scroll */
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.whatsapp-float {
    position: fixed;
    right: 5px;
    top: 42%;
    z-index: 1000;
}

.whatsapp-float a {
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

.demo-float {
    position: fixed;
    right: 25px;
    top: 50%;
    z-index: 9999;
    transform: rotate(-90deg);
    transform-origin: right center;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px 25px 0 0;
    font-weight: 600;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}


/* Mega Dropdown */
.mega-menu {
    width: 100%;
    left: 0;
    top: -5px;
    right: 0;
    border-radius: 0;
    border: none;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-menu[data-bs-popper] {
    margin-top: 0px !important;
}

.mega-menu .dropdown-item {
    padding: 0.3rem 0;
}

.mega-menu .dropdown-item:hover {
    background: transparent;
    text-decoration: underline;
    color: #000;
}


/* ===== Category Section ===== */
.category-section {
    padding: 4rem 0;
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); */
    padding: 2rem;
    color: white;
}

.category-overlay h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* ===== Products Section ===== */
.products-section {
    padding: 0;
    margin: 0;
}

.products-section .container {
    padding: 4rem 0 2rem;
}

.product-card {
    background: #f5f5f5;
    border-radius: 22px;
    padding: 18px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.);
    height: 100%;
    /* Added max-width for standalone presentation */
    max-width: 350px;
    width: 100%;
}

.badge-off {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
}

.product-img {
    text-align: center;
    padding: 0px 0;
}

.product-img img {
    max-width: 100%;
    object-fit: contain;
}

.features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.features span {
    width: 35px;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features span img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.product-title {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-sub {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
}

.old-price {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
}

.btn-know {
    background: var(--secondary-color);
    color: #fff;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    border: none;
}

.btn-know:hover {
    color: #000000;
    border: 1px solid #000;
    opacity: 0.9;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-content-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.testimonials-row {
    display: flex;
    gap: 20px;
    animation: scrollLeft 40s linear infinite;
}

.testimonials-row:nth-child(2) {
    animation: scrollRight 40s linear infinite;
}

.testimonials-row:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    min-width: 350px;
    max-width: 450px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h6 {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.product-name {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 115%;
    letter-spacing: 0%;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-content-overlay .btn {
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0px 0px 5px 0px #FCFBDC, 0px 0px 25px 0px #C9B19A;
    transition: all 0.3s ease;
}

.product-content-overlay .btn:hover {
    box-shadow: 0px 0px 8px 0px #FCFBDC, 0px 0px 35px 0px #C9B19A;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-name {
        font-size: 1.8rem;
    }

    .product-content-overlay {
        left: 3%;
    }
}

/* ===== Door Lock Section ===== */
.door-lock-section {
    padding: 4rem 0;
}

.door-lock-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.door-lock-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
}

.door-lock-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===== Applications Section ===== */
.applications-section {
    padding: 4rem 0;
}

.application-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.application-card:hover {
    transform: scale(1.05);
}

.video-card .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* ===== Customers Section ===== */
.customers-section {
    padding-top: 4rem;
}

.customers-section .container {
    position: relative;
}

.customers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.customers-left {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.customers-right {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1rem;
}

.customer-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

.customer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-fade {
    position: relative;
}

.customer-fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
}

.customer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
    color: white;
    z-index: 1;
}

.customer-overlay-last {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.7), transparent);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 5rem;
    color: white;
    z-index: 1;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating i {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating span {
    font-size: 18px;
    font-weight: 500;
}

.customer-review {
    font-size: 18px;
    margin: 0;
    width: 70%;
    line-height: 1.8;
}

.customer-count-badge {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.customer-count-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .customers-grid {
        grid-template-columns: 1fr;
    }

    .customer-count-badge {
        bottom: 80px;
    }
}

/* ===== Features Section ===== */
.features-section {
    padding-bottom: 3rem;
    padding-top: 1rem;
    background: white;
}

.feature-card {
    background: #F5F5F7;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-icon img {
    width: '24px';
    height: '24px';
    object-fit: contain;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    text-align: start;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

/* ===== Blog Section ===== */
.blog-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.blog-header .section-title {
    margin-bottom: 0;
    font-size: '32px';
    font-weight: 700;
}

.view-all {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--secondary-color);
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.blog-content {
    padding: 1.5rem;
    background: white;
}

.blog-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* ===== Awards Section ===== */
.awards-section {
    padding: 4rem 0;
    background: white;
    overflow: hidden;
}

.awards-section .section-title {
    font-size: '32px';
    font-weight: 700;
    margin-bottom: 0;
}

.awards-scroll-container {
    overflow-x: auto;
    width: 100%;
    position: relative;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.awards-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.awards-scroll {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    align-items: center;
    padding: 0 1rem;
    animation: scrollAwards 60s linear infinite;
}

.awards-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollAwards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.award-item {
    flex-shrink: 0;
    width: 350px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 1.5rem;
}

.award-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .awards-scroll-container {
        padding-bottom: 2rem;
    }

    .award-item {
        width: 180px;
        height: 120px;
    }
}

/* ===== Footer ===== */
.footer {
    padding: 3rem 0 1rem;
    background: #000 !important;
}

.footer-heading {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-subheading {
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: rgba(255, 255, 255, 0.7);
}

.app-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.app-store-btn {
    max-width: 160px;
    height: auto;
    transition: transform 0.3s ease;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0;
}

.footer-brand .footer-logo {
    height: 40px;
    width: auto;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===== Payment Partners Bar ===== */
.payment-partners-bar {
    background: white;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
}

.payment-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-partners img {
    max-height: 35px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.payment-partners img:hover {
    opacity: 1;
}

/* Active Nav Link Style */
.nav-link.active {
    color: var(--text-dark);
    position: relative;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

/* Smart Lockers Page Specific Styles */
.smart-lockers-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 60px;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border: 2.2px solid #000000;
}

.banner-text-overlay {
    text-align: center;
    color: white;
    z-index: 2;
    margin-bottom: 30px;
}

.banner-text-overlay h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 105.41px;
    line-height: 115%;
    letter-spacing: 0%;
    margin-bottom: 0;
}

.banner-locker-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    z-index: 1;
}

.product-showcase {
    position: relative;
    padding: 80px 0;
    background-image: url(/assets/images/home/protect.webp);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
}

.product-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0) 100%); */
    z-index: 1;
}

.product-showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 30px;
}

.showcase-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 0;
    max-width: 550px;
}

/* Responsive Showcase */
@media (max-width: 991px) {
    .product-showcase {
        padding: 60px 0;
        min-height: 400px;
    }

    .showcase-title {
        font-size: 2rem;
    }

    .showcase-description {
        font-size: 0.95rem;
    }

    /* .product-showcase::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.5) 100%);
    } */
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 50px 0;
        min-height: 350px;
    }

    .showcase-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .showcase-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* .product-showcase::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.6) 100%);
    } */
}

@media (max-width: 576px) {
    .product-showcase {
        padding: 40px 0;
        min-height: 300px;
    }

    .showcase-title {
        font-size: 1.4rem;
    }

    .showcase-description {
        font-size: 0.85rem;
    }

    /* .product-showcase::before {
        background: rgba(0, 0, 0, 0.9);
    } */
}

.product-item {
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    padding: 30px;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-item-image {
    width: 60%;
    height: 300px;
    object-fit: contain;
    background: transparent;
    margin-bottom: 20px;
}

.product-item-image-navbar {
    width: auto;
    height: 150px;
    object-fit: contain;
    background: transparent;
    margin-bottom: 0px;
}

.product-item-content {
    text-align: center;
}

.product-item-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.product-item-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 400;
}

.btn-buy-now {
    background: #000;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background: #333;
    transform: scale(1.05);
}

/* Door Lock Specific Styles */
.doorlock-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 450px;
    gap: 0;
}

.doorlock-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 20%;
    padding-right: 20px;
    z-index: 2;
}

.doorlock-title {
    text-align: left;
    margin-bottom: 25px;
}

.doorlock-title h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    line-height: 1.2;
}

.doorlock-title p {
    color: #999;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 400;
}

.doorlock-item .product-item-image {
    width: 80%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    margin-bottom: 0;
}

.doorlock-item .btn-buy-now {
    margin-top: 0;
    padding: 14px 40px;
    font-size: 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .smart-lockers-banner {
        height: 400px;
        border-radius: 15px;
        border: 2.2px solid #000000;
    }

    .banner-text-overlay h1 {
        font-size: 60px;
    }

    .banner-locker-image {
        max-width: 300px;
    }

    .product-item {
        padding: 20px;
    }

    .product-item-image {
        height: 220px;
    }

    .product-item-content h3 {
        font-size: 1.2rem;
    }

    .doorlock-item {
        flex-direction: column;
        min-height: auto;
        align-items: flex-start;
    }

    .doorlock-header {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .doorlock-item .product-item-image {
        width: 100%;
        max-height: 350px;
    }

    .doorlock-title h3 {
        font-size: 1.3rem;
    }

    .doorlock-item .btn-buy-now {
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    .smart-lockers-banner {
        height: 350px;
        border-radius: 10px;
        border: 2.2px solid #000000;
    }

    .banner-text-overlay h1 {
        font-size: 40px;
    }

    .banner-locker-image {
        max-width: 250px;
    }

    .product-item {
        padding: 15px;
    }

    .product-item-image {
        height: 200px;
    }

    .product-item-content h3 {
        font-size: 1.1rem;
    }

    .product-item-content p {
        font-size: 0.85rem;
    }

    .doorlock-title h3 {
        font-size: 1.1rem;
    }

    .doorlock-title p {
        font-size: 0.85rem;
    }

    .doorlock-title {
        margin-bottom: 15px;
    }

    .doorlock-item .btn-buy-now {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .doorlock-item .product-item-image {
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-copyright {
        text-align: center;
        margin-top: 1rem;
    }

    .payment-partners {
        gap: 1rem;
    }

    .payment-partners img {
        max-height: 28px;
    }
}

/* ===== Comprehensive Responsive Design ===== */

/* Tablet and below */
@media (max-width: 991px) {
    .section-title {
        font-size: 1.8rem;
    }

    .category-overlay h3 {
        font-size: 1.4rem;
    }

    .product-name {
        font-size: 32px;
    }

    .product-content-overlay .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {

    /* Top Bar */
    .top-bar .container-fluid {
        padding: 0.5rem 1rem;
    }

    .top-bar .col-md-4 {
        font-size: 0.75rem;
    }

    .exclusive-offer {
        font-size: 0.75rem;
    }

    /* Navigation */
    .navbar-brand .logo {
        height: 35px;
    }

    .btn-ai {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .btn-shop {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero-section {
        min-height: 50svh;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        font-weight: bold;
    }

    .hero-description {
        font-size: 1rem;
    }


    /* Float Buttons */
    .whatsapp-float {
        right: 10px;
        top: 40%;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .demo-float {
        display: none;
    }

    /* Category Section */
    .category-section {
        padding: 2rem 0;
    }

    .category-overlay {
        padding: 1rem;
    }

    .category-overlay h3 {
        font-size: 1.2rem;
    }

    /* Products Section */
    .products-section .container {
        padding: 2rem 0 1rem;
    }

    .product-name {
        font-size: 24px;
        margin-bottom: 1rem;
    }

    .product-content-overlay {
        left: 5%;
    }

    .product-content-overlay .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Applications Section */
    .applications-section {
        padding: 2rem 0;
    }

    .application-card {
        margin-bottom: 1rem;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Customers Section */
    .customers-section {
        padding-top: 2rem;
    }

    .customers-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .customers-left,
    .customers-right {
        gap: 0.75rem;
    }

    .customer-card {
        min-height: 180px;
    }

    .customer-overlay {
        padding: 1rem;
    }

    .rating span {
        font-size: 14px;
    }

    .customer-review {
        font-size: 14px;
        width: 90%;
        line-height: 1.5;
    }

    .customer-count-badge {
        bottom: 60px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .avatar {
        width: 30px;
        height: 30px;
    }

    /* Features Section */
    .features-section {
        padding: 2rem 0;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-card h4 {
        font-size: 0.9rem;
    }

    /* Blog Section */
    .blog-section {
        padding: 2rem 0;
    }

    .blog-header .section-title {
        font-size: 1.5rem;
    }

    .blog-image img {
        height: 200px;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-content h3 {
        font-size: 1rem;
    }

    /* Awards Section */
    .awards-section {
        padding: 2rem 0;
    }

    .awards-section .section-title {
        font-size: 1.5rem;
    }

    .award-item {
        width: 150px;
        height: 100px;
        padding: 1rem;
    }

    .award-item.award-tall {
        height: 215px;
    }

    .awards-scroll {
        gap: 1rem;
    }

    .award-column {
        gap: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
    }

    .app-buttons {
        flex-direction: column;
    }

    .app-store-btn {
        max-width: 140px;
    }

    .footer-brand .footer-logo {
        height: 30px;
    }

    .footer-copyright {
        text-align: center;
        margin-top: 1rem;
        font-size: 0.8rem;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    /* Payment Partners */
    .payment-partners-bar {
        padding: 1rem 0;
    }

    .payment-partners {
        gap: 0.75rem;
    }

    .payment-partners img {
        max-height: 24px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .product-name {
        font-size: 20px;
    }

    .customer-review {
        font-size: 12px;
        width: 95%;
    }

    .customer-count-badge {
        bottom: 40px;
        font-size: 0.75rem;
    }

    .feature-card h4 {
        font-size: 0.85rem;
    }

    .blog-content h3 {
        font-size: 0.9rem;
    }

    .award-item {
        width: 120px;
        height: 80px;
    }

    .award-item.award-tall {
        height: 175px;
    }

    .footer-heading {
        font-size: 0.95rem;
    }

    .app-store-btn {
        max-width: 120px;
    }
}



/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== Smooth Scroll ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Book Demo Modal ===== */
/* Base Modal Styling */
.demo-popup-section {
    background: linear-gradient(110deg, #ffffff 60%, #e3f2fd 100%);
    border-radius: 24px;
    position: relative;
    /* max-width: 950px; Removed to fit modal-dialog */
    margin: 0;
    /* Adjusted for modal body */
    padding: 30px;
    /* Reduced padding for modal fit */
    /* box-shadow: 0 15px 50px rgba(0,0,0,0.1); handled by modal-content */
    /* border: 1px solid rgba(255,255,255,0.8); handled by modal-content */
}

/* Close Button */
.popup-close-trigger {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s;
    z-index: 10;
}

.popup-close-trigger:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Typography & Branding */
.popup-title {
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.brand-accent {
    color: #0056b3;
    /* V Safe Blue */
}

.popup-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.iti{
    width: 100%;
}
/* Form Elements */
.popup-form-input {
    border-radius: 12px;
    padding: 14px;
    border: 1.5px solid #dee2e6;
}

.popup-form-input:focus {
    box-shadow: none;
    border-color: #0056b3;
}

.country-selector {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #fff;
    max-width: 85px;
}

.phone-field {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Action Button */
.popup-submit-btn {
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
    border: none;
    width: fit-content;
}

.popup-submit-btn:hover {
    background-color: #222;
    color: white !important;
}

/* Image Handling */
.popup-product-image {
    width: 70%;
    height: auto;
    object-fit: contain;
}

/* Modal Specific Overrides */
.modal-content {
    border-radius: 24px;
    border: none;
    background: transparent;
    /* allow demo-popup-section to handle bg */
    box-shadow: none;
}

.modal-body {
    padding: 0;
}

#demoModal .modal-dialog {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    #demoModal .modal-dialog {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Navbar Vertical Carousel */
.navbar-carousel-container {
    height: 48px;
    /* Fixed height for the navbar text area */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-carousel-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.navbar-carousel-item {
    height: 48px;
    /* Must match container height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* =====================================================
   REDESIGNED NAVBAR
   ===================================================== */
.top-bar {
  background: #0f0f0f !important;
  padding: 0 !important;
}
.top-bar .container-fluid {
  padding: 0 5vw !important;
  height: 38px;
  display: flex;
  align-items: center;
}
.top-bar .row {
  width: 100%;
  --bs-gutter-x: 0;
}
.top-bar a.text-white {
  font-size: 12px !important;
  color: rgba(255,255,255,0.78) !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
  text-decoration: none !important;
}
.top-bar a.text-white:hover { color: #fff !important; }
.top-bar .navbar-carousel-container { height: 38px; }
.navbar-carousel-container { height: 38px !important; }
.exclusive-offer {
  font-size: 12px !important;
  color: rgba(255,255,255,0.72) !important;
  background: transparent !important;
  padding: 0 !important;
}
.top-bar .btn-sm.btn-light {
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  transition: background 0.15s;
  font-weight: 500;
}
.top-bar .btn-sm.btn-light:hover { background: rgba(255,255,255,0.22) !important; }

.navbar.sticky-top {
  padding: 0 !important;
  background: #fff !important;
  border-bottom: 1px solid #e4e9f0 !important;
  box-shadow: none !important;
}
.navbar .container-fluid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5vw !important;
  height: 64px;
  display: flex;
  align-items: center;
}
.navbar-brand { padding: 0 !important; }
.navbar-brand .logo { height: 36px !important; width: auto; }
.navbar-nav .nav-link,
.navbar-nav span.nav-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
}
.navbar-nav .nav-link:hover,
.navbar-nav span.nav-link:hover {
  color: #1d5d9a !important;
  background: #e8f0fb;
}
.navbar-actions { gap: 8px !important; }
.navbar-actions .btn {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
}
.navbar-actions .btn-primary {
  background: #1d5d9a !important;
  border: 1px solid #1d5d9a !important;
  color: #fff !important;
  transition: background 0.15s !important;
}
.navbar-actions .btn-primary:hover {
  background: #154a7a !important;
  border-color: #154a7a !important;
  color: #fff !important;
  opacity: 1 !important;
  transform: none !important;
}
.navbar-actions .btn-secondary {
  background: transparent !important;
  border: 1.5px solid #e4e9f0 !important;
  color: #1a1a1a !important;
  transition: border-color 0.15s, background 0.15s !important;
}
.navbar-actions .btn-secondary:hover {
  background: #f5f7fa !important;
  border-color: #1d5d9a !important;
  color: #1d5d9a !important;
  transform: none !important;
}
.mega-menu {
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
  border-radius: 0 0 16px 16px !important;
  border: none !important;
  border-top: 1px solid #e4e9f0 !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1) !important;
  padding: 28px 5vw !important;
}
.product-item-image-navbar {
  width: 96px !important;
  height: 96px !important;
  object-fit: contain;
  transition: transform 0.2s;
  display: block;
  margin: 0 auto;
}
.mega-menu a:hover .product-item-image-navbar { transform: translateY(-4px); }
.mega-menu h3 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin-top: 10px !important;
}
.mega-menu .dropdown-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #3d3d3d;
  padding: 7px 8px !important;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.mega-menu .dropdown-item:hover {
  color: #1d5d9a !important;
  background: #e8f0fb !important;
  text-decoration: none !important;
}
@media (max-width: 991px) {
  .navbar .container-fluid { height: 58px; }
  .navbar-collapse {
    border-top: 1px solid #e4e9f0;
    padding: 12px 0 20px;
  }
}

/* =====================================================
   REDESIGNED DEMO MODAL
   ===================================================== */
#demoModal .modal-dialog {
  max-width: 780px !important;
  width: auto !important;
  margin: 1.75rem auto !important;
}
#demoModal .modal-content {
  border-radius: 20px !important;
  background: #fff !important;
  border: none !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2) !important;
  overflow: hidden !important;
}
#demoModal .modal-body { padding: 0 !important; position: relative; }

.demo-popup-section {
  display: grid !important;
  grid-template-columns: 1fr 280px !important;
  min-height: 460px;
}
@media (max-width: 700px) {
  .demo-popup-section { grid-template-columns: 1fr !important; }
  .demo-popup-right { display: none !important; }
}
.demo-popup-left { padding: 44px 40px 40px; }
.demo-popup-right {
  background: #f0f4fa;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.popup-close-trigger {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #f0f4fa !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  line-height: 1 !important;
  color: #757575 !important;
  text-decoration: none !important;
  font-weight: 300 !important;
  transition: background 0.15s !important;
  z-index: 20;
}
.popup-close-trigger:hover {
  background: #e4e9f0 !important;
  color: #1a1a1a !important;
}
.demo-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1d5d9a;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.demo-heading {
  font-family: 'DM Serif Display', serif !important;
  font-size: 28px !important;
  line-height: 1.2 !important;
  color: #1a1a1a !important;
  margin-bottom: 8px !important;
  font-weight: 400 !important;
}
.demo-heading img {
  height: 22px;
  width: auto;
  vertical-align: middle;
  margin: 0 3px;
}
.demo-subtext {
  font-size: 14px;
  color: #757575;
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.55;
}
.popup-form-input,
.popup-form-input.form-control {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid #e4e9f0 !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-family: 'DM Sans', sans-serif !important;
  background: #f5f7fa !important;
  color: #1a1a1a !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.15s, background 0.15s !important;
  margin-bottom: 12px !important;
}
.popup-form-input:focus,
.popup-form-input.form-control:focus {
  border-color: #1d5d9a !important;
  background: #fff !important;
  box-shadow: none !important;
}
.popup-submit-btn,
button.popup-submit-btn {
  width: 100% !important;
  padding: 14px 24px !important;
  background: #1d5d9a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: 'DM Sans', sans-serif !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
  margin-top: 4px !important;
}
.popup-submit-btn:hover { background: #154a7a !important; color: #fff !important; }
.popup-product-image {
  max-width: 200px !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
/* Hide old Bootstrap row layout inside modal */
.demo-popup-section .row { display: contents !important; }
.demo-popup-section .col-lg-6 { all: unset; display: contents !important; }

/* ===== Modal Styles ===== */
.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 32px;
    height: 32px;
    padding: 0;
    background: none;
    border: none;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.btn-close-custom:hover {
    opacity: 1;
}

.btn-close-custom::before,
.btn-close-custom::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-close-custom::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close-custom::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Demo Modal Pro Theme - Based on product.css */
.demo-modal-pro {
    background: #fff;
}

.btn-close-demo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #666;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.btn-close-demo:hover {
    color: #1a1a1a;
}

.demo-pro-content {
    padding: 36px 32px;
}

.demo-pro-header {
    margin-bottom: 28px;
    text-align: center;
}

.demo-pro-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.demo-pro-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Trust Strip - Pro Theme */
.demo-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 28px;
}

@media (max-width: 500px) {
    .demo-trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

.demo-trust-item {
    background: #f8fafb;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.2s ease;
}

.demo-trust-item:hover {
    border-color: #1d5d9a;
    background: #f0f5fa;
}

.dti-icon {
    font-size: 20px;
    margin-bottom: 6px;
    display: block;
}

.dti-title {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    line-height: 1.3;
}

.dti-sub {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: 2px;
}

/* Form Styling */
.demo-form-group {
    margin-bottom: 18px;
}

.demo-pro-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

.demo-pro-input {
    width: 100%;
    border: 1.5px solid #e4e9f0;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #f8fafb;
}

.demo-pro-input:focus {
    outline: none;
    border-color: #1d5d9a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(29, 93, 154, 0.1);
}

.demo-pro-input::placeholder {
    color: #aaa;
}

/* Buttons - Pro Theme */
.demo-cta-primary {
    width: 100%;
    padding: 15px 24px;
    background: #1d5d9a;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    letter-spacing: 0.2px;
    transition: all 0.15s ease;
    cursor: pointer;
    margin-bottom: 10px;
}

.demo-cta-primary:hover {
    background: #154a7a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(29, 93, 154, 0.3);
}

.demo-cta-primary:active {
    transform: translateY(0);
}

.demo-cta-secondary {
    width: 100%;
    padding: 13px 24px;
    background: transparent;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    border: 1.5px solid #e4e9f0;
    border-radius: 10px;
    transition: all 0.15s ease;
    cursor: pointer;
}

.demo-cta-secondary:hover {
    border-color: #1d5d9a;
    background: #f0f5fa;
}

.demo-pro-footer {
    text-align: center;
    margin-top: 18px;
    margin-bottom: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.5;
}

/* Success Modal - Pro Theme with Gradient Header */
.success-modal-wrapper {
    position: relative;
    background: #fff !important;
}

.success-modal-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    z-index: 1;
}

.success-modal-wrapper .modal-body {
    position: relative;
    z-index: 2;
    background: #fff !important;
    padding: 48px 32px !important;
}

.success-icon {
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.success-close-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.success-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.success-close-btn:active {
    transform: translateY(0);
}

.popup-registration-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popup-form-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.popup-form-input:focus {
    outline: none;
    border-color: #1d5d9a;
    box-shadow: 0 0 0 3px rgba(29, 93, 154, 0.1);
}

.popup-form-input::placeholder {
    color: #999;
}

.popup-submit-btn {
    background: #1d5d9a;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.popup-submit-btn:hover {
    background: #154a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 93, 154, 0.3);
}

.popup-submit-btn:active {
    transform: translateY(0);
}

.popup-product-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Success Modal */
.modal-sm .modal-content {
    border-radius: 16px !important;
}

#phoneError {
    margin-top: 4px;
    font-size: 12px;
}

/* Mobile responsiveness for modals */
@media (max-width: 768px) {
    .demo-popup-section {
        flex-direction: column;
        padding: 28px;
        gap: 20px;
    }

    .demo-heading {
        font-size: 22px;
    }

    .demo-subtext {
        font-size: 14px;
    }

    .popup-product-image {
        max-width: 200px;
    }
}

/* ===== Footer Styles ===== */
.footer-heading {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.footer-links {
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #bbb;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 14px;
    color: #bbb;
    margin: 0;
}

.footer-contact a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 16px;
}

.footer-social-link:hover {
    background: #1d5d9a;
    transform: translateY(-2px);
}

.footer-app-links {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.footer-app-links a {
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: inline-block;
}

.footer-app-links a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-divider {
    opacity: 0.2;
}

.footer-copyright {
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem !important;
    }

    .footer-heading {
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .footer-app-links {
        justify-content: center;
    }
}

/* ===== Mobile Full-Screen Menu ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 90vw);
    height: 100%;
    background: #fff;
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mobile-menu-header .logo {
    height: 36px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    margin: -4px;
}

.mobile-menu-close span {
    display: block;
    height: 2px;
    width: 24px;
    background: #1a1a1a;
    border-radius: 1px;
    transition: all 0.3s ease;
    position: absolute;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    flex: 1;
}

.mobile-nav-link {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: #1d5d9a;
}

/* Mobile Accordion Items */
.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 14px 0;
    cursor: pointer;
    user-select: none;
}

.mobile-nav-item > span i {
    transition: transform 0.25s ease;
    font-size: 16px;
    display: inline-block;
    margin-left: 8px;
    flex-shrink: 0;
    color: #1a1a1a;
    width: 1em;
    height: 1em;
    vertical-align: -2px;
}

.mobile-nav-item.open > span i {
    transform: rotate(180deg);
}

.mobile-nav-dropdown {
    display: none;
    padding: 4px 0 12px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
}

.mobile-nav-item.open .mobile-nav-dropdown {
    display: block;
}

.mobile-nav-dropdown a {
    display: block;
    font-size: 14px;
    color: #444;
    padding: 9px 12px;
    border-radius: 6px;
    text-decoration: none;
}

.mobile-nav-dropdown a:hover {
    background: #e8f0fb;
    color: #1d5d9a;
}

/* Mobile Menu CTAs */
.mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: 8px;
}

.mobile-menu-ctas .btn {
    font-size: 14px !important;
    padding: 10px 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
}

/* Body lock when menu open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Hide on desktop (lg and above) */
@media (min-width: 992px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}
