:root {
    --primary: #8A2BE2;
    --primary-dark: #6A1BB3;
    --secondary: #FF6B35;
    --dark: #1A1A1A;
    --light: #F8F9FA;
    --gray: #6C757D;
}

body {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 3rem;
}

.img-responsive {
    width: 75%;
    height: auto;
}

.bg-dark-custom {
    background-color: var(--dark) !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #2D1B69 0%, var(--dark) 100%) !important;
}

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

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary-custom {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.border-primary-custom {
    border-color: var(--primary) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.pricing-card {
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.nav-link {
    font-weight: 500;
}

.hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

footer {
    color: #ffffff !important;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bio-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid var(--primary);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}


/* Responsive CSS */

@media (min-width: 1400px) {}


/* XL */

@media (min-width: 1200px) and (max-width: 1399px) {
    h1 {
        font-size: 3rem;
    }
}


/* LG */

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-section {
        padding-top: 150px;
        padding-bottom: 150px;
    }
    h1 {
        font-size: 3rem;
    }
}


/* MD */

@media (min-width: 768px) and (max-width: 991px) {
    .feature-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    h1 {
        font-size: 3rem;
    }
}


/* SM */

@media only screen and (max-width: 767px) {
    .feature-icon {
        width: 140px;
        height: 140px;
        font-size: 3.5rem;
    }
    h1 {
        font-size: 2.7rem;
    }
}