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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-bar {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.date {
    color: #666;
    font-size: 14px;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.top-links a:hover {
    text-decoration: underline;
}

.main-header {
    padding: 20px 0;
}

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

.logo h1 {
    color: #007bff;
    font-size: 36px;
    font-weight: bold;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navigation a:hover,
.navigation a.active {
    color: #007bff;
}

.search-form {
    display: flex;
    align-items: center;
    border: 2px solid #007bff;
    border-radius: 25px;
    overflow: hidden;
}

.search-input {
    padding: 10px 20px;
    border: none;
    outline: none;
    width: 200px;
}

.search-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.cta-btn {
    background: #28a745;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #218838;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.prev-btn,
.next-btn {
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255,255,255,0.5);
}

/* Main Content Styles */
.main-content {
    padding: 60px 0;
}

.quality-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.quality-section h2 {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 50px;
}

.tv-section h3 {
    font-size: 32px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tv-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

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

.app-btn {
    background: #007bff;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.app-btn:hover {
    background: #0056b3;
}

.app-btn.google {
    background: #28a745;
}

.app-btn.google:hover {
    background: #218838;
}

.app-btn.online {
    background: #dc3545;
}

.app-btn.online:hover {
    background: #c82333;
}

/* About Section */
.about-section {
    padding: 80px 0;
    text-align: center;
}

.about-section h2 {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 30px;
}

.about-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.social-share {
    margin-top: 50px;
}

.social-share p {
    margin-bottom: 20px;
    font-size: 16px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.telegram {
    background: #229ed9;
}

.share-btn.linkedin {
    background: #0077b5;
}

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

.services-section h2 {
    text-align: center;
    font-size: 36px;
    color: #007bff;
    margin-bottom: 50px;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.service-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.service-link:hover {
    color: #0056b3;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #007bff;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.testimonial-card p {
    color: #666;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.star {
    color: #ffc107;
    font-size: 18px;
}

.rating-text {
    color: #666;
    font-size: 14px;
    margin-left: 10px;
}

/* Footer Styles */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #007bff;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

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

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

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

.footer-links a:hover {
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: #0056b3;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input {
        width: 150px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .quality-section h2,
    .about-section h2,
    .services-section h2,
    .testimonials-section h2 {
        font-size: 28px;
    }
}