/* Custom styles */
:root {
    --primary-color: #ff6b35;
}

.text-orange {
    color: var(--primary-color);
}

.navbar {
    background-color: #101010;
}

/* Add this media query for small devices */
@media (max-width: 991px) {
    .navbar {
        background-color: #101010;
    }
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: #101010;
    background-image: url('../img/bg/bg-hero_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.btn-outline-light {
    padding: 0.75rem 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}

/* Add these styles for nav-link hover effect */
.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff0000 !important;
    /* Using !important to override Bootstrap's default hover color */
}

/* Update typography styles */
.display-1 {
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.1;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
    .display-1 {
        font-size: 3rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}

/* Progress Updates Section */
.progress-updates {
    background-color: #101010;
    padding: 80px 0;
}

.progress-updates .card {
    background-color: #1a1a1a;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.progress-updates .card:hover {
    transform: translateY(-5px);
    background-color: #202020;
}

.progress-updates .card-body {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.progress-updates .card-title {
    color: #ffffff;
    font-weight: 600;
}

.progress-updates .text-muted {
    color: #888 !important;
    font-size: 0.9rem;
    font-weight: 500;
}

.progress-updates .card-text {
    color: #888;
    margin-bottom: 1.5rem;
}

.progress-updates .text-orange {
    color: var(--primary-color);
}

.progress-updates .text-orange:hover {
    color: #ff8255;
}

/* Add these to your existing Progress Updates styles */
.progress-updates .card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-updates .card {
    overflow: hidden;
}

.progress-updates .card:hover .card-img-top {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Timeline styles */
.timeline-badge {
    position: absolute;
    top: 180px;
    /* Adjust based on your image height */
    left: 0;
    right: 0;
    z-index: 2;
}

.timeline-date {
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 20px;
    position: relative;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-badge {
        top: 160px;
    }
}

/* Add these to your Progress Updates styles */
.title-separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.title-separator::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3px;
    width: 40px;
    height: 9px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.text-uppercase {
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.progress-updates .display-5 {
    font-weight: 600;
}

/* Mission Section Styles */
.mission-section {
    background-color: #101010;
    padding: 100px 0;
}

.mission-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.card-purple {
    background-color: #6b2c91;
}

.card-blue {
    background-color: #3498db;
}

.card-purple-dark {
    background-color: #4a1f64;
}

.mission-icon {
    height: 200px;
    overflow: hidden;
}

.mission-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon img {
    transform: scale(1.1);
}

.mission-content {
    padding: 2rem;
    position: relative;
}

.mission-tag {
    position: absolute;
    top: -30px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.mission-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.separator {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem 0;
}

.mission-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-box {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.quote {
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.quote-author {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
}

.mission-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.arrow-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mission-link:hover {
    color: #ff8255;
}

.mission-link:hover .arrow-icon {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .mission-card {
        margin-bottom: 2rem;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #101010;
    overflow: hidden;
}

.gallery-row {
    position: relative;
}

.gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-overlay p {
    color: var(--primary-color);
    margin: 5px 0 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gallery-item {
        width: 250px;
        height: 180px;
    }
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-body {
    position: relative;
}

.modal-img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    z-index: 1;
}

.btn-close:hover {
    opacity: 1;
}

/* Footer Styles */
.footer-section {
    background-color: #101010;
}

.footer-contact li {
    display: flex;
    align-items: center;
}

.footer-contact a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.about-section {
    background-color: #101010;
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-section .content-wrapper {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.about-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
}

.about-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.mission-quote,
.prayer-section {
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.mission-quote:hover,
.prayer-section:hover {
    transform: translateX(10px);
}

.fst-italic {
    font-style: italic;
}

.ministry-leaders-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.leader-profile img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.leader-profile:hover img {
    transform: scale(1.02);
}

.quote-box.bg-black {
    border-left: 4px solid var(--primary-color);
}

.leader-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .leader-image {
        min-height: 300px;
    }
}

.vision-content {
    position: relative;
}

.vision-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mission-highlight {
    border-left: 4px solid var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.vision-quote {
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.vision-quote:hover {
    transform: translateX(10px);
}

.quote-box {
    border-left: 4px solid var(--primary-color);
}

.quote-box p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.volunteer-content .info-card {
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.volunteer-content .info-card:hover {
    transform: translateX(10px);
}

.contact-card {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    background-color: #1a1a1a !important;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-card a {
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color) !important;
}

.website-link .btn {
    transition: all 0.3s ease;
}

.website-link .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form {
    border-left: 4px solid var(--primary-color);
}

.form-control {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    background-color: #1a1a1a !important;
    border-radius: 5px;
}

.form-control:focus {
    background-color: #1a1a1a;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.form-control::placeholder {
    color: #666;
}

/* Info Cards */
.info-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card a {
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-color) !important;
}

/* Social Media */
.social-icons .btn {
    width: 45px;
    height: 45px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.blog-post {
    border-left: 4px solid var(--primary-color);
}

.post-meta {
    font-size: 0.9rem;
}

.post-meta i,
.reading-time i {
    font-size: 1rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.author-signature {
    font-size: 1.2rem;
}

.share-buttons .social-icons .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-buttons .social-icons .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .date-info {
        margin-top: 1rem;
    }
}

.blog-gallery {
    margin: 0 -4px;
    /* Compensate for the card padding */
}

.blog-gallery .gallery-item {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}

.blog-gallery .gallery-item.main-image {
    height: 400px;
}

.blog-gallery .gallery-item.thumbnail {
    height: 150px;
}

.blog-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .blog-gallery .gallery-item.main-image {
        height: 300px;
    }

    .blog-gallery .gallery-item.thumbnail {
        height: 120px;
    }
}

/* Add this to ensure the blog post card contains all content */
.blog-post {
    overflow: hidden;
    width: 100%;
}

/* Ensure row doesn't create horizontal scroll */
.row {
    margin-right: 0;
    margin-left: 0;
}

a {
    text-decoration: none !important;
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 15px;
    border-radius: 50%;
}

.scroll-down a {
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
    display: inline-block;
    animation: floatArrow 2s ease-in-out infinite;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-down a:hover {
    color: #fff;
}

/* Enhanced animation for scroll arrow */
@keyframes floatArrow {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Add pulsing effect to the arrow */
.scroll-down::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Darker background for pulse effect */
    border-radius: 50%;
    left: 0;
    top: 0;
    opacity: 0.2;
    z-index: -1;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

/* Enhanced Content Cards */
.feature-card {
    background-color: #1a1a1a;
    /* Slightly lighter than the background */
    border-radius: 20px;
    padding: 3rem;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: #202020;
    /* Slightly lighter on hover */
}

.feature-icon-wrapper {
    text-align: center;
}

.feature-icon-wrapper i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.9;
    /* Increased opacity for better visibility */
}

.highlight-text {
    color: rgba(255, 255, 255, 0.9);
    /* Make text more visible */
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.content-card {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-5px);
}

.card-icon-top {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
}

.card-icon-top i {
    font-size: 2rem;
    color: white;
}

.card-gradient {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.card-highlight {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-list li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.services-showcase {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.service-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.service-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 2rem;
    }

    .feature-icon-wrapper {
        margin-bottom: 2rem;
    }

    .content-card {
        padding: 2rem;
    }

    .service-item {
        margin-bottom: 1rem;
    }
}

/* Vision & Mission Section Styling */
.vision-mission-section,
.services-section,
.location-section,
.uniqueness-section {
    background-color: #101010;
}

.section-title .badge {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.vision-card,
.mission-card,
.service-card {
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover,
.mission-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon i {
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Title separator styling */
.title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto;
    position: relative;
}

.title-separator::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3px;
    width: 30px;
    height: 9px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

/* Update section titles */
.section-title h2,
.vision-card h3,
.mission-card h3,
.service-card h4 {
    color: #ffffff;
}

/* Update badge background */
.badge.bg-primary-subtle {
    background-color: rgba(255, 107, 53, 0.1) !important;
    color: var(--primary-color) !important;
}

/* Update intro section background */
.intro-section {
    background-color: #101010;
}

/* Location Section */
.location-card {
    background: #1a1a1a;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nature-note {
    border-left: 4px solid var(--primary-color);
}

.nature-note i {
    font-size: 2rem;
}

/* Feature Items */
.feature-item {
    background: #1a1a1a;
    border-radius: 12px;
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Text colors */
.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}


.visionary-card {
    background: #1a1a1a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bg-dark-subtle {
    background: rgba(255,255,255,0.1);
}

.profile-icon {
    /* width: 120px;
    height: 120px; */
    /* background: rgba(255,255,255,0.05); */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.title-separator {
    width: 60px;
    height: 2px;
    background: var(--orange);
}











.direction-card{
    background: #1a1a1a;
}

.direction-card {
    transition: transform 0.3s ease;
}

.direction-card:hover {
    transform: translateY(-5px);
}

.direction-steps ul li {
    padding: 8px 0;
}

.direction-steps ul ul li {
    padding: 4px 0;
    opacity: 0.8;
}

.location-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.service-card {
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-box {
    background: rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-list li:before {
    content: "•";
    color: var(--orange);
    position: absolute;
    left: 0;
}


.feature-card {
    background: rgba(33, 37, 41, 0.8);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Custom text justify class */
.text-justify {
    text-align: justify !important;
}

/* Add hyphenation for better text justification */
.text-justify {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    text-align: justify !important;
}

/* Clinic Section Styling */
.clinic-section {
    background-color: #101010;
}

.clinic-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.clinic-card:hover {
    transform: translateY(-5px);
}

.clinic-icon-wrapper {
    padding: 2rem;
}

.clinic-icon-wrapper i {
    opacity: 0.9;
}

.clinic-content {
    padding: 1rem;
}

@media (max-width: 991px) {
    .clinic-icon-wrapper {
        padding: 1rem;
    }
}


.btn-orange {
    background-color: #ff6b00;
    color: white;
    border: 2px solid #ff6b00;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: transparent;
    color: #ff6b00;
}

/* Page Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #101010;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
    text-align: center;
}
.loader-logo {
    margin-bottom: 2rem;
}

.loader-logo img {
    max-width: 120px;
    height: auto;
    animation: pulse-fade 2s infinite;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Add this class to hide the loader */
.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Prevent scrolling while loader is active */
body.loading {
    overflow: hidden;
}