:root {
    --dark-red: #af2026;
    --gold: #F6C700;
    --white: #FFFFFF;
    --petroleum-blue: #0e5c67;
}
h4{
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 20px;
}
.list-unstyled li{
    margin-bottom: 5px;
}
.mt-8{
    margin-top: 80px;
}
.mb-120{margin-bottom: 80px;}
body {
    font-family: "Josefin Sans",sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
.smallt{font-size: 12px;}
/* Navbar Styles */
.navbar {
    background-color: var(--petroleum-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.w-80 {
    width: 80% !important;
}
.navbar-brand img {
    max-height: 80px;
}

.navbar-brand span {
    font-weight: 700;
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #7a2829;
    border-color: #7a2829;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #212529;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #dbb100;
    border-color: #dbb100;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--petroleum-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer h5 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer a {
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 0.8;
}

/* Cards & Sections */
.card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-header {
    background-color: var(--dark-red);
    color: var(--white);
    font-weight: 700;
    padding: 1rem 1.5rem;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--dark-red);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background-color: var(--petroleum-blue);
    color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-content {
    padding: 3rem;
}

.hero-title {
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-image {
    height: 100%;
    object-fit: cover;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(139, 46, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--dark-red);
}

/* Form Styles */
.form-control:focus {
    border-color: var(--dark-red);
    box-shadow: 0 0 0 0.25rem rgba(139, 46, 47, 0.25);
}

.form-label {
    font-weight: 600;
}

.required:after {
    content: '*';
    color: var(--dark-red);
    margin-left: 3px;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.form-steps:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #495057;
    position: relative;
    z-index: 1;
}

.step.active {
    background-color: var(--dark-red);
    color: var(--white);
}
.step.active .step-label{
    color: var(--dark-red);
}
.step-label {
    position: absolute;
    top: 35px;
    width: 150px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .navbar-brand img {
        max-height: 40px;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-image-container {
        min-height: 250px;
    }
    
    .step-label {
        width: 80px;
        font-size: 0.7rem;
    }
}