/* Custom CSS for Truth Paths Limited */

:root {
    --bg-dark: #121212;
    --text-light: #FFFFFF;
    --accent-green: #da1c7a;
    --accent-blue: #ee9e43;
    --bg-dark-subtle: #1a1a1a;
    --border-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--accent-green) !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-green) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-subtle) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Hero Section with Carousel */
.hero-section-carousel {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Background Carousel Container */
.hero-carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Individual Background Slides */
.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: kenBurns 20s ease-in-out infinite;
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Ken Burns Zoom Effect */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Carousel Indicators */
.hero-carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-carousel-indicators .indicator:hover {
    background: rgba(76, 175, 80, 0.8);
    border-color: var(--accent-green);
    transform: scale(1.2);
}

.hero-carousel-indicators .indicator.active {
    background: var(--accent-green);
    border-color: var(--accent-green);
    width: 40px;
    border-radius: 6px;
}

/* Hero Badge/Topic */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
    animation: slideInDown 1s ease-out;
}

.hero-badge .badge-icon {
    font-size: 1.2rem;
    animation: rotate 3s ease-in-out infinite;
}

.hero-badge .badge-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Hero Title Gradient */
.hero-title-gradient {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

/* Highlight Text */
.highlight-text {
    color: var(--accent-green);
    font-weight: 700;
    position: relative;
    padding: 0 4px;
}

/* Accent Underline */
.accent-underline {
    position: relative;
    color: var(--text-light);
    font-weight: 600;
}

.accent-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 1px;
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.benefit-item i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.benefit-item span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Enhanced Hero Title */
.hero-title {
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 1 !important;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* Enhanced Hero Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 1 !important;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    .hero-title-gradient::after {
        height: 3px;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 12px;
    }

    .benefit-item {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title-old {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.2s forwards;
}

.hero-subtitle-old {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.5s forwards;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.8s forwards;
}

.hero-image {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.3s forwards;
}

.hero-icon {
    font-size: 10rem;
    color: var(--accent-green);
    display: block;
    margin: 2rem 0;
    animation: floatIcon 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.3));
    position: relative;
}

.hero-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

/* Floating particles effect */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(76, 175, 80, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(33, 150, 243, 0.4), transparent),
        radial-gradient(1px 1px at 60% 15%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 85%, rgba(76, 175, 80, 0.3), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(33, 150, 243, 0.3), transparent);
    background-size: 300px 300px, 400px 400px, 200px 200px, 350px 350px, 250px 250px;
    animation: floatParticles 20s linear infinite;
    pointer-events: none;
}

/* Typewriter effect for hero title */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--accent-green);
    white-space: nowrap;
    animation: typewriter 3s steps(40, end) 1.2s forwards,
               blinkCursor 0.75s step-end infinite 1.2s;
    width: 0;
}

/* Interactive buttons with enhanced hover */
.hero-btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-green), #45a049);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.hero-btn-outline {
    position: relative;
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--text-light);
    transition: width 0.3s ease;
    z-index: -1;
}

.hero-btn-outline:hover::before {
    width: 100%;
}

.hero-btn-outline:hover {
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #45a049;
    border-color: #45a049;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: var(--text-light);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-green);
    margin-bottom: 2rem;
}

/* Background Variations */
.bg-dark-subtle {
    background-color: var(--bg-dark-subtle) !important;
}

/* Guiding Principles Section */
.guiding-principles-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.guiding-principles-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Intro Card */
.intro-card {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(33, 150, 243, 0.1));
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.2);
}

