@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..400;1,100..900&display=swap");

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

:root {
    --bg-orange: rgb(240, 136, 50);
    --bg-yellow: #f6c23e;
    --orange: rgb(240, 136, 50);
    --yellow: #f6c23e;
}

.bg-orange {
    background-color: rgb(240, 136, 50) !important;
}

.bg-yellow {
    background-color: #f6c23e !important;
}

.orange {
    color: rgb(240, 136, 50) !important;
}

.yellow {
    color: #f6c23e !important;
}

.primary-body-bg-color {
    background-color: white;
    /* background-color: rgb(233, 182, 140); */
}

section {
    padding: 40px 0 40px;
}

#hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

#hero-section > #get-started > * {
    font-size: 25px !important;
    text-decoration: none;
    color: black;
}

#hero-section > h1 {
    font-size: 40px;
    font-weight: bolder;
}

#hero-section > p {
    width: 80%;
}

#hero-section > a {
    font-size: 25px;
}

#hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

#hero-section > #get-started > a {
    border-left: 2px solid var(--orange);
}

section#benifits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1000px) {
    section#benifits,
    div#steps {
        flex-direction: column;
    }
    h3#guide {
        display: none !important;
    }
    section#benifits > div,
    div#steps > div {
        width: 80%;
    }
}

@media (max-width: 550px) {
    #hero-section h1 {
        font-size: 30px;
    }
    #hero-section > p {
        width: 100%;
    }
}
section#benifits > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, #ffe5b4, #ffe5b4);
    border-radius: 20px;
    text-align: center;
    box-shadow: 7px 7px 10px var(--bg-orange);
    color: var(--bg-orange);
}

section#stepContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

section > h3 {
    font-size: 30px;
    font-weight: bold;
}

div#steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

div#steps > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--bg-orange);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 10px var(--bg-orange);
    color: white;
}

.accordion-collapse {
    background-color: var(--bg-orange);
    color: white;
}

.accordion-button:not(.collapsed) {
    color: initial;
    border: 2px solid var(--bg-orange);
    box-shadow: none;
    background-color: transparent;
}

#financial-worries {
    background: linear-gradient(to right, #ffe5b4, #ffcc80);
    border-radius: 15px;
    padding: 60px 20px;
}

#financial-worries h2 {
    color: var(--bg-orange);
}

#financial-worries p {
    font-size: 1.2rem;
    line-height: 1.6;
}

footer {
    padding: 50px;
    background: linear-gradient(45deg, #ffb347, #ff8c00, #e76f00, #ee761a);
}
/* #about-hero-section {
    background: url("../img/about-bg.jpg");
    height: calc(100vh - 60px);
    width: 100%;
    background-position: center;
    background-size: cover;
}
#about-hero-section .overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(240, 136, 50, 0.8),
        rgba(240, 136, 50, 0.4)
    );
}
#about-hero-section .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#about-hero-section .content h2 {
    font-size: 40px;
    font-weight: 1000;
    background: linear-gradient(to right, #fffdfb, #ffffff); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent;
} */

/* Gemini Code */

/* About Hero Section */
#about-hero-section {
    position: relative; /* Needed for absolute positioning of overlay and content */
    background: url("../img/about-bg.jpg") no-repeat center center / cover;
    height: calc(100vh - 60px); /* Adjust based on your header height */
    width: 100%;
    display: flex; /* Use flexbox for centering content */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    overflow: hidden; /* Ensure nothing spills out */
}

/* Overlay for visual depth and text readability */
#about-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 120, 0, 0.85),
        /* A vibrant, slightly deeper orange */ rgba(255, 180, 0, 0.65)
            /* A softer, warmer yellow-orange */
    );
    /* Optional: Subtle animation for the overlay */
    animation: fadeInOverlay 1.5s ease-out forwards;
}

/* Content container styling */
#about-hero-section .content {
    position: relative; /* Position relative to the overlay/section */
    z-index: 2; /* Bring content above the overlay */
    text-align: center;
    max-width: 800px; /* Limit content width for readability */
    padding: 20px; /* Add some padding on smaller screens */
    color: #ffffff; /* Ensure text is white for contrast */
}

/* Main heading styling */
#about-hero-section .content h2 {
    font-family: "Poppins", sans-serif; /* A more modern, impactful font */
    font-size: 3.8rem; /* Larger and more commanding */
    font-weight: 900; /* Extra bold */
    line-height: 1.1; /* Tighter line height for large text */
    margin-bottom: 20px; /* Space below heading */

    /* Advanced gradient text for a premium feel */
    background: linear-gradient(
        to right,
        #ffffff,
        #f0f0f0
    ); /* White to light gray gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers not supporting text-fill-color */

    /* Optional: Subtle animation for the heading */
    animation: slideInUp 1s ease-out forwards;
    opacity: 0; /* Start hidden for animation */
    transform: translateY(20px); /* Start slightly below for animation */
}

