html {
    scroll-behavior: smooth;
}
body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            padding-top: 70px; /* Space for fixed navbar */
        }
        
        /* Navigation */
        .navbar {
            background: #231F20;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 10px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: #2c3e50;
            text-decoration: none;
        }
        
        .logo-square {
            width: 40px;
            height: 40px;
            background:  #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        }
        
        .logo-square img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }
        
        .brand-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            color: #fff;
        }
        
        .brand-text span {
            color: #fff;
        }
        
        .navbar-nav .nav-link {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: #fff !important;
            padding: 0.5rem 1.2rem;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .navbar-nav .nav-link:hover {
            color: #dddddd !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #dddddd;
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 70%;
        }
        .navbar-nav .nav-link.dropdown-toggle::after {
            display: none;
        }
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-scrolled {
            background: #231F20;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            padding: 5px 0;
        }
        /* Show dropdown on hover */
        .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
        }

        /* Optional: Add a slight transition for smoother appearance */
        .navbar-nav .dropdown-menu {
            transition: all 0.3s ease;
            margin-top: -5px;
        }

        .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
            margin-top: 0;
        }
        a.nav-link.badge {
            color: #000 !important;
            background: #dddddd;
        }
        a.nav-link.badge:hover {
            color: #999999 !important;
            background: #dddddd;
        }
        /* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.3), rgba(52, 73, 94, 0.3)), url('/images/deck-homepage.png') no-repeat center center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    /*max-width: 700px;*/
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.hero p {
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}


        .btn-cta {
            background: #e74c3c;
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            background: #c0392b;
        }
        
        .btn-secondary-cta {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-left: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-secondary-cta:hover {
            background: white;
            color: #2c3e50;
            transform: translateY(-3px);
        }
        
        /* Distributor Badge */
        .distributor-badge {
            background: #e74c3c;
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            font-family: 'Poppins', sans-serif;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 2.5rem;
            color: #2c3e50;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #e74c3c;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
            font-size: 1.1rem;
        }
        
        .feature-icon {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 3px solid #e74c3c;
        }
        
        .feature-icon:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            background: #e74c3c;
        }
        
        .feature-icon i {
            font-size: 2.8rem;
            color: #e74c3c;
            transition: all 0.3s ease;
        }
        
        .feature-icon:hover i {
            color: white;
        }
        
        .feature-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        
        /* Alternating Content Section */
        .content-section {
            padding: 80px 0;
        }
        
        .content-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 30px;
            position: relative;
        }
        
        .content-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .content-img:hover img {
            transform: scale(1.05);
        }
        
        .content-text h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
            position: relative;
            padding-bottom: 15px;
        }
        
        .content-text h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #e74c3c;
        }
        
        .content-text p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
            color: #555;
        }
  
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .contact-form {
            background: #fff;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-control {
            height: 50px;
            border-radius: 5px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            padding-left: 15px;
            font-size: 1rem;
        }
        
        .form-control:focus {
            border-color: #e74c3c;
            box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
        }
        
        textarea.form-control {
            height: 150px;
            resize: none;
        }
        
        .btn-submit {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 5px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-submit:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        
        /* Footer */
        footer {
            background: #1a252f;
            color: #fff;
            padding: 70px 0 30px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo-square {
            width: 50px;
            height: 50px;
            background: #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .footer-logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: white;
        }
        
        .footer-logo-text span {
            color: #dddddd;
        }
        
        .footer-col h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 10px;
            color: #fff;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #e74c3c;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 15px;
        }
        
        .footer-col ul li a {
            color: #b1b8c1;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-family: 'Open Sans', sans-serif;
        }
        
        .footer-col ul li a:hover {
            color: #e74c3c;
            padding-left: 5px;
        }
        
        .social-links a {
            display: inline-block;
            height: 40px;
            width: 40px;
            background: #35455a;
            margin-right: 10px;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #e74c3c;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            margin-top: 50px;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.9rem;
            font-family: 'Open Sans', sans-serif;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: #fff;
        }
        
        .testimonial-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            position: relative;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #555;
            font-family: 'Open Sans', sans-serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 3px solid #e74c3c;
        }
        
        .author-info h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .author-info p {
            margin: 0;
            color: #777;
            font-size: 0.9rem;
            font-family: 'Open Sans', sans-serif;
        }
        
        /* Product Gallery */
        .product-gallery {
            padding: 80px 0;
            background: #f5f5f5;
        }
        
        .product-item {
            margin-bottom: 30px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .product-img {
            height: 250px;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-item:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .product-desc {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .product-specs {
            font-size: 0.9rem;
            color: #555;
        }
        
        .product-specs li {
            margin-bottom: 5px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .content-section {
                padding: 60px 0;
            }
            
            .distributor-section h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 100px; /* Adjust for smaller navbar */
            }
            
            .navbar-brand {
                flex-direction: column;
                text-align: center;
            }
            
            .logo-square {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .hero {
                height: auto;
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .btn-secondary-cta {
                margin-left: 0;
                margin-top: 15px;
            }
            
            .contact-form {
                padding: 30px;
            }
            
            .distributor-section h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .feature-icon {
                width: 100px;
                height: 100px;
            }
            
            .feature-icon i {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .logo-square {
                width: 50px;
                height: 50px;
            }
            .brand-text {
                display:none!important;
            }
        }
        .btn-outline-primary {
    color: #000000!important;
    border-color: #000000!important;
}
.btn-outline-primary:hover {
    color: #fff!important;
    background-color: #000000;
    border-color: #000000;
}
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
/* Resources section styling */
.resources-section {
    border-left: 4px solid #e74c3c;
    background-color: #f8f9fa;
}

.resources-section h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.btn-sm i {
    font-size: 0.9rem;
}

.btn-outline-primary.btn-sm:hover {
    background-color: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.btn-outline-secondary.btn-sm:hover {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn-outline-info.btn-sm:hover {
    background-color: #17a2b8;
    color: white;
    border-color: #17a2b8;
}

.btn-outline-success.btn-sm:hover {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}

.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}

.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #419641;
}

.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #2d672d;
}

.btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success:disabled:focus, .btn-success:disabled.focus {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success.disabled:hover, .btn-success:disabled:hover {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
/* Gap utility for older Bootstrap versions */
.gap-2 {
    gap: 0.5rem;
}

/* Ensure proper wrapping on mobile */
@media (max-width: 576px) {
    .resources-section .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-sm {
        width: 100%;
        text-align: center;
    }
}

/* --- Force brand text to the RIGHT of the logo at all sizes --- */
.navbar-brand {
    display: inline-flex;          /* stable inline layout */
    align-items: center;
    gap: 8px;
    white-space: nowrap;           /* keep WarmzBord on one line */
}

/* Never stack vertically on mobile */
@media (max-width: 768px) {
    .navbar-brand { 
        flex-direction: row !important; 
        text-align: left !important;
    }
    .logo-square { 
        margin-right: 8px !important; 
        margin-bottom: 0 !important; 
    }
    .brand-text {
        display: inline !important;
        font-size: 1rem;          /* slightly smaller on tablets/phones */
    }
}

/* Never hide the brand text on small phones */
@media (max-width: 576px) {
    .brand-text { 
        display: inline !important; 
        font-size: 0.95rem; 
    }
    .logo-square {
        width: 36px;              /* shrink logo a touch for space */
        height: 36px;
    }
}

/* Keep the mobile navbar compact and consistent */
.navbar.fixed-top,
.navbar {
    padding-top: .25rem;
    padding-bottom: .25rem;
}

/* Logo size controls the navbar height — keep it small on phones */
.navbar-brand img {
    height: 28px;
    width: auto;
}
@media (min-width: 992px) {
    .navbar-brand img { height: 36px; }
}

/* Ensure brand text never forces extra height */
.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    min-height: 48px; /* a stable floor so things don't jump */
}

/* Body padding to clear fixed-top navbar (Bootstrap pattern) */
body { padding-top: 56px; }                /* phones/tablets */
@media (min-width: 992px) { body { padding-top: 72px; } }  /* larger nav on desktop */

/* === FINAL SPACING FIX ===
   Remove desktop gap under fixed navbar,
   keep mobile/tablet spacing unchanged */
@media (min-width: 992px) {
  body { padding-top: 56px !important; } /* match actual navbar height */
}

/* Ensure older rules (70px / 72px / 100px) don’t win anywhere */
@media (max-width: 991.98px) {
  body { padding-top: 56px !important; }
}