/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #EDF1F4;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    color: #718096;
    font-weight: 400;
    margin: 0;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #4c63ec;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 1px solid #4c63ec;
}

.call-button:hover {
    background: #3b52db;
    transform: translateY(-2px);
    color: white;
}

.call-button i {
    font-size: 1.1rem;
}

/* Company Information Section */
.company-info {
    margin-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #E5E7EB;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h2 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    color: #4a5568;
    font-weight: 500;
}

.services-list i {
    color: #667eea;
    font-size: 1.2rem;
}

/* Social Links Section */
.social-links {
    margin-bottom: 40px;
}

.social-links h2 {
    text-align: center;
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

.social-link i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

/* Social link specific colors */
.social-link.website:hover { background: #4c63ec; }
.social-link.linkedin:hover { background: linear-gradient(135deg, #0077b5, #00a0dc); }
.social-link.twitter:hover { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
.social-link.facebook:hover { background: linear-gradient(135deg, #4267b2, #365899); }
.social-link.instagram:hover { background: linear-gradient(135deg, #e4405f, #c13584); }
.social-link.youtube:hover { background: linear-gradient(135deg, #ff0000, #cc0000); }
.social-link.github:hover { background: linear-gradient(135deg, #333, #24292e); }
.social-link.email:hover { background: linear-gradient(135deg, #ea4335, #d93025); }

/* Contact Information Section */
.contact-info {
    margin-bottom: 40px;
}

.contact-info h2 {
    text-align: center;
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border: 1px solid #E5E7EB;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item i {
    font-size: 1.8rem;
    color: #667eea;
    margin-top: 5px;
}

.contact-item h3 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    backdrop-filter: blur(10px);
}

.footer p {
    color: #4a5568;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5a67d8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 30px 15px;
    }
    
    .logo {
        flex-direction: column;
        gap: 15px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    

    
    .info-card {
        padding: 20px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.8rem;
    }
    
    .social-link {
        padding: 15px;
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 20px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header, .info-card, .social-link, .contact-item, .footer {
    animation: fadeInUp 0.6s ease forwards;
}

.info-card { animation-delay: 0.1s; }
.social-link { animation-delay: 0.2s; }
.contact-item:nth-child(1) { animation-delay: 0.3s; }
.contact-item:nth-child(2) { animation-delay: 0.4s; }
.contact-item:nth-child(3) { animation-delay: 0.5s; }
.contact-item:nth-child(4) { animation-delay: 0.6s; }
.footer { animation-delay: 0.7s; }
