:root {
    /* Blue scale (teal-shifted navy) */

    --blue-100: #F0F7F8;
    /* palest, almost white */
    --blue-200: #D9E9EB;
    /* very light tint for bg */
    --blue-300: #8FAEB3;
    /* soft muted teal */
    --blue-400: #4E7F8A;
    /* lighter, friendly teal */
    --blue-500: #357079;
    /* balanced mid teal */
    --blue-600: #2A5D68;
    --blue: #2A5D68;
    /* PRIMARY - brighter teal */
    --blue-700: #1B4952;
    /* darker teal */
    --blue-800: #163B44;
    /* deepened navy teal */
    --blue-900: #12323A;
    /* deepest teal navy */


    /* Orange scale (saffron/orange) */

    --orange-100: #FFF9F3;
    /* faint warm cream */
    --orange-200: #FFF3E8;
    /* very light tint */
    --orange-300: #FFDCC4;
    /* peachy highlight */
    --orange-400: #F8C79A;
    /* soft warm orange */
    --orange-500: #F4A261;
    --orange: #F4A261;
    /* SECONDARY */
    --orange-600: #E28743;
    /* richer orange */
    --orange-700: #C27544;
    /* darker orange */
    --orange-800: #9C5731;
    /* burnt orange */
    --orange-900: #7A3C20;
    /* deep earthy saffron */

    /* Neutrals */
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-400: #ced4da;
    --gray-700: #495057;
    --gray-900: #212529;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--gray-900);
}

main {
    min-height: 65vh;
}

.user-container {
    max-width: 900px !important;
}   

/* --- Typography & Helpers --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue-900);
    font-weight: 600;
}

.section-padding {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

.text-primary {
    color: var(--blue) !important;
}

.text-secondary {
    color: var(--orange-500) !important;
}

.bg-primary-light {
    background-color: var(--blue-200) !important;
    background: linear-gradient(315deg, var(--blue-200) 30%, white 90%);

}

.bg-secondary-light {
    background-color: var(--orange-200) !important;
}

/* --- Buttons --- */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    --bs-btn-color: white;
    --bs-btn-bg: var(--blue-500);
    --bs-btn-border-color: var(--blue);
    --bs-btn-hover-color: white;
    --bs-btn-hover-bg: var(--blue-700);
    --bs-btn-hover-border-color: var(--blue-700);
    --bs-btn-active-color: white;
    --bs-btn-active-bg: var(--blue-700);
    --bs-btn-active-border-color: var(--blue-700);
}

.btn-secondary {
    --bs-btn-color: var(--blue-900);
    --bs-btn-bg: var(--orange-500);
    --bs-btn-border-color: var(--orange-500);
    --bs-btn-hover-color: var(--blue-900);
    --bs-btn-hover-bg: var(--orange-600);
    --bs-btn-hover-border-color: var(--orange-700);
    --bs-btn-active-color: var(--blue-900);
    --bs-btn-active-bg: var(--orange-600);
    --bs-btn-active-border-color: var(--orange-700);
}

.btn-outline-primary {
    --bs-btn-color: var(--blue);
    --bs-btn-bg: white;
    --bs-btn-border-color: var(--blue);
    --bs-btn-hover-color: var(--blue);
    --bs-btn-hover-bg: var(--blue-200);
    --bs-btn-hover-border-color: var(--blue-700);
    --bs-btn-active-color: var(--blue);
    --bs-btn-active-bg: var(--blue-200);
    --bs-btn-active-border-color: var(--blue-700);
}

.btn-outline-secondary {
    --bs-btn-color: var(--orange-600);
    --bs-btn-bg: white;
    --bs-btn-border-color: var(--orange-600);
    --bs-btn-hover-color: var(--orange-600);
    --bs-btn-hover-bg: var(--orange-200);
    --bs-btn-hover-border-color: var(--orange-700);
    --bs-btn-active-color: var(--orange-600);
    --bs-btn-active-bg: var(--orange-200);
    --bs-btn-active-border-color: var(--orange-700);
}

/* --- Navbar --- */

.navbar-brand {
    font-weight: 700;
    color: var(--blue);
    /* font-size: 1.2rem; */
}

.navbar {
    /* background: linear-gradient(180deg, white 50%, var(--blue-300) 500%); */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid var(--blue-200);
    box-shadow: 2px 2px 30px -5px var(--blue-200);
}

