.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    color: white;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 200px 160px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 400px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.flow-animation {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    position: relative;
}

.flow-animation::before,
.flow-animation::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(52, 152, 219, 0.5);
}

.flow-animation::before {
    width: 100%;
    height: 100%;
    animation: ripple 3s ease-out infinite;
}

.flow-animation::after {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation: ripple 3s ease-out infinite 1.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: #f8f9fa;
    width: 100%;
    padding: 100px 60px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 15px;
}

.about-visual {
    flex: 1;
    min-height: 400px;
    /*background-image: url('../assets/images/mesh.png') !important; */
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Work Section */
.work {
    background-color: #fff;
    width: 100%;
    padding: 100px 60px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.work-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* .work-img {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: url('../assets/images/mesh.png') !important;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}*/

.work-content {
    padding: 30px;
}

.work-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.work-content p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
    width: 100%;
    padding: 100px 60px;
}

.contact-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: #3498db;
    width: 40px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 17px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 40px;
    }

    .about,
    .work,
    .contact {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .flow-animation {
        width: 300px;
        height: 300px;
    }

    .about-content,
    .contact-container {
        flex-direction: column;
    }

    .about,
    .work,
    .contact {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }
}