.intro-card .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* Principle Feature Card (Large) */
.principle-feature-card {
    background: linear-gradient(145deg, var(--bg-dark-subtle), #1f1f1f);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.principle-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-green), var(--accent-blue));
    transition: width 0.4s ease;
}

.principle-feature-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.principle-feature-card:hover {
    border-color: var(--accent-green);
    transform: translateX(10px);
    box-shadow: -10px 10px 40px rgba(76, 175, 80, 0.15);
}

.principle-icon-large {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, var(--accent-green), #45a049);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.principle-feature-card:hover .principle-icon-large {
    transform: rotate(5deg) scale(1.1);
}

.principle-content h3 {
    color: var(--text-light);
    font-size: 1.75rem;
    font-weight: 700;
}

.principle-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Principle Cards */
.principle-card {
    background: linear-gradient(145deg, var(--bg-dark-subtle), #1f1f1f);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.principle-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.principle-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.principle-card:hover .principle-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.5));
}

.principle-card h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.principle-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness for Principles */
@media (max-width: 768px) {
    .principle-feature-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .principle-icon-large {
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 2.5rem;
    }

    .principle-content h3 {
        font-size: 1.5rem;
    }

    .principle-content p {
        font-size: 1rem;
    }

    .intro-card {
        padding: 1.5rem;
    }

    .intro-card .lead {
        font-size: 1.1rem;
    }
}

/* Feature Cards */
.feature-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

/* Stats */
.stat-card {
    background: var(--bg-dark-subtle);
    border-radius: 10px;
    padding: 1.5rem;
    border: solid 1px #4caf50;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Step Cards */
.step-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), #45a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    display: block;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #ccc;
    font-size: 0.9rem;
}

/* Value Cards */
.value-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.service-minimum {
    color: var(--accent-green);
    font-weight: 600;
    margin: 1rem 0;
}

.service-roi {
    background: linear-gradient(135deg, var(--accent-blue), #1976D2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-top: 1rem;
}

/* Insight Stats */
.insight-stat {
    background: var(--bg-dark-subtle);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.insight-stat .stat-number {
    color: var(--accent-blue);
}

/* Core Services */
.core-service {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.core-service:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.core-service-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

/* Asset Cards */
.asset-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.asset-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.asset-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

/* Newsletter Signup */
.newsletter-signup {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
}

.form-control {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 8px;
    padding: 0.75rem;
}

.form-control:focus {
    background-color: var(--bg-dark);
    border-color: var(--accent-green);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.form-control::placeholder {
    color: #888;
}

.form-check-input {
    background-color: var(--bg-dark);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.form-check-label {
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--bg-dark-subtle);
    border-top: 1px solid var(--border-color);
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: var(--accent-green);
}

.social-links .social-link {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links .social-link:hover {
    color: var(--accent-green);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-icon {
        font-size: 6rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .principle-card,
    .feature-card,
    .service-card,
    .asset-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
    }

    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}

/* Page Header */
.page-header {
    position: relative;
    background-image: url('ftips.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 50px;
    z-index: 1;
}

/* Overlay gradient */
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-subtle) 100%);
    opacity: 0.85; /* adjust for brightness — 0.6 to 0.9 works well */
    z-index: -1;
}

/* Keep text above the overlay */
.page-header .container {
    position: relative;
    z-index: 2;
}


.min-vh-50 {
    min-height: 50vh;
}

/* Navigation Active State */
.navbar-nav .nav-link.active {
    color: var(--accent-green) !important;
    font-weight: 600;
}

/* Process Details */
.process-detail {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.process-detail:hover {
    border-color: var(--accent-green);
    transform: translateY(-3px);
}

.process-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-green);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 300px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -20px;
    border-right-color: var(--border-color);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -20px;
    border-left-color: var(--border-color);
}

/* Service Cards Enhanced */
.service-card-icon {
    font-size: 2rem;
    color: var(--accent-blue);
}

.service-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.25rem 0;
}

/* Asset Features */
.asset-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.asset-features h6 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

/* Contact Cards */
.contact-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
}

.form-check-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.form-check-container .form-check {
    margin-bottom: 0;
}

/* Accordion */
.accordion-item {
    background-color: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--bg-dark-subtle);
    color: var(--text-light);
    border: none;
    padding: 1.25rem;
    font-weight: 600;
}

.accordion-button:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-green);
    color: white;
}

.accordion-body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

/* Social Links Large */
.social-links-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    min-width: 100px;
}

.social-link-large:hover {
    color: var(--accent-green);
    border-color: var(--accent-green);
    transform: translateY(-3px);
}

.social-link-large i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Form Validation */
.form-control.is-invalid,
.form-check-input.is-invalid {
    border-color: #dc3545;
}

/* Service Comparison Table */
.table-dark {
    --bs-table-bg: var(--bg-dark-subtle);
    --bs-table-striped-bg: var(--bg-dark);
    --bs-table-border-color: var(--border-color);
}

.table-dark th,
.table-dark td {
    border-color: var(--border-color);
    color: var(--text-light);
}

