/* Hope & Care Custom Styles */
:root {
    --primary-color: #7ac142;
    --primary-dark: #63a033;
    --secondary-color: #1a1a1a;
    --text-color: #555555;
    --heading-color: #222222;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --orange: #f28b20;
    --blue: #3b82f6;
    --font-primary: 'Outfit', sans-serif;
}

html, body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Utilities */
.text-primary-theme { color: var(--primary-color) !important; }
.bg-primary-theme { background-color: var(--primary-color) !important; }
.bg-light-theme { background-color: var(--light-bg) !important; }
/* Reduced section padding */
.section-padding { padding: 50px 0; }
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

/* Buttons */
.btn-custom {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}
.btn-custom:hover {
    background-color: transparent;
    color: var(--primary-color);
}
.btn-outline-custom {
    background-color: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s;
}
.btn-outline-custom:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Navbar */
.navbar-custom {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}
.navbar-custom .navbar-brand {
    font-weight: 800;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-custom .navbar-brand i { color: var(--primary-color); font-size: 2rem; }
.navbar-custom .nav-link {
    color: var(--white);
    font-weight: 500;
    margin: 0 10px;
    font-size: 1rem;
}
.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-slider .item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-slider .item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content h1 span { color: var(--primary-color); }
.hero-content p { color: #f0f0f0; }

/* Hero Animations */
.hero-content span, .hero-content h1, .hero-content p, .hero-content .d-flex {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.owl-item.active .hero-content span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
.owl-item.active .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}
.owl-item.active .hero-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}
.owl-item.active .hero-content .d-flex {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.0s;
}

/* About Section */
.about-img-box { position: relative; }
.about-img-box img {
    border-radius: 20px;
    width: 100%;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}
.experience-badge h3 { color: var(--primary-color); margin: 0; font-size: 1.8rem; }
.feature-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.feature-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}
.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Stats Section */
.stat-box {
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    height: 100%;
}
.stat-box h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 5px; }
.bg-green { background-color: var(--primary-color); }
.bg-blue { background-color: var(--blue); }
.bg-orange { background-color: var(--orange); }
.stat-box i { font-size: 2rem; margin-bottom: 15px; opacity: 0.8; }

/* Projects CSS removed to use original design */

/* Vision & Mission */
.vm-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}
.vm-icon {
    width: 80px; height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.vm-card.mission .vm-icon { color: var(--blue); }

/* How We Work Timeline */
.timeline-item {
    text-align: center;
    position: relative;
    padding: 0 15px;
}
.timeline-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.timeline-item.step-2 .timeline-icon { background: var(--blue); color: var(--white); }
.timeline-item.step-3 .timeline-icon { background: var(--orange); color: var(--white); }
.timeline-item.step-4 .timeline-icon { background: var(--primary-color); color: var(--white); }

.timeline-step {
    position: absolute;
    top: 10px; right: -15px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e0e0;
}

/* Why Rely On Us */
.rely-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s;
}
.rely-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.rely-icon {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 20px 10px;
    text-align: center;
}
.testi-img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border: 3px solid var(--primary-color);
}
.stars { color: #ffc107; margin-bottom: 15px; }

/* Blog Section */
.blog-card {
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-10px);
}
.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.blog-content {
    padding: 25px;
}
.blog-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--primary-color); }

