:root {
    --primary-purple: #6a4c93;
    --secondary-purple: #8b6baf;
    --accent-teal: #00b4a0;
    --light-teal: #4fd1c7;
    --dark-purple: #4a3764;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: white;
    padding: 150px 0 80px;
    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;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA4MDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxwYXRoIGZpbGw9IiMwMGI0YTAwMyIgZD0iTTAgNDAwTDEyMDAgODAwVjBMMCA0MDBaIj48L3BhdGg+PC9zdmc+');
    background-size: cover;
    opacity: 0.1;
}

.intro-text {
    position: relative;
    z-index: 1;
}

.intro-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.btn-xl {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    background-color: var(--accent-teal);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-xl:hover {
    background-color: var(--light-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Logo Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.logo-top {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.logo-bottom {
    font-size: 1.5rem;
    color: white;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-purple) !important;
    display: flex;
    align-items: center;
}

.navbar-brand .logo-text {
    margin-left: 0.5rem;
}

.navbar-brand .logo-top {
    font-size: 1.2rem;
    color: var(--primary-purple);
    margin-bottom: 0;
}

.navbar-brand .logo-bottom {
    font-size: 0.7rem;
    color: var(--primary-purple);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    text-align: center;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-teal) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-teal);
}

.text-center .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subheading {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* About Section */
#about {
    background-color: white;
}

.p-about {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.span-about {
    font-style: italic;
    color: var(--primary-purple);
    font-weight: 500;
}

/* Services Section */
#services {
    background-color: var(--background-light);
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-purple);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top-color: var(--accent-teal);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.service-card:hover .service-icon {
    color: var(--accent-teal);
}

/* Process Section */
#process {
    background-color: white;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-purple);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background-color: var(--accent-teal);
    transform: scale(1.1);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    color: white;
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-top: 1.5rem;
}

.form-control {
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #e1e5ee;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 160, 0.25);
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--accent-teal);
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h5 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-details p, .contact-details a {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #111;
    color: white;
    padding: 2.5rem 0 1rem;
}

.footer-links p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-purple);
    color: white;
    padding: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-teal);
}

.stat-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        padding: 120px 0 60px;
    }
    
    .intro-heading {
        font-size: 1.8rem;
    }
    
    .logo-top {
        font-size: 2rem;
    }
    
    .logo-bottom {
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-heading {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .section-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    header {
        padding: 100px 0 50px;
    }
    
    .intro-heading {
        font-size: 1.5rem;
    }
    
    .logo-top {
        font-size: 1.8rem;
    }
    
    .logo-bottom {
        font-size: 1rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .btn-xl {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .navbar-brand .logo-top {
        font-size: 1rem;
    }
    
    .navbar-brand .logo-bottom {
        font-size: 0.6rem;
    }
    
    .intro-heading {
        font-size: 1.3rem;
    }
    
    .logo-top {
        font-size: 1.5rem;
    }
}