:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card .product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-card .product-features li {
    margin-bottom: 0.8rem;
    color: #666;
}

.product-card .cta-button {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.product-card .cta-button:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .product-card {
        padding: 1.5rem;
    }

    .product-image {
        height: 180px;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }
}

/* Slider Section */
.slider-section {
    padding: 5rem 0;
    background-color: white;
}

.slider-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.product-slider {
    width: 100%;
    height: 600px;
    margin: 0 auto;
    padding: 20px;
}

.swiper-slide {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.slide-content {
    display: flex;
    height: 100%;
    padding: 2rem;
    gap: 2rem;
    align-items: center;
}

.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.swiper-slide-active .slide-image img {
    transform: scale(1.05);
}

.slide-details {
    flex: 1;
    padding: 2rem;
}

.slide-details h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.slide-details .product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.slide-details .product-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.slide-details .product-features li i {
    color: #2ecc71;
    margin-right: 1rem;
}

.slide-details .product-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.slide-details .product-cta:hover {
    background-color: #2980b9;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .slide-content {
        flex-direction: column;
        padding: 1rem;
    }

    .product-slider {
        height: 800px;
    }

    .slide-image img {
        max-height: 300px;
    }

    .slide-details {
        padding: 1rem;
        text-align: center;
    }

    .slide-details h3 {
        font-size: 1.5rem;
    }

    .slide-details .product-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-slider {
        height: 700px;
        padding: 10px;
    }

    .slide-image img {
        max-height: 250px;
    }

    .slide-details h3 {
        font-size: 1.3rem;
    }

    .slide-details .product-features li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-slider {
        height: 600px;
    }

    .slide-image img {
        max-height: 200px;
    }

    .slide-details {
        padding: 0.5rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-list {
    list-style: none;
    margin-bottom: 3rem;
}

.about-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: var(--secondary-color);
    margin-right: 1rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info {
    text-align: center;
}

.contact-info i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-info {
    text-align: left;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-info p {
    opacity: 0.9;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.social-links h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 1.3rem;
}

.footer-contact {
    text-align: right;
}

.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
}

/* Social Media Icon Colors */
.social-icon:hover {
    color: white;
}

.social-icon .fa-facebook-f:hover {
    background: #1877f2;
}

.social-icon .fa-instagram:hover {
    background: #e4405f;
}

.social-icon .fa-youtube:hover {
    background: #ff0000;
}

.social-icon .fa-whatsapp:hover {
    background: #25d366;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        margin: 2rem 0;
    }

    .social-icons {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 0 1rem;
    }

    .footer-content {
        gap: 2rem;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}
