:root {
    --primary: #4884ac;
    --secondary: #164261;
    --light: #EFF5F9;
    --dark: #164261;
    --success: #10b981;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-dark {
    background-color: var(--dark) !important;
}
.text-primary{ 
   color: var(--primary) !important;
}
.btn {
    font-weight: 700;
    transition: .5s;
}
.btn-primary {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    color:  var(--primary);
    background-color: transparent ;
    border-color:  var(--primary);
}
.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-outline-primary:hover {
    color: #fff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.hero-header {
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url(../img/hero.jpg)  center/cover no-repeat;
}

.service-item {
    position: relative;
    height: 450px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    transform: rotate(-14deg);
}

.service-item .service-icon i {
    transform: rotate(15deg);
}


@media (min-width: 576px) {
    .team-item .row {
        height: 350px;
    }
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}

.consultation-form-section{
    margin: 40px 0px;
}
.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
        
.form-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2rem;
    text-align: center;
}
        
.form-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
        
.progress-bar-container {
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}
        
.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
        
.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}
        
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
        
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}
.step.active .step-number {
    background: var(--primary);
    color: white;
}
        
.step.completed .step-number {
    background: var(--success);
    color: white;
}
.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
}
.step.active .step-label {
    color: var(--primary);
}
.form-content {
    padding: 3rem;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}
        
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.form-control, .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}
        
.btn-group-custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
        
.btn-option {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}
        
.btn-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
        
.btn-option.selected {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}
        
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}
        
.btn-custom {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}
        
.btn-next, .btn-submit {
    background: var(--primary);
    color: white;
}
        
.btn-next:hover, .btn-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    color: white;
}
        
.btn-prev {
    background: #e2e8f0;
    color: var(--dark);
}
        
.btn-prev:hover {
    background: #cbd5e1;
}
        
.package-display {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}
        
.package-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
        
.package-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
        
.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}
        
.success-checkmark {
    width: 50px;
    height: 50px;
    margin: 0px auto 1rem ;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s;
}
        
@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}
        
.success-checkmark i {
    font-size: 2rem;
    color: white;
}

 .hero-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 100px 0 60px;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.search-box {
    max-width: 600px;
    margin: 2rem auto;
}
.search-box input {
    border-radius: 50px;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1.1rem;
}
.faq-section {
    padding: 80px 0;
}
.faq-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}
        
.category-btn:hover, .category-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}
        
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
        
.accordion-button {
    background: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border-radius: 15px !important;
}
        
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}
        
.accordion-button:focus {
    box-shadow: none;
}
        
.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}
        
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}
        
.btn-light-custom {
    background: white;
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}
        
.btn-light-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}
        
.no-results {
    text-align: center;
    padding: 3rem;
    color: #64748b;
}
.dashboard-card { border-radius: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.card-icon { font-size: 2rem; color: #0d6efd; }
.table thead th { background-color: #0d6efd; color: #fff; }
.login-card { max-width: 400px; margin: 8rem auto; border-radius: 15px; box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
@media (max-width: 768px) {
    .form-content {
        padding: 1.5rem;
    }       
    .step-label {
        font-size: 0.7rem;
    }
}