/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --secondary-color: #06b6d4;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 20px 25px -5px rgba(0,0,0,0.05);
    --animation-speed: 0.3s;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70vh;
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 65%, 0% 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header styles */
header {
    padding: 40px 0;
    text-align: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    background: var(--bg-card);
    border-radius: 60px;
    padding: 10px 30px;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
    transition: transform var(--animation-speed) ease, box-shadow var(--animation-speed) ease;
}

.logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.logo-icon i {
    color: white;
    font-size: 20px;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main content styles */
main {
    padding: 20px 0;
}

.intro {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.intro p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.intro-decoration {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.intro-decoration span {
    display: block;
    height: 4px;
    width: 40px;
    background: white;
    border-radius: 2px;
    opacity: 0.7;
}

.intro-decoration span:nth-child(2) {
    width: 25px;
}

/* Services section */
.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 35px 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: var(--shadow-md);
    transition: transform var(--animation-speed) ease, box-shadow var(--animation-speed) ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity var(--animation-speed) ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.btn:hover::before {
    opacity: 1;
}

.btn i {
    margin-left: 8px;
    transition: transform var(--animation-speed) ease;
}

.btn:hover i {
    transform: translateX(4px);
}

/* Footer styles */
footer {
    text-align: center;
    padding: 50px 0 30px;
    margin-top: 50px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-content {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-pattern {
        height: 60vh;
    }
    
    .services {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .logo {
        padding: 8px 20px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    
    .intro h2 {
        font-size: 1.8rem;
    }
    
    .intro p {
        font-size: 1.1rem;
    }
} 