/* CTA Banner */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Contact */
.contact-info { padding-right: 30px; }
.info-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
.info-icon {
    width: 40px; height: 40px;
    background: rgba(122, 193, 66, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.form-control {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: #bbb;
    padding: 60px 0 20px;
}
.footer h4 { color: var(--white); margin-bottom: 25px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #bbb; }
.footer-links a:hover { color: var(--primary-color); padding-left: 5px; }
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px; height: 35px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
}
.social-icons a:hover { background: var(--primary-color); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 20px;
}

@media (max-width: 991px) {
    .hero-content h1 { font-size: 3rem; }
    .timeline-item::after { display: none; }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
}

/* Work Field Cards */
.work-field-card {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-field-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.work-field-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(122, 193, 66, 0.25);
}

.work-field-card:hover::before {
    transform: scaleX(1);
}

.field-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
}

.work-field-card:hover .field-icon-box {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Field-specific background/icon colors and premium hover effects */
.bg-danger-light { background-color: rgba(239, 68, 68, 0.08); }
.text-danger { color: #ef4444; }
.work-field-card:hover .bg-danger-light { background-color: rgba(239, 68, 68, 0.12); }

.bg-primary-light { background-color: rgba(122, 193, 66, 0.08); }
.work-field-card:hover .bg-primary-light { background-color: rgba(122, 193, 66, 0.12); }

.bg-info-light { background-color: rgba(59, 130, 246, 0.08); }
.text-info { color: #3b82f6; }
.work-field-card:hover .bg-info-light { background-color: rgba(59, 130, 246, 0.12); }

.bg-warning-light { background-color: rgba(245, 158, 11, 0.08); }
.text-warning-theme { color: #f59e0b; }
.work-field-card:hover .bg-warning-light { background-color: rgba(245, 158, 11, 0.12); }

.bg-success-light { background-color: rgba(16, 185, 129, 0.08); }
.text-success-theme { color: #10b981; }
.work-field-card:hover .bg-success-light { background-color: rgba(16, 185, 129, 0.12); }

.bg-secondary-light { background-color: rgba(242, 139, 32, 0.08); }
.text-orange { color: var(--orange); }
.work-field-card:hover .bg-secondary-light { background-color: rgba(242, 139, 32, 0.12); }

.field-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.field-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Raise Your Hand Section Styles */
.raise-hand-section {
    position: relative;
    overflow: hidden;
}

.feature-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-list-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(122, 193, 66, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-list-item:hover .feature-list-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.feature-list-content h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.feature-list-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Image styling for premium feel */
.premium-image-wrapper {
    position: relative;
    padding: 15px;
}

.premium-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 3px solid rgba(122, 193, 66, 0.2);
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.premium-image-wrapper img {
    border-radius: 24px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.premium-image-wrapper:hover img {
    transform: translate(10px, 10px);
}

.premium-image-wrapper:hover::before {
    transform: translate(-10px, -10px);
}

/* Impact Tiers Section */
.impact-tier-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.impact-tier-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(122, 193, 66, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.impact-tier-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(122, 193, 66, 0.3);
}

.impact-tier-card:hover::after {
    opacity: 1;
}

.tier-badge {
    background-color: var(--light-bg);
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.impact-tier-card:hover .tier-badge {
    background-color: var(--primary-color);
    color: var(--white);
}

.tier-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 15px;
    display: block;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.tier-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.tier-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.tier-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-tier {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.impact-tier-card:hover .btn-tier {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 16px rgba(122, 193, 66, 0.2);
}

/* Fixed WhatsApp Floating Button with Glow */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float i {
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

.whatsapp-float:hover i {
    transform: rotate(10deg);
}

/* Pulsating Glow Ring Effect */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #25d366;
    border-radius: 50%;
    opacity: 0;
    animation: whatsapp-glow 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-glow {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}/* Serving Purpose Section */
.premium-badge-image-wrapper {
    position: relative;
    padding: 10px;
}

.premium-badge-image-wrapper .main-img {
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    width: 100%;
}

.floating-logo-badge {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background: var(--white);
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 5;
    animation: floating-badge 3s ease-in-out infinite;
}

.floating-logo-badge img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.premium-badge-image-wrapper:hover .main-img {
    transform: translateY(-5px);
}

@keyframes floating-badge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.purpose-feature-card {
    background: transparent;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.purpose-feature-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--heading-color);
}

.purpose-feature-card h5 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.purpose-feature-card p {
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar-custom {
        padding: 10px 0;
    }
    
    .navbar-brand svg {
        width: 35px;
        height: 35px;
    }
    
    .nav-brand-title {
        font-size: 1rem !important;
    }
    
    .nav-brand-subtitle {
        font-size: 0.55rem !important;
    }
    
    .navbar-collapse {
        background: rgba(10, 24, 16, 0.98);
        backdrop-filter: blur(15px);
        margin-top: 15px;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        border: 1px solid rgba(255,255,255,0.05);
    }
    
    .navbar-custom .nav-link {
        padding: 10px 15px !important;
        margin: 5px 0 !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
        background: rgba(122, 193, 66, 0.15);
        color: var(--primary-color) !important;
        padding-left: 20px !important;
    }
    
    .navbar-collapse .btn-custom {
        width: 100%;
        margin-top: 15px;
        text-align: center;
        display: block;
    }
    
    .navbar-toggler {
        border: 1.5px solid rgba(255,255,255,0.2) !important;
        padding: 8px 12px !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(122, 193, 66, 0.25) !important;
    }
}

/* Responsive Boundary Overrides to Prevent Overflow */
@media (max-width: 767.98px) {
    .experience-badge {
        left: 10px !important;
        bottom: 10px !important;
        padding: 10px 15px !important;
    }
    
    .timeline-step {
        right: 15px !important;
        top: 5px !important;
    }
    
    .floating-logo-badge {
        right: 5px !important;
        bottom: 5px !important;
        padding: 8px !important;
    }
    
    .floating-logo-badge img, .floating-logo-badge svg {
        width: 40px !important;
        height: 40px !important;
    }
    
    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
    
    .col-lg-3, .col-lg-4, .col-lg-6, .col-md-6, .col-sm-6, .col-12 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

