/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.sr-only {
    display: none;
}
.hero-slides {
    position: relative;
    height: 100%;
    width: 100%;
}
.banner-page {
	padding-top: 4%;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s;
    display: flex;
    align-items: center;
    color: white;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    max-width: 1120px;
    text-align: left;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
	    width: 80%;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
	margin: 0px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: start;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Auto-play Indicator */
.autoplay-indicator {
    position: absolute;
    bottom: 100px;
    right: 40px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.autoplay-timer {
    width: 25px;
    height: 25px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

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

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

/* Slide Progress Bar */
.slider-dot.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    animation: progress 5s linear;
    border-radius: 3px;
}
.trust-bar {
	padding: 80px 0px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-slider {
        height: 75vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .cta-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .slider-controls {
        gap: 1rem;
        bottom: 30px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .autoplay-indicator {
        bottom: 80px;
        right: 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 65vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    .slider-dots {
        gap: 0.5rem;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Accessibility */
.slider-prev:focus,
.slider-next:focus,
.slider-dot:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Pause on hover */
.hero-slider:hover .autoplay-indicator {
    opacity: 1;
}
/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.post-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-thumbnail {
    margin-bottom: 1rem;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.post-meta {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    text-decoration: none;
    color: var(--dark-gray);
}

.pagination a:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.pagination .current {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.nav-previous a,
.nav-next a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--primary-orange);
}

/* Archive Header */
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}


/* Owl Carousel Base Styles */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

/* Owl Carousel Container */
.testimonials-slider {
    position: relative;
    padding: 0 40px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 20px 15px;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #666;
    font-size: 0.95rem;
}

/* Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    pointer-events: all;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #4a6cf7 !important;
    color: white !important;
}

.owl-nav button span {
    font-size: 30px;
    line-height: 0.5;
}

/* Custom Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.prev-btn:hover, .next-btn:hover {
    background: #4a6cf7;
    color: white;
}

/* Owl Carousel Dots */
.owl-dots {
    margin-top: 30px;
    text-align: center;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #ddd !important;
    display: block;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.owl-dot.active span {
    background: #4a6cf7 !important;
    width: 30px;
    border-radius: 10px;
}

.owl-dot:hover span {
    background: #4a6cf7 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0;
    }
    
    .owl-nav {
        display: none;
    }
    
    .testimonial-card {
        margin: 10px;
        padding: 30px 20px;
    }
    
    .slider-nav {
        margin-top: 30px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-button {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}