/* Reset and 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: #ffffff;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-button {
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Logos Section */
.logos-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.logos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.logo-group h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
    font-weight: 600;
}

.logo-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
}

.testimonial blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.3;
}

.testimonial blockquote::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    bottom: -40px;
    right: -30px;
    opacity: 0.3;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    opacity: 0.8;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: white;
}

.contact-banner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-banner p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-button {
    display: inline-block;
    background: #00b894;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-button:hover {
    background: #00a085;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 184, 148, 0.3);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0;
}

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

.footer-text p {
    opacity: 0.8;
}

.footer-links a {
    color: #74b9ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0984e3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .logo-items {
        gap: 15px;
    }
    
    .logo-item {
        padding: 15px;
    }
    
    .logo-item img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial blockquote {
        font-size: 1.2rem;
    }
    
    .contact-banner h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button,
    .contact-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .logos-section,
    .testimonial-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .logo-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonial blockquote::before,
    .testimonial blockquote::after {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image,
.logo-group,
.testimonial,
.contact-banner {
    animation: fadeInUp 0.8s ease-out;
}

