body:not(.rtl) .elementor-8 .elementor-element.elementor-element-46de2dd{left:0px;}body.rtl .elementor-8 .elementor-element.elementor-element-46de2dd{right:0px;}.elementor-8 .elementor-element.elementor-element-46de2dd{top:0px;}/* Start custom CSS for html, class: .elementor-element-46de2dd *//* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Soft Blue & Purple Gradient */
    background: linear-gradient(135deg, #F9ECD8 0%, #F7F2E8 100%);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #2E5A7A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #C89B3C; /* Modern Purple */
    position: relative;
}

.hero-content p {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Button Styling */
.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #C89B3C;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.btn-secondary {
    border: 2px solid #C89B3C;
    color: #C89B3C;
}

.btn-secondary:hover {
    background-color: #C89B3C;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .btn-group {
        flex-direction: column;
    }
}/* End custom CSS */