/* --- Hero Section --- */
#hero {
    background-color: var(--white);
    background: linear-gradient(45deg, white 50%, var(--orange-300) 90%);
}

#hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

.hero-text-content {
    max-width: 620px;
}

.hero-image-wrapper {
    padding-bottom: 20px;
}

.hero-image-wrapper img {
    object-fit: contain;
    /* or cover, depending on your preference */
}

.institute-logos img {
    height: 50px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.institute-logos img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 1.4rem;
        text-align: left;
        /* Smaller H1 on mobile */
    }

    #hero p.lead {
        font-size: 1.05rem;
    }
}

/* --- Features "What you get" Section --- */

#features p.lead {
    max-width: 600px;
    text-align: center;
}

.feature-card {
    background-color: var(--white);
    background: linear-gradient(45deg, white, var(--orange-200));
    border: 2px solid var(--blue-200);
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card h3 {
    color: var(--orange-700);
    margin-bottom: 0.75rem;
}

.feature-card p {
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(29, 78, 137, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--orange-300);
    color: var(--orange-700);
    font-size: 1.75rem;
    border-radius: 50%;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    #features p.lead {
        text-align: left !important;
    }

    #features h2 {
        text-align: left !important;
    }
}

/* --- Why Choose Us Section --- */
#why-us {
    background: linear-gradient(315deg, white 50%, var(--orange-300) 130%);
}

#why-us div.why-us-text {
    max-width: 500px;
    margin: 0 auto;
}

#why-us h2 {
    color: var(--orange-700)
}

.list-group-item {
    border: none;
    background-color: transparent;
    padding-left: 0;
}

#why-us .list-group-item {
    border: none;
    background-color: transparent;
    padding-left: 0;
}

.why-us-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background-color: var(--blue-200);
    color: var(--blue);
    font-size: 1.5rem;
    margin-right: 1rem;
}



/* --- Testimonials Section --- */
#testimonials {
    /* background: linear-gradient(315deg, white 50%, var(--orange-300) 130%); */
}

#testimonials div.container {
    max-width: 1200px;
}

#testimonials p.lead {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    border: none;
    background-color: var(--blue-200);
    background: linear-gradient(180deg, white 50%, var(--blue-200) 150%);
    border: 2px solid var(--blue-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.testimonial-card blockquote {
    /* font-style: italic; */
    font-size: 1.1rem;
    color: var(--gray-700);
}

.testimonial-card .thot {
    font-size: 1.1rem;
    color: var(--gray-700);
}

.testimonial-card .profile img {
    border: 1px solid var(--blue-400);
    padding: 2px;
    aspect-ratio: 3/4;
    max-width: 60px;
    max-height: 80px;
    object-fit: cover;
    margin-right: 12px;
}

.testimonial-card .profile strong {
    color: var(--blue-700);
}

.testimonial-card .info small span {
    display: block;
    line-height: 1.5;
    font-size: 0.94rem;
}

.testimonial-card .info small span:first-of-type {
    padding-top: 4px;
}

@media (max-width: 768px) {
    #testimonials p.lead {
        text-align: left !important;
    }

    #testimonials h2 {
        text-align: left !important;
    }
}



/* --- Offer Section --- */
#offer {
    background: linear-gradient(45deg, var(--blue-700), var(--blue-900));
    color: var(--white);
}

#offer h2,
#offer h3,
#offer p {
    color: var(--white);
}

.price-block {
    font-size: 2.5rem;
    font-weight: 700;
}

.price-block del {
    font-size: 1.5rem;
    color: var(--gray-400);
}

.price-block span {
    color: var(--orange-400);
}

@media (max-width: 768px) {
    #offer p.lead {
        text-align: left !important;
    }

    #offer h2 {
        text-align: left !important;
    }
}

/* --- FAQ Section --- */
.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--blue);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(29, 78, 137, 0.25);
}

.accordion-item {
    border-color: var(--blue-200);
}

/* Final CTA */
@media (max-width: 768px) {
    #final-cta p.lead {
        text-align: left !important;
    }

    #final-cta h2 {
        text-align: left !important;
    }
}

/* --- Footer --- */
footer {
    background-color: var(--blue-800);
    color: var(--gray-400);
}

footer h5{
    color:var(--blue-300);
}

footer .footer-brand {
    color: var(--white);
    font-weight: 700;
}

footer a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}


/* ----- LEGAL ------ */

.legal li p {
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}