.table-dark thead th {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

/* Authentication Pages */
.auth-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-subtle) 100%);
    padding-top: 100px;
    padding-bottom: 50px;
}

.auth-card {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green), #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem auto;
}

.auth-icon-fallback {
    font-size: 2.5rem;
    color: var(--accent-green);
}

.auth-title {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Form Styles */
.signForm .formContent {
    margin-bottom: 1.5rem;
}

.signForm .item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.signForm .item .formItem {
    flex: 1;
}

.formLabel {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.inputContainer {
    position: relative;
}

/* Custom Select */
select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    appearance: none;
}

/* Checkbox Styles */
.checkInput {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-control-input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-green);
}

.custom-control-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.custom-control-label a {
    color: var(--accent-green);
    text-decoration: none;
}

.custom-control-label a:hover {
    text-decoration: underline;
}

/* Remember/Forgot Password */
.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.forgot-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* Form Down */
.formDown {
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Button Container */
.btnContainer {
    margin: 2rem 0 1rem 0;
}

.pill-button-01 {
    background: linear-gradient(135deg, var(--accent-green), #45a049);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pill-button-01:hover {
    background: linear-gradient(135deg, #45a049, var(--accent-green));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Auth Footer */
.auth-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    margin: 0.5rem 0;
    color: #ccc;
}

.auth-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

/* Signup Specific Styles */
.itemIcon {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 2px solid var(--accent-green);
}

/* Captcha Container */
.captcha-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.captcha-container img {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.captcha-container img:hover {
    border-color: var(--accent-green);
}

.captcha-container input {
    flex: 1;
}

/* Security Notice */
.security-notice {
    background: var(--bg-dark-subtle);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
}

.security-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.security-notice h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.security-notice h5 {
    color: var(--accent-green);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.security-notice p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsiveness for Auth */
@media (max-width: 768px) {
    .auth-card {
        padding: 2rem 1rem;
    }

    .signForm .item {
        flex-direction: column;
        gap: 0;
    }

    .signForm .item .formItem {
        margin-bottom: 1rem;
    }

    .remember-forgot {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-container img {
        align-self: center;
        margin-bottom: 0.5rem;
    }
}

/* Mobile Responsiveness for Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }

    .timeline-marker {
        margin: 0 1rem 0 0;
    }

    .timeline-content {
        max-width: none;
        flex: 1;
    }

    .timeline-content::before {
        left: -20px !important;
        right: auto !important;
        border-right-color: var(--border-color) !important;
        border-left-color: transparent !important;
    }

    .contact-form-card {
        padding: 2rem 1rem;
    }

    .form-check-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-links-large {
        gap: 1rem;
    }

    .social-link-large {
        min-width: 80px;
        padding: 0.75rem;
    }
}

/* ===== HERO SECTION ANIMATIONS ===== */

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

@keyframes gradientShift {
    0% {
        background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 40% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    }
    100% {
        background: radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 60% 30%, rgba(33, 150, 243, 0.05) 0%, transparent 50%);
    }
}

@keyframes floatParticles {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(-20px) rotate(240deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--accent-green);
    }
}

/* Advanced hover effects for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.4), 0 0 30px rgba(76, 175, 80, 0.2);
    }
}

/* Scroll-triggered animations */
@keyframes fadeInOnScroll {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced button animations */
@keyframes buttonRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

/* Enhanced stat number animations */
.stat-number {
    animation: countUp 1s ease-out;
}

.stat-card:hover {
    animation: glowPulse 2s ease-in-out infinite;
}

/* Mobile optimizations for animations */
@media (max-width: 768px) {
    .hero-icon {
        font-size: 6rem;
        animation: floatIcon 6s ease-in-out infinite;
    }

    .hero-title {
        animation-delay: 0.1s;
    }

    .hero-subtitle {
        animation-delay: 0.3s;
    }

    .hero-buttons {
        animation-delay: 0.5s;
    }

    .hero-image {
        animation: slideInUp 1s ease-out 0.4s forwards;
        transform: translateY(30px);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .hero-section::after,
    .hero-icon,
    .hero-icon::before {
        animation: none;
    }

    .hero-title,
    .hero-subtitle,
    .hero-buttons,
    .hero-image {
        opacity: 1;
        transform: none;
        animation: none;
    }
}