:root {
    --primary-color: #6c63ff;
    --secondary-color: #4d44db;
    --dark-color: #2a2a72;
    --light-color: #f8f9fa;
    --accent-color: #ff6584;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.forSale {
position: relative;
    background-color: var(--dark-color);
    color: #f8f9fa;
    padding: 10px;
    min-height: 40vh;
}
.forSale h2{
    background-color: var(--dark-color);
    color: #f8f9fa;
    padding: 10px;
    min-height: 30vh;
    font-size: 8vw;
    text-align: center;
    background-color: #4d44db;
}

.forSale .markets {
    position: absolute;
    display: inline;
    align-items: center;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.markets .domains {
   border: 20px solid #2a2a72;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-item a {
    color: var(--secondary-color);
}

.hero-section {
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 500;
}

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

.btn-outline-light {
    padding: 10px 25px;
    font-weight: 500;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.feature-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    height: 100%;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.courses-section {
    background-color: var(--light-color);
}

.course-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    background: white;
}

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

.course-img {
    height: 200px;
    object-fit: cover;
}

.course-title {
    font-weight: 600;
    color: var(--dark-color);
}

.course-duration {
    color: var(--accent-color);
    font-weight: 500;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
}

.contact-section {
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    color: white;
}

.contact-form .form-control {
    padding: 15px;
    border-radius: 8px;
    border: none;
    margin-bottom: 20px;
}

.contact-form textarea.form-control {
    height: 150px;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Animation classes */
.hidden {
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 1s forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}