/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 3rem 1rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background-color: #fbbf24;
    color: #1e3a8a;
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Slider */
#slider {
    padding: 2rem;
    overflow: hidden;
}

.slider-container {
    display: flex;
    width: 300%;
    animation: slide 15s infinite linear;
}

.slide {
    width: 33.33%;
    padding: 0 1rem;
}

.slide img {
    width: 100%;
    border-radius: 12px;
}

@keyframes slide {
    0%, 100% { transform: translateX(0); }
    33.33% { transform: translateX(-33.33%); }
    66.66% { transform: translateX(-66.66%); }
}

/* Features section */
.features-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-container {
    background: #eef2ff;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.feature-description {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.feature-link {
    color: #2563eb;
    font-weight: 600;
}

.feature-link:hover {
    text-decoration: underline;
}

/* Download section */
#download {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    margin-top: 3rem;
}

#download h2 {
    margin-bottom: 2rem;
}

#downloadBtn {
    background-color: #fbbf24;
    color: #1e3a8a;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #f1f5f9;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-cta, .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    background-color: #f8fafc;
    padding: 4rem 0;
    margin-top: 2rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    padding: 1.5rem;
    width: 280px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eaeaea;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #1e40af;
    margin: 0.5rem 0;
    font-weight: 600;
}

.badge {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.contact-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    margin-top: 0.5rem;
}

.contact-value {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.contact-action {
    color: white;
    background-color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.contact-action:hover {
    background-color: #1d4ed8;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 90%;
        max-width: 320px;
    }
}

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3748;
    position: relative;
}

.contact-section .section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    margin: 15px auto 0;
    border-radius: 2px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7b66ff);
    color: white;
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    background-color: #ebf5ff;
    color: #3b82f6;
    font-size: 0.75rem;
    border-radius: 4px;
    margin-left: 8px;
}

.contact-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #4a5568;
}

.contact-value {
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-action {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3b82f6;
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.contact-action:hover {
    background-color: #2563eb;
}

.map-container {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.map-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2d3748;
    text-align: center;
}

.google-map {
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

/* Modern Footer Styles */
.modern-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-logo h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.footer-logo p {
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
}

.footer-column h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: #3b82f6;
    margin-top: 10px;
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-links a:before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s;
}

.footer-links a:hover:before {
    opacity: 1;
    left: -10px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #a0aec0;
}

.newsletter-form button {
    padding: 0 20px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #2563eb;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.copyright p {
    color: #a0aec0;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #3b82f6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-column {
        flex-basis: 45%;
    }
}

@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #f0f8ff;
    padding: 18px 0;
    margin: 20px 0;
    border-radius: 8px;
}
.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.marquee-item {
    display: inline-block;
    margin: 0 45px;
    font-size: 22px;
    font-weight: bold;
    color: #2563eb;
}