/* Root variables - primary color and other theme colors */
:root {
    --primary: #14A44D;
    --primary-dark: #118C42;
    --primary-light: #E7F5EB;
    --dark: #212529;
    --light: #f8f9fa;
    --secondary: #f8f9fa;
    --muted: #6c757d;
    --border: #dee2e6;
    --radius: 0.75rem;
}

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: var(--light);
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th,
.grid-view td:last-child {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 50px;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* style breadcrumb widget as in previous bootstrap versions */
.breadcrumb {
    background-color: var(--bs-gray-200);
    border-radius: .25rem;
    padding: .75rem 1rem;
}

.breadcrumb-item > a {
    text-decoration: none;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: var(--primary);
}

.navbar.scrolled {
    background-color: rgba(20, 164, 77, 0.9);
    padding: 0.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link-custom {
    position: relative;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link-custom:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Hero Section */
.hero-video-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    color: var(--primary-light);
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

/* Root variables - primary color and other theme colors */
:root {
    --primary: #14A44D;
    --primary-dark: #118C42;
    --primary-light: #E7F5EB;
    --dark: #212529;
    --light: #f8f9fa;
    --secondary: #f8f9fa;
    --muted: #6c757d;
    --border: #dee2e6;
    --radius: 0.75rem;
}

/* Base styles */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: var(--light);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: var(--primary);
}

.navbar.scrolled {
    background-color: rgba(20, 164, 77, 0.9);
    padding: 0.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link-custom {
    position: relative;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link-custom:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Hero Section */
.hero-video-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

/* Hero animations */
.subtitle-anim {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-anim {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.desc-anim {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.cta-anim {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

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

/* Feature cards */
.feature-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.icon-bg {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Timeline and How it works */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(20, 164, 77, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 164, 77, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(20, 164, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(20, 164, 77, 0);
    }
}

/* Testimonial cards */
.testimonial-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

/* Benefit cards */
.benefit-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* CTA and buttons */
.btn-custom {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.bounce-hover:hover {
    animation: subtleBounce 1s infinite;
}

@keyframes subtleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Section titles */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Utility classes */
.translate-x-n4 {
    transform: translateX(-1rem);
}

.translate-y-n4 {
    transform: translateY(-1rem);
}

.mw-3xl {
    max-width: 48rem;
}

.hover-white:hover {
    color: white !important;
}

/* Scroll reveal animation */
.hidden-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible-element {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 1.875rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p.lead {
        font-size: 1.125rem;
    }

    .navbar .navbar-collapse {
        background-color: rgba(33, 37, 41, 0.95);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 1rem;
    }
}

/* Footer styles */
.footer-text {
    color: #eee !important;
}

.hover-white:hover {
    color: white !important;
}

.text-primary-footer {
    color: #4cd97b !important; /* Lighter variation of primary for better contrast on dark bg */
}

/* Root variables - primary color and other theme colors */
:root {
    --primary: #14A44D;
    --primary-dark: #118C42;
    --primary-light: #E7F5EB;
    --dark: #212529;
    --light: #f8f9fa;
    --secondary: #f8f9fa;
    --muted: #6c757d;
    --border: #dee2e6;
    --radius: 0.75rem;
}


/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: var(--light);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: var(--primary);
}

.navbar.scrolled {
    background-color: rgba(20, 164, 77, 0.9);
    padding: 0.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link-custom {
    position: relative;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link-custom:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Hero Section */
.hero-video-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

/* Hero animations */
.subtitle-anim {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-anim {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.desc-anim {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.cta-anim {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

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

/* Feature cards */
.feature-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.icon-bg {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Timeline and How it works */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(20, 164, 77, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 164, 77, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(20, 164, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(20, 164, 77, 0);
    }
}

/* Testimonial cards */
.testimonial-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

/* Benefit cards */
.benefit-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* CTA and buttons */
.btn-custom {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.bounce-hover:hover {
    animation: subtleBounce 1s infinite;
}

@keyframes subtleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Section titles */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Utility classes */
.translate-x-n4 {
    transform: translateX(-1rem);
}

.translate-y-n4 {
    transform: translateY(-1rem);
}

.mw-3xl {
    max-width: 48rem;
}

.hover-white:hover {
    color: white !important;
}

/* Scroll reveal animation */
.hidden-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible-element {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 1.875rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p.lead {
        font-size: 1.125rem;
    }

    .navbar .navbar-collapse {
        background-color: rgba(33, 37, 41, 0.95);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 1rem;
    }
}

/* Footer styles */
.footer-text {
    color: #eee !important;
}

.hover-white:hover {
    color: white !important;
}

.text-primary-footer {
    color: #4cd97b !important; /* Lighter variation of primary for better contrast on dark bg */
}

#AreYouReadySave{
    background-image: url("../img/banner1.jpg");
    background-position: center center;
    background-size: cover;
}

#AreYouReadySave h2, #AreYouReadySave p{
    text-shadow: 0px 3px 8px rgba(0,0,0,0.6);
}

#about img{
    object-fit: cover;
}
.navbar-brand{
    padding: 0;
}
.navbar-brand img, .footer-brand img{
    width: 90px;
}

.about{
    line-height: 35px;
}

.about .header{
    display: block;
    position: relative;
}
.about .header img{
    width: 100%;
    margin-bottom: 10px;
    border-radius: var(--radius);
}
.about h1{
    position: absolute;
    top: 40%;
    left: 2%;
    text-shadow: 0px 3px 8px rgba(0,0,0,0.6);
}
.about h2{
    text-align: left;
}


h1 {
    font-size: 3.5rem;
}

@media only screen and (max-width: 400px) {
    h1 {
        font-size: 2rem;
    }
}