* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
        
}

header {
    /* background-color: #333; */
    color: white;
    text-align: center;
    padding: 2rem;
}

.services {
    padding: 2rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact {
    background-color: #f4f4f4;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    /* background-color: #333; */
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* button:hover {
    background-color: #444;
}  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #f1f5f9;
}
.testimonial-card {
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}
.quote-icon {
    color: #dbeafe;
    font-size: 6rem;
    position: absolute;
    top: -15px;
    right: 10px;
    z-index: 0;
}
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}
.star-rating i {
    color: #fbbf24;
}
.logo-item {
transition: all 0.3s ease;
filter: grayscale(0.8);
opacity: 0.8;
}
.logo-item:hover {
transform: scale(1.1) translateY(-5px);
filter: grayscale(0);
opacity: 1;
}
.logo-container {
mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.modal {
    transition: all 0.4s ease;
    transform: translateY(-50px);
    opacity: 0;
    visibility: hidden;
}
.modal.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.form-group {
    transition: all 0.3s ease;
}
.form-group:focus-within {
    transform: translateY(-3px);
}
.tech-tag {
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
