:root {
    --primary: #2A2F4F;
    --secondary: #917FB3;
    --accent: #E5BEEC;
    --dark: #1A1A1A;
    --light: #F8F9FA;
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: white;
}

.about-img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* Simplified Services Style */
.service-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

#services .rounded-3 {
    transition: transform 0.2s;
    border: 1px solid rgba(0,0,0,0.05);
}

#services .rounded-3:hover {
    transform: translateY(-5px);
}

/* Simplified Portfolio Style */
.portfolio-item img {
    transition: transform 0.3s;
}

.portfolio-item:hover img {
    transform: scale(1.02);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: -60px auto 1rem;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-form .form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: black;
    padding: 1rem;
    border-radius: 10px;
}

.contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}
