/* Custom Styles */
:root {
    --primary-color: #FF7A00; /* Deep Saffron */
    --secondary-color: #FFC107; /* Gold */
    --light-color: #FBFBFB;
    --dark-color: #2C2C2C;
    --text-color: #555;
    --heading-font: 'Lora', serif;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    background-color: #FFF8F0;
    color: var(--text-color);
}

/* Add scroll padding to account for fixed header */
html {
    scroll-padding-top: 100px;
}

/* Section spacing to account for fixed header */
section[id] {
    scroll-margin-top: 100px;
}

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

/* Header Styles */
.navbar {
    transition: all 0.3s ease-in-out;
    font-family: var(--body-font);
    background-color: rgba(44, 44, 44, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    min-height: 80px;
    border: none;
}

.navbar.scrolled {
    background-color: rgba(251, 251, 251, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
    min-height: 70px;
    border-bottom: 1px solid rgba(255, 122, 0, 0.1);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--light-color) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand {
    color: var(--dark-color) !important;
}

.navbar-brand .logo-highlight {
    font-weight: 700;
    color: var(--secondary-color);
}

.navbar.scrolled .navbar-brand .logo-highlight {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.25rem;
    color: var(--dark-color);
    font-size: 1rem;
    padding: 0.5rem 0.75rem !important;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
    text-shadow: none;
    border: none;
}

.navbar.transparent .nav-link {
    color: var(--light-color) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.navbar.scrolled .nav-link {
    color: var(--dark-color) !important;
    text-shadow: none;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(255, 122, 0, 0.1);
    text-shadow: none;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(255, 122, 0, 0.15);
    text-shadow: none;
}

/* Specific styles for transparent navbar */
.navbar.transparent .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-color) !important;
    text-shadow: none !important;
}

.navbar.transparent .nav-link.active {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--light-color) !important;
    text-shadow: none !important;
}

/* Specific styles for scrolled navbar */
.navbar.scrolled .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(255, 122, 0, 0.12);
}

.navbar.scrolled .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(255, 122, 0, 0.18);
}

/* Mobile Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
    background-color: transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 44, 44, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.transparent .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 44, 44, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:hover {
    background-color: rgba(255, 122, 0, 0.1);
}

.navbar.transparent .navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-slider {
    height: 95vh;
    width: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-overlay {
    background: linear-gradient(45deg, rgba(44, 44, 44, 0.4), rgba(255, 122, 0, 0.2));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide-content {
    position: relative;
    z-index: 1;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-color);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Section title decorative line - keeping for visual consistency */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* Service card hover effects */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Testimonials Section */

.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-slider {
    padding-bottom: 50px;
}

.testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.testimonial-card {
    background-color: var(--light-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    margin: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    color: var(--text-color);
}

.testimonial-author {
    margin-top: auto;
    text-align: right;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-location {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 3px;
}

.service-used {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
    background-color: rgba(255, 193, 7, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 5px;
}

/* Testimonials Navigation */
.testimonials-next,
.testimonials-prev {
    color: var(--primary-color) !important;
    background-color: var(--light-color);
    border-radius: 50%;
    width: 45px !important;
    height: 45px !important;
    margin-top: -22.5px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonials-next:hover,
.testimonials-prev:hover {
    background-color: var(--primary-color);
    color: var(--light-color) !important;
    transform: scale(1.1);
}

.testimonials-next::after,
.testimonials-prev::after {
    font-size: 16px !important;
    font-weight: bold;
}

/* Testimonials Pagination */
.testimonials-pagination {
    bottom: 10px !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.3;
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}


/* Contact Details Section */
.contact-details-section {
    background: linear-gradient(135deg, #fffaf5 0%, #fff8f0 100%);
    position: relative;
}

.contact-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffc107" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffc107" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffc107" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23ffc107" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23ffc107" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Contact detail card hover effects and decorative elements */
.contact-detail-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ffb300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-detail-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Contact link hover effects */
.contact-link:hover {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

/* Button hover effects */
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Primary button styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #E66A00;
    border-color: #E66A00;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    color: white;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin: 0;
}

/* Mobile Header Layout */
.navbar-mobile-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-mobile-layout .navbar-toggler {
    order: 1;
    margin-right: 0;
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-mobile-layout .navbar-brand {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.navbar-spacer {
    order: 3;
    width: 48px; /* Same width as toggler to balance */
    height: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 0.4rem 0.6rem !important;
        margin: 0.1rem 0;
        border-radius: 6px;
    }
    
    .carousel-content h1 {
        font-size: 2.5rem;
    }
    
    .carousel-content p {
        font-size: 1.1rem;
    }
    
    .navbar {
        min-height: 70px;
        padding: 0.75rem 0;
    }
    
    .navbar.scrolled {
        min-height: 60px;
        padding: 0.5rem 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-collapse {
        background-color: rgba(251, 251, 251, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 122, 0, 0.1);
    }
    
    .navbar.transparent .navbar-collapse {
        background-color: rgba(44, 44, 44, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Mobile menu nav links */
    .navbar-collapse .navbar-nav .nav-link {
        color: var(--dark-color) !important;
        text-shadow: none !important;
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar.transparent .navbar-collapse .navbar-nav .nav-link {
        color: var(--light-color) !important;
        text-shadow: none !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link:hover {
        background-color: rgba(255, 122, 0, 0.15);
        color: var(--primary-color) !important;
        text-shadow: none !important;
    }
    
    .navbar.transparent .navbar-collapse .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.25);
        color: var(--light-color) !important;
        text-shadow: none !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link.active {
        background-color: rgba(255, 122, 0, 0.2);
        color: var(--primary-color) !important;
        text-shadow: none !important;
    }
    
    .navbar.transparent .navbar-collapse .navbar-nav .nav-link.active {
        background-color: rgba(255, 255, 255, 0.3);
        color: var(--light-color) !important;
        text-shadow: none !important;
    }
    
    /* Mobile Services Section - Two Columns */
    #services .row .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 8px;
    }
    
    #services .service-card {
        margin-bottom: 1rem;
    }
    
    #services .card-body {
        padding: 1rem 0.75rem;
    }
    
    #services .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    #services .card-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    #services .icon {
        font-size: 2rem;
    }
    
    /* Mobile Gallery Section - Two Columns */
    #gallery .row .col-lg-4,
    #gallery .row .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 8px;
    }
    
    #gallery .gallery-card {
        margin-bottom: 1rem;
    }
    
    #gallery .gallery-image {
        height: 150px !important;
    }
    
    #gallery .text-center {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Mobile Contact Form Optimization */
    #contact .card-body {
        padding: 2rem 1.5rem !important;
    }
    
    #contact .row .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    #contact .form-control {
        padding: 0.75rem !important;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    #contact .btn-lg {
        padding: 0.75rem 2rem !important;
        font-size: 1.1rem;
    }
    
    /* Mobile Navigation - Simple Bootstrap Style */
    .navbar-toggler {
        border: none !important;
        padding: 0.4rem 0.6rem !important;
        font-size: 1.2rem !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    
    .navbar-toggler-icon {
        width: 20px !important;
        height: 20px !important;
        background-size: 20px 20px !important;
    }
    
    /* Image Optimization */
    img {
        max-width: 100%;
        height: auto;
        loading: lazy;
    }
    
    .service-card img,
    .gallery-image {
        transition: transform 0.3s ease;
        will-change: transform;
    }
    
    /* Mobile Testimonials Styles */
    .testimonials-slider-container {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin: 5px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-location {
        font-size: 0.85rem;
    }
    
    .service-used {
        font-size: 0.8rem;
        padding: 1px 6px;
    }
    
    .testimonials-next,
    .testimonials-prev {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
    }
    
    .testimonials-next::after,
    .testimonials-prev::after {
        font-size: 14px !important;
    }
    
    .testimonials-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px !important;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile - Contact Form */
    #contact .card-body {
        padding: 1.5rem 1rem !important;
    }
    
    #contact .form-control {
        padding: 0.6rem !important;
        font-size: 0.95rem;
    }
    
    #contact .btn-lg {
        padding: 0.6rem 1.5rem !important;
        font-size: 1rem;
    }
    
    /* Extra Small Mobile - Navigation */
    .navbar-brand {
        font-size: 1.3rem !important;
    }
    
    .navbar-mobile-layout .navbar-brand {
        font-size: 1.2rem !important;
        max-width: calc(100% - 96px); /* Account for hamburger and spacer */
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .navbar-spacer {
        width: 40px; /* Slightly smaller on very small screens */
    }
    
    /* Extra Small Mobile - Services Section */
    #services .row .col-md-4 {
        padding: 0 6px;
    }
    
    #services .service-card {
        margin-bottom: 0.75rem;
    }
    
    #services .card-body {
        padding: 0.75rem 0.5rem;
    }
    
    #services .card-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    #services .card-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    #services .icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    /* Extra Small Mobile - Gallery Section */
    #gallery .row .col-lg-4,
    #gallery .row .col-md-6 {
        padding: 0 6px;
    }
    
    #gallery .gallery-card {
        margin-bottom: 0.75rem;
    }
    
    #gallery .gallery-image {
        height: 130px !important;
    }
    
    #gallery .text-center {
        padding: 0.5rem 0.4rem;
        font-size: 0.85rem;
    }
    
    /* Section titles on small screens */
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Better mobile spacing */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .testimonials-slider-container {
        padding: 0 5px;
    }
    
    .testimonial-card {
        padding: 15px;
        margin: 3px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .stars {
        margin-bottom: 15px !important;
    }
    
    .stars i {
        font-size: 0.9rem;
    }
    
    /* Mobile responsive adjustments */
    .contact-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .contact-icon i {
        font-size: 20px !important;
    }
    
    /* Mobile WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 22px;
    }
}

/* Blog Section Styles - Using same styling as service cards */
#blog .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

#blog .text-primary {
    color: var(--primary-color) !important;
}

#blog .card-title {
    color: var(--primary-color);
}

/* Blog Styles */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
}

.blog-content h3 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

.blog-post {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

footer .social-links a {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

footer ul li {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: #FFC107 !important;
    padding-left: 5px;
}

footer .contact-info p {
    margin-bottom: 0.75rem;
}

footer .contact-info i {
    width: 20px;
}

/* Smartmagix Highlight */
.smartmagix-highlight {
    background: linear-gradient(45deg, #FF7A00, #FFC107, #FF7A00);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Blog Page Custom Colors */
.blog-page .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

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

.blog-page .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.blog-page .text-primary {
    color: var(--primary-color) !important;
}

.blog-page .display-4,
.blog-page .display-5 {
    color: var(--primary-color);
}

.blog-page a:not(.btn) {
    color: var(--primary-color);
}

.blog-page a:not(.btn):hover {
    color: var(--secondary-color);
}