/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Achievement Section */
.top-achievement {
    background-color: #000;
    padding: 5px 20px;
    text-align: center;
}

.top-achievement p {
    font-size: 20px;
    color: #ffcc00;
    font-weight: bold;
    margin: 0;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffcc00;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info a:hover {
    color: #ffcc00;
}

.whatsapp-icon,
.call-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.phone-number {
    font-size: 1.8rem;
}

/* Banner Styles */
.bannerDesktop {
    width: 100%;
    height: auto;
    display: block;
}

.bannerMobi {
    width: 100%;
    height: auto;
    display: none;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background-color: #fff;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffcc00;
    font-weight: bold;
    margin-bottom: 1rem;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 2rem;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-content p {
    font-size: 1rem;
    color: #000;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #ffcc00;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: #ffcc00;
    color: #000;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.3rem;
    color: #ffcc00;
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-box:hover h3 {
    color: #000;
}

.feature-box p {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.6;
}

.feature-box:hover p {
    color: #000;
}

/* CTA Section */
.cta-section {
    background-color: #000;
    padding: 80px 20px;
    text-align: center;
    width: 100%;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ffcc00;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-section p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-call,
.cta-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #ffcc00;
}

.cta-btn-call {
    background-color: #ffcc00;
    color: #000;
}

.cta-btn-call:hover {
    background-color: #ffdd33;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

.cta-btn-whatsapp {
    background-color: transparent;
    color: #ffcc00;
}

.cta-btn-whatsapp:hover {
    background-color: #ffcc00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

.cta-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Results Section */
.results {
    padding: 80px 20px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.results h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffcc00;
    font-weight: bold;
    margin-bottom: 1rem;
}

.results-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 3rem;
    font-weight: 500;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.result-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.result-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
    transition: transform 0.3s ease;
}

.result-card:hover .result-image {
    transform: scale(1.05);
}

.result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.result-card:hover .result-overlay {
    opacity: 1;
}

.result-overlay p {
    color: #ffcc00;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
}

/* Advantages Section */
.advantages {
    padding: 80px 20px;
    background-color: #fff;
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffcc00;
    font-weight: bold;
    margin-bottom: 1rem;
}

.advantages-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 3rem;
    font-weight: 500;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffcc00;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.2);
    border-left-color: #ffcc00;
}

.advantage-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 0.5rem;
}

.advantage-card h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: bold;
}

.advantage-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.advantage-card:hover h3 {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    background-color: #000;
    color: #fff;
    padding: 150px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffcc00;
    font-weight: bold;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #fff;
}

.cta-btn {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background-color: #ffdd33;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Achievement Section */
.achievement {
    background-color: #000;
    padding: 60px 20px;
    text-align: center;
}

.achievement h2 {
    font-size: 2.8rem;
    color: #ffcc00;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.service-card:hover {
    border-color: #ffcc00;
    background-color: #000;
    color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-card:hover h3,
.service-card:hover p {
    color: #fff;
}

.service-card:hover .service-icon {
    color: #ffcc00;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #000;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: #000;
    color: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 2rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: #fff;
    color: #000;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffcc00;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #000;
}

/* Footer */
/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 20px 20px;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ffcc00;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: #ffcc00;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffcc00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.85rem;
}

.bannerDesktop{width: 100%;}
.bannerMobi{display: none; width: 100%;}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .phone-number {
        display: none;
    }

    .whatsapp-icon,
    .call-icon {
        width: 30px;
        height: 30px;
    }
    .bannerDesktop{width: 100%; display: none;}
    .bannerMobi{display: block; width: 100%;}

    .why-choose-us h2 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .why-content p {
        font-size: 0.95rem;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .cta-btn-call,
    .cta-btn-whatsapp {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .cta-icon {
        width: 20px;
        height: 20px;
    }

    .results {
        padding: 60px 20px;
    }

    .results h2 {
        font-size: 2rem;
    }

    .results-tagline {
        font-size: 1rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .result-overlay p {
        font-size: 0.9rem;
    }

    .advantages h2 {
        font-size: 2rem;
    }

    .advantages-intro {
        font-size: 0.95rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-card {
        padding: 2rem;
    }

    .advantage-number {
        font-size: 1.5rem;
    }

    .advantage-card h3 {
        font-size: 1rem;
    }

    .advantage-card p {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }
}
