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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFD700;
    color: #000000;
    line-height: 1.6;
}

/* Header/Navbar */
.header {
    background-color: #FFD700;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
}

.slogan {
    font-size: 0.8rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-top: 5px;
    font-style: italic;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #000000;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 3px 0;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: #FFD700;
    color: #000000;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    background-color: #000000;
    color: #FFD700;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.hero-button:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-button-outline {
    display: inline-block;
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-button-outline:hover {
    background-color: #000000;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #FFD700;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #FFEC9F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000000;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.feature-card p {
    color: #000000;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #FFD700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.placeholder-image {
    height: 300px;
    background-color: #FFEC9F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-style: italic;
}

.placeholder-image-small {
    width: 50px;
    height: 50px;
    background-color: #FFEC9F;
    border-radius: 50%;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-text p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.about-text li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #000000;
}

.about-text li:before {
    content: "✓";
    color: #000000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-button {
    display: inline-block;
    background-color: #000000;
    color: #FFD700;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-button:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #000000;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #FFD700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background-color: #FFEC9F;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon-img {
    width: 64px;
    height: 64px;
}r {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.service-content p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    text-decoration: underline;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #FFD700;
}

.products-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.products-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.products-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.products-text p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

.products-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.product-logo {
    background-color: #FFEC9F;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #000000;
    font-weight: bold;
}

.products-button {
    display: inline-block;
    background-color: #000000;
    color: #FFD700;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.products-button:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #000000;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #FFD700;
    color: #000000;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #FFD700;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3, .footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFEC9F;
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 10px;
}

.whatsapp-button a {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features, .about, .services, .products, .testimonials, .cta {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .about-content, .products-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image, .products-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features, .about, .services, .products, .testimonials, .cta {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .feature-card, .service-card, .testimonial-card {
        padding: 20px;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-button, .hero-button-outline, .cta-button, .cta-button-outline {
        width: 100%;
    }
}

/* Categories Section Styles */
.categories-section {
    padding: 60px 0;
    background-color: #FFD700;
}

.categories-title {
    text-align: center;
    margin-bottom: 50px;
}

.categories-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.categories-title p {
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #FFEC9F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.category-card p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-card li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #000000;
    font-size: 0.9rem;
}

.category-card li:before {
    content: "•";
    color: #000000;
    font-weight: bold;
    position: absolute;
    left: 0;
}


/* Service Category Styles with Yellow Boxes */
.service-category {
    padding: 60px 0;
    background-color: #FFD700;
    margin-bottom: 0;
}

.service-category:nth-child(even) {
    background-color: #FFEC9F;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.category-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.category-header p {
    color: #000000;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.service-item h3 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-item p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #000000;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "•";
    color: #000000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