/* Sub-heading styling */
#about-hero-section .content h3 {
    font-family: "Open Sans", sans-serif; /* Readable secondary font */
    font-size: 1.6rem; /* Good size for supporting text */
    font-weight: 400; /* Regular weight */
    line-height: 1.5;
    margin-top: 15px; /* Adjust spacing */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); /* Subtle text shadow for readability */

    /* Optional: Animation for sub-heading */
    animation: slideInUp 1.2s ease-out forwards;
    opacity: 0; /* Start hidden for animation */
    transform: translateY(20px); /* Start slightly below for animation */
    animation-delay: 0.3s; /* Delay after main heading */
}

/* Call to action buttons container */
#about-hero-section .cta-buttons {
    margin-top: 40px; /* More space above buttons */

    /* Optional: Animation for buttons */
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0; /* Start hidden for animation */
    animation-delay: 0.8s; /* Delay after text animations */
}

/* Button styling */
#about-hero-section .cta-buttons .btn {
    font-family: "Montserrat", sans-serif; /* Bold button text font */
    font-weight: bold;
    font-size: 1.1rem;
    padding: 15px 40px; /* More generous padding */
    border-radius: 50px; /* Pill-shaped button */
    transition: all 0.3s ease-in-out; /* Smooth transitions for hover effects */
    text-transform: uppercase; /* All caps for emphasis */
    letter-spacing: 1px; /* Slight letter spacing */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow for depth */

    /* Bright, contrasting button color */
    background-color: #f7f7f7; /* Off-white for sharp contrast */
    color: #ff7800 !important; /* Vibrant orange text */
    border: 2px solid #f7f7f7; /* Matching border */
}

#about-hero-section .cta-buttons .btn:hover {
    background-color: transparent; /* Transparent background on hover */
    color: #f7f7f7 !important; /* White text on hover */
    border-color: #f7f7f7; /* White border on hover */
    transform: translateY(-3px); /* Slight lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Deeper shadow on hover */
}

/* Animations */
@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    #about-hero-section .content h2 {
        font-size: 2.8rem;
    }
    #about-hero-section .content h3 {
        font-size: 1.3rem;
    }
    #about-hero-section .cta-buttons .btn {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    #about-hero-section {
        height: 80vh; /* Adjust height for smaller screens */
    }
    #about-hero-section .content h2 {
        font-size: 2.2rem;
    }
    #about-hero-section .content h3 {
        font-size: 1rem;
    }
    #about-hero-section .cta-buttons {
        margin-top: 30px;
    }
}

div#aboutWhySection > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, #ffe5b4, #ffe5b4);
    border-radius: 20px;
    text-align: center;
    box-shadow: 7px 7px 10px var(--bg-orange);
    color: var(--bg-orange);
}
ol.list-group {
    list-style: none;
    padding-left: 0;
}

.list-group-item::marker {
    display: none;
}
.card-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem !important;
    }
}
.card-commitment{
    border-radius: 8px;
    background: linear-gradient(45deg, #ffe5b4, #ffdc9b);
    box-shadow: 7px 7px 10px var(--bg-orange);
}

.whychoose{
    border-radius: 8px;
    color: white;
    background: linear-gradient(45deg, #ffb347, #ff8c00, #e76f00, #ee761a);
    box-shadow: 0 0 10px var(--bg-orange);
}
.badge {
    display: inline-block;
    padding: 0.35em 0.75em;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    border-radius: 0.5rem;
    text-transform: uppercase;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.75em;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-transform: uppercase;
}

.grade-A {
    background-color: rgba(40, 167, 69, 0.2);
    color: rgb(40, 167, 69);
    border: 1px solid rgb(40, 167, 69);
}

.grade-B {
    background-color: rgba(23, 162, 184, 0.2);
    color: rgb(23, 162, 184);
    border: 1px solid rgb(23, 162, 184);
}

.grade-C {
    background-color: rgba(255, 193, 7, 0.2);
    color: rgb(255, 193, 7);
    border: 1px solid rgb(255, 193, 7);
}

.grade-D {
    background-color: rgba(240, 136, 50, 0.2);
    color: rgb(240, 136, 50);
    border: 1px solid rgb(240, 136, 50);
}

.grade-E {
    background-color: rgba(220, 53, 69, 0.2);
    color: rgb(220, 53, 69);
    border: 1px solid rgb(220, 53, 69);
}
