/* Global Styles */
:root {
    --primary-color: #000000; /* Black background */
    --secondary-color: #FFD700; /* Golden text */
    --accent-color: #C0C0C0; /* Silver accents */
    --text-color: #FFFFFF; /* White text */
    --text-light: #FFFFFF; /* Light text */
    
    --shadow: 0 4px 6px rgba(255, 215, 0, 0.3); /* Golden shadow */
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
#main-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--secondary-color);
}

.logo-container {
    width: 120px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

#mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

#nav-list {
    display: flex;
    gap: 1.5rem;
}

#nav-list li a {
    padding: 0.5rem 1rem;
    transition: var(--transition);
    font-weight: 500;
    border: 1px solid transparent;
}

#nav-list li a:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-radius: 4px;
    border: 1px solid var(--secondary-color);
}

/* Hero Section */
.hero-section {
    margin-top: 80px; /* Offset for fixed header */
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--secondary-color);
}

.hero-overlay p {
    font-size: 1.5rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--secondary-color);
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    position: relative;
}

.section-container h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto;
}

.section-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--secondary-color);
}

.benefits-list {
    margin-left: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

.product-image {
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid var(--secondary-color);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
}

/* Founder Section */
.founder-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.founder-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--secondary-color);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-message {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--secondary-color);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--secondary-color);
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-info a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-color);
}

.business-hours {
    margin-top: 2rem;
}

.business-hours h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.business-hours p {
    margin-bottom: 0.3rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--secondary-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
    
    .hero-overlay p {
        font-size: 1.2rem;
    }
    
    .founder-content, .contact-content {
        flex-direction: column;
    }
    
    .founder-image, .founder-message, .contact-info {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    #mobile-menu-button {
        display: block;
    }
    
    #nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(255, 215, 0, 0.3);
        border-top: 1px solid var(--secondary-color);
        border-bottom: 1px solid var(--secondary-color);
    }
    
    #nav-list.show {
        display: flex;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
    
    .section-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .logo-container {
        width: 100px;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-content, .product-info, .founder-message, .contact-info {
        padding: 1.5rem;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 30px;
    z-index: 1000;
  }

  .whatsapp-icon {
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  .whatsapp-icon:hover {
    transform: scale(1.1);
  }






/* Product Card Bullets Styling */
.products-grid .product-card .product-info ul {
    list-style-type: disc;      /* Standard bullet points */
    margin: 10px 0 0 20px;      /* Top margin and left indentation */
    padding: 0;                 /* Remove default padding */
    line-height: 1.5;           /* Better readability */
    font-size: 0.95rem;         /* Slightly smaller than main text */
    color: var(--text-light);   /* Match site text color */
}

/* Bullet points list items spacing */
.products-grid .product-card .product-info ul li {
    margin-bottom: 6px;
}
.products-grid .product-card .product-info ul li {
    margin-bottom: 6px;         /* Space between bullet points */
}

/* Optional: responsive adjustments for mobile */
@media (max-width: 768px) {
    .products-grid .product-card .product-info ul {
        margin-left: 15px;      /* Slightly smaller indentation on mobile */
        font-size: 0.9rem;      /* Slightly smaller font for smaller screens */
    }
}






/* Focus & Accessibility */
a:focus, button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Product Card hover improvements */
.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.45);
}

/* Hero Overlay text scaling on hover (optional subtle effect) */
.hero-overlay h1:hover {
    transform: scale(1.02);
    transition: var(--transition);
}






/* Shrinking header on scroll */
#main-header.scrolled {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transition: padding 0.3s ease, background-color 0.3s ease;
}


#nav-list li a.active {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-radius: 4px;
}

.product-card {
    will-change: transform, box-shadow;
}
.hero-overlay h1, .hero-overlay p {
    will-change: transform;
}

/* Header Scrolled Effect */
#main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95); /* Slightly darker when scrolled */
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4); /* Enhanced golden shadow */
    transition: var(--transition);
}

/* Mobile Menu Toggle */
#nav-list.show {
    display: flex !important; /* Forces flex display when toggled */
    flex-direction: column;
}

/* Active Navigation Link Highlight */
#nav-list a.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 4px;
    border: 1px solid var(--secondary-color);
}

/* Optional: Smooth transition for active links */
#nav-list a {
    transition: var(--transition);
}

/* Hero text animation (optional) */
.hero-overlay h1 {
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.hero-overlay h1.show {
    transform: translateY(0);
    opacity: 1;
}





.developer-contact{
    color: var(--secondary-color);
}