/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    /* position: sticky; */
    top: -20px;
    z-index: 1000;
}

.logo img {
    height: 60px; /* Adjust as needed */
    width: auto; /* Maintains aspect ratio */
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6200;
    text-decoration: none;
}
.header .search-bar {
    position: relative;
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
}
.header .search-bar input {
    width: 100%;
    padding: 8px 40px 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
}
.header .search-bar i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}
.header .nav-link {
    color: #333;
    font-size: 16px;
    margin-left: 20px;
    text-decoration: none;
}
.header .nav-link:hover {
    color: #ff6200;
}
.header .dropdown-toggle::after {
    margin-left: 5px;
}
.header .dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header .dropdown-item {
    font-size: 14px;
    color: #333;
    padding: 8px 20px;
}
.header .dropdown-item:hover {
    background-color: #f5f9ff;
    color: #ff6200;
}
.chat-button {
    position: fixed;
    bottom: 80px; /* Adjusted to account for the sticky footer */
    right: 20px;
    background-color: #ff6200;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
}
.chat-button:hover {
    background-color: #e55a00;
}
.chat-button i {
    font-size: 24px;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Heading Styles */
.contact-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a3c5e; /* Dark blue color */
    line-height: 1.2;
}

.contact-heading .highlight {
    color: #007bff; /* Blue highlight for "QUESTIONS" */
}

/* Card Styles */
.contact-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Icon Styles */
.icon img {
    width: 40px;
    height: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 15px;
    }
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Heading Styles */
.contact-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a3c5e; /* Dark blue color */
    line-height: 1.2;
}

.contact-heading .highlight {
    color: #007bff; /* Blue highlight for "QUESTIONS" */
}

/* Card Styles */
.contact-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Icon Styles */
.icon img {
    width: 40px;
    height: 40px;
}

/* Promotional Section */
.promo-section {
    background: linear-gradient(90deg, #1a3c5e 50%, #f8f9fa 50%);
    padding: 50px 0;
    position: relative;
}

.promo-content {
    padding: 20px;
}

.promo-label {
    display: inline-block;
    background-color: #ff5733;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.promo-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.promo-heading .highlight {
    color: #ff5733; /* Orange highlight for "60% OFF" */
}

.sub-heading {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    color: #fff;
}

.benefits-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 10px;
}

.promo-image {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
}

/* Form Styles */
.promo-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.promo-form .form-control,
.promo-form .form-select {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px;
}

.promo-form .input-group-text {
    background-color: #fff;
    border-right: none;
}

.promo-form .form-control:focus {
    box-shadow: none;
    border-color: #ff5733;
}

.btn-promo {
    background-color: #ff5733;
    color: #fff;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-promo:hover {
    background-color: #e04e2b;
}

.form-check-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.form-check-label a {
    color: #ff5733;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 15px;
    }

    .promo-section {
        background: linear-gradient(180deg, #1a3c5e 50%, #f8f9fa 50%);
    }

    .promo-heading {
        font-size: 1.5rem;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .promo-form {
        padding: 20px;
    }
}


/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Heading Styles */
.contact-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a3c5e; /* Dark blue color */
    line-height: 1.2;
}

.contact-heading .highlight {
    color: #007bff; /* Blue highlight for "QUESTIONS" */
}

/* Card Styles */
.contact-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Icon Styles */
.icon img {
    width: 40px;
    height: 40px;
}

/* Promotional Section */
.promo-section {
    background: linear-gradient(90deg, #1a3c5e 50%, #1a3c5e 50%);
    padding: 50px 0;
    position: relative;
}

.promo-content {
    padding: 20px;
}

.promo-label {
    display: inline-block;
    background-color: #ff5733;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.promo-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.promo-heading .highlight {
    color: #ff5733; /* Orange highlight for "60% OFF" */
}

.sub-heading {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    color: #fff;
}

.benefits-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 10px;
}

.promo-image {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
}

/* Form Styles */
.promo-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.promo-form .form-control,
.promo-form .form-select {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px;
}

.promo-form .input-group-text {
    background-color: #fff;
    border-right: none;
}

.promo-form .form-control:focus {
    box-shadow: none;
    border-color: #ff5733;
}

.btn-promo {
    background-color: #ff5733;
    color: #fff;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-promo:hover {
    background-color: #e04e2b;
}

.form-check-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.form-check-label a {
    color: #ff5733;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Referral Section */
.referral-section {
    background-color: #e6f0fa;
    padding: 50px 0;
}

.referral-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a3c5e;
}

.referral-subheading {
    font-size: 1.2rem;
    color: #1a3c5e;
    margin-bottom: 10px;
}

.referral-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.btn-referral {
    background-color: #ff5733;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-referral:hover {
    background-color: #e04e2b;
}

.referral-image {
    width: 100%;
    max-width: 400px;
}

/* How It Works */
.how-it-works-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #1a3c5e;
}

.how-it-works-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto;
}

.step-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #1a3c5e;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
}

.step-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 15px;
    }

    .promo-section {
        background: linear-gradient(180deg, #1a3c5e 50%, #f8f9fa 50%);
    }

    .promo-heading {
        font-size: 1.5rem;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .promo-form {
        padding: 20px;
    }

    .referral-heading {
        font-size: 1.8rem;
    }

    .referral-subheading {
        font-size: 1rem;
    }

    .how-it-works-heading {
        font-size: 1.5rem;
    }

    .step-card {
        margin-bottom: 20px;
    }
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #ff6200 var(--scroll-percent), #1a2a44 var(--scroll-percent,));
    color: #fff;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
.sticky-footer .container {
    padding: 0 20px;
}
.sticky-footer .row {
    align-items: center;
}
.sticky-footer a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.sticky-footer a:hover {
    text-decoration: underline;
}
.sticky-footer i {
    margin-right: 8px;
    font-size: 18px;
}
.sticky-footer .email {
    font-size: 16px;
    color: #fff;
}
.sticky-footer .email i {
    margin-right: 8px;
}


/* Footer Styles */
.footer {
    background-color: #ff6200;
    color: #fff;
    padding: 40px 0;
    position: relative;
}
.footer h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer p {
    font-size: 14px;
    margin-bottom: 10px;
}
.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.footer a:hover {
    text-decoration: underline;
}
.footer .contact-info i {
    margin-right: 10px;
    font-size: 16px;
}
.footer .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer .social-icons a {
    background-color: #1a2a44;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.footer .social-icons a:hover {
    background-color: #2a3b55;
}
.footer .quick-links {
    list-style: none;
    padding: 0;
}
.footer .quick-links li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}
.footer .quick-links li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #fff;
}
.footer .newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer .newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    flex: 1;
}
.footer .newsletter-form button {
    background-color: #fff;
    color: #ff6200;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}
.footer .newsletter-form button:hover {
    background-color: #f0f0f0;
}
.back-to-top {
    position: absolute;
    bottom: 70px;
    right: 20px;
    background-color: #ff6200;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
}
.back-to-top:hover {
    background-color: #e55a00;
}