*{font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;}
body {
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;}
.bg-mesh {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        background: 
            radial-gradient(circle at 25% 25%, var(--primary-light), transparent 70%),
            radial-gradient(circle at 75% 75%, var(--), transparent 70%);
        background-color: var(--light-color);
        opacity: 0.3;}
.bg-dots {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-image: radial-gradient(var(--gray-color) 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 0.15;}
.services-container {
padding: 4rem 0;}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.service-card {
background: var(--light-color);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(10, 13, 18, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
border: 1px solid rgba(59, 130, 246, 0.1);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(10, 13, 18, 0.15);
}
.service-card-header {
padding: 1.5rem;
background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
color: var(--light-color);
display: flex;
align-items: center;
cursor: pointer;
transition: background 0.3s;
}
.service-card:hover .service-card-header {
background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}
.service-icon {
font-size: 2rem;
margin-right: 1rem;
min-width: 50px;
text-align: center;
color: var(--secondary-color);
}
.service-title {
font-size: 1.3rem;
font-weight: 600;
}
.service-card-content {
padding: 0 1.5rem;
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-out, padding 0.3s;
}
.service-card.active .service-card-content {
padding: 1.5rem;
max-height: 1000px;
}
.service-description {
margin-bottom: 1rem;
line-height: 1.6;
color: var(--gray-color);
}
.tech-stack {
margin: 1.5rem 0;
}
.tech-stack h4 {
margin-bottom: 0.5rem;
color: var(--primary-color);
}
.tech-icons {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.tech-icon {
width: 40px;
height: 40px;
object-fit: contain;
filter: grayscale(100%) opacity(70%);
transition: filter 0.3s;
}
.tech-icon:hover {
filter: grayscale(0%) opacity(100%);
}
.benefits-list {
list-style-type: none;
}
.benefits-list li {
margin-bottom: 0.5rem;
position: relative;
padding-left: 1.5rem;
color: var(--gray-color);
}
.benefits-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--secondary-color);
font-weight: bold;
}
.service-image {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 8px;
margin: 1rem 0;
box-shadow: 0 5px 15px rgba(10, 13, 18, 0.1);
border: 1px solid rgba(59, 130, 246, 0.1);
}
@media (max-width: 768px) {
.services-grid {
grid-template-columns: 1fr; 
}
.service-card {
margin: 0 auto;
width: 100%;
}
.service-card-header {
flex-direction: column;
align-items: flex-start;
}
.service-icon {
margin-bottom: 0.5rem;
margin-right: 0;
}
.tech-icons {
justify-content: flex-start;
}}
@media (max-width: 480px) {
.services-container {
padding: 3rem 0.5rem;
}
.service-title {
font-size: 1.1rem;
}
.service-description {
font-size: 0.95rem;
}
.tech-icon {
width: 32px;
height: 32px;
}
.service-card-content {
font-size: 0.95rem;}}
header {
background: linear-gradient(135deg, var(--light-color), var(--lig-color), var(--light-color));
color: var(--light-color);
padding: 6rem 0 4rem;
text-align: center;
position: relative;
overflow: hidden;
}
header::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Q50,80 0,100 Z" fill="%23f9fafb" opacity="0.05"/></svg>');
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: bottom;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
position: relative;
display: inline-block;
color: #e79301;
}
h1::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background-color: var(--secondary-color);
border-radius: 2px;
}
.subtitle {
font-size: 1.1rem;
opacity: 0.9;
max-width: 800px;
margin: 0 auto 2rem;
color: rgba(97, 97, 97, 0.9);
}
@media (max-width: 1024px) {
header {
padding: 5rem 0 3rem;
}
h1 {
font-size: 2.2rem;
}
.subtitle {
font-size: 1rem;
max-width: 90%;
}}
@media (max-width: 768px) {
header {
padding: 4rem 0 2.5rem;
}
h1 {
font-size: 2rem;
}
.subtitle {
font-size: 0.95rem;
}}
@media (max-width: 480px) {
header {
padding: 3rem 0 2rem;
}
h1 {
font-size: 1.6rem;
}
h1::after {
width: 60px;
height: 3px;
bottom: -8px;
}
.subtitle {
font-size: 0.9rem;
}}