:root {
    --primary-gradient: linear-gradient(90deg, #FF57B9 0%, #A74AF6 100%);
    --secondary-gradient: linear-gradient(135deg, #A74AF6 0%, #FF57B9 100%);
    --primary-color: #A74AF6;
    --text-dark: #111111;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg-light: #F9F9F9;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(167, 74, 246, 0.3);
}

.btn-gradient {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 87, 185, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 74, 246, 0.5);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary {
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

/* Header */
.header {
    background: transparent;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 1.8rem;
    margin-right: 8px;
}

.nav a {
    margin: 0 20px;
    font-weight: 500;
    color: var(--text-dark);
}

.nav a:hover {
    color: var(--primary-color);
}

/* section */
section {
    scroll-margin-top: 80px;
}

@media (max-width: 600px) {
    section {
        scroll-margin-top: 160px;
    }
}
/* Hero Section */
.hero {
    padding: 90px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 450px;
}

.hero-sub {
    font-size: 0.95rem !important;
    color: var(--primary-color) !important;
    font-weight: 500;
    margin-top: -10px !important;
    margin-bottom: 30px !important;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    /* No shadow as per request for clean look, but maybe a soft glow */
    filter: drop-shadow(0 10px 30px rgba(167, 74, 246, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* About Section */
.about {
    padding: 60px 0 40px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-tabs {
    margin-bottom: 20px;
}

.tab-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 20px;
    margin-right: 10px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.stats-container {
    display: none;
    justify-content: space-around;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #eee;
}

/* Services Section */
.services {
    padding: 80px 0 60px 0;
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.logo-img {
    height: 80px;
    width: auto;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-card--detailed {
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(167, 74, 246, 0.12), rgba(255, 87, 185, 0.12));
    border: 1px solid rgba(167, 74, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.service-bullets {
    margin-top: 14px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-bullets li {
    color: var(--text-light);
    font-size: 0.88rem;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.service-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-gradient);
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    width: 100px;
    margin: 0 auto;
    /* Centered incorrectly in design usually, but for simplicity */
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 80px 0 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.footer-contact a {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.contact-details .icon {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(167, 74, 246, 0.1);
}

.full-width {
    width: 100%;
}

.input-error {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1) !important;
}

.field-error {
    display: block;
    color: #e53e3e;
    font-size: 0.82rem;
    margin-top: 5px;
    min-height: 16px;
}

.form-success {
    display: none;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(72, 187, 120, 0.05));
    border: 1px solid rgba(72, 187, 120, 0.4);
    color: #276749;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    padding: 60px 0 0;
    background: var(--bg-light);
    border-top: 1px solid #eee;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-brand {
    max-width: 380px;
}

.footer-tagline {
    color: var(--text-light);
    margin-top: 16px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.social-links {
    margin-top: 20px;
    /* display: none; */
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.social-icon:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(167, 74, 246, 0.3);
}

.footer-bottom {
    border-top: 1px solid #e8e8e8;
    padding: 20px 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .about-grid {
        gap: 30px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav a {
        margin: 0 5px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .footer-main {
        gap: 30px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
