/*
Theme Name: XpertiesCoder
Theme URI: https://xpertiescoder.com/
Author: XpertiesCoder Team
Author URI: https://xpertiescoder.com/
Description: A modern agency WordPress theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xpertiescoder
Tags: one-page, agency, portfolio, responsive
*/

/* Import Bootstrap and other CSS files */
@import url('./assets/css/bootstrap.min.css');
@import url('./assets/css/aos.css');
@import url('./assets/css/main.css');
@import url('./assets/css/button-fixes.css');

a.custom-logo-link img.custom-logo {
    width: 50px;
    height: 50px;
}

.btn-outline-secondary:hover {
    border-color: var(--xc-primary, #7E75FF) !important;
    background-color: var(--xc-primary, #7E75FF) !important;
    color: #fff !important;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader .preloader-content {
    text-align: center;
}

#preloader img {
    max-width: 100px;
    height: auto;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background-color: var(--xc-primary, #7E75FF);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.back-to-top:hover {
    background-color: var(--xc-primary-hover, #6C63FF);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(126, 117, 255, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Header styles */
.sticky-top {
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.tech-icon {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.tech-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
}

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.process-step .process-icon {
    transition: all 0.3s ease;
}

.card.shadow-sm {
    transition: all 0.3s ease;
}

.card.shadow-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* About CTA Section */
.about-cta-wrapper {
    margin: 4rem 0;
    padding: 1rem;
}

.about-cta-background {
    background: linear-gradient(135deg, var(--primary-color, #7E75FF) 0%, #A794FF 50%, #8878FF 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(123, 111, 255, 0.2);
    transform: translateY(0);
    transition: transform 0.4s ease-out;
}

.about-cta-wrapper:hover .about-cta-background {
    transform: translateY(-5px);
}

.about-cta-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.about-cta-particle-1 {
    width: 180px;
    height: 180px;
    top: -90px;
    left: -90px;
    animation: floatParticle 8s infinite ease-in-out;
}

.about-cta-particle-2 {
    width: 120px;
    height: 120px;
    bottom: -60px;
    right: 10%;
    animation: floatParticle 12s infinite ease-in-out;
    animation-delay: 2s;
}

.about-cta-particle-3 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: -40px;
    animation: floatParticle 10s infinite ease-in-out;
    animation-delay: 1s;
}

.btn-hover-scale {
    transition: all 0.3s ease;
}

.btn-hover-scale:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

@media (max-width: 767px) {
    .about-cta-wrapper {
        margin: 2rem 0;
    }
    
    .about-cta-wrapper .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }
}

/* Portfolio Styles */
.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-img:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
}

.portfolio-filters .btn {
    margin-right: 5px;
    margin-bottom: 10px;
}

.portfolio-filters .btn.active {
    background-color: var(--xc-primary, #7E75FF);
    border-color: var(--xc-primary, #7E75FF);
    color: #fff;
}

.portfolio-filters .btn:hover {
    background-color: var(--xc-primary-hover, #6C63FF);
    border-color: var(--xc-primary-hover, #6C63FF);
    color: #fff;
}

.portfolio-grid {
    position: relative;
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Services Styles */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-navigation a {
    color: var(--bs-body-color, #212529);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-navigation a:hover {
    color: var(--xc-primary, #7E75FF);
}

.related-services .card-title {
    font-size: 1rem;
}

/* Team Member Styles */
.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: #212529;
    transition: all 0.3s ease;
    margin: 0 2px;
}

.team-social a:hover {
    background-color: var(--xc-primary, #7E75FF);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 117, 255, 0.3);
}

/* Contact Styles */
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: var(--xc-primary, #7E75FF);
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background-color: var(--xc-primary, #7E75FF);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 117, 255, 0.3);
}

/* Footer styles */
.footer-social-links a {
    transition: all 0.3s;
}

.footer-social-links a:hover {
    transform: translateY(-3px);
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-menu li {
    list-style: none;
}

.footer-menu a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-menu a:hover {
    color: var(--xc-primary, #7E75FF);
}

/* Hero section styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-foreground,
.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.position-relative {
    position: relative;
    z-index: 3;
}

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

/* Default Heading Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}

h1 {
    font-size: 2.25rem; /* 36px */
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 1.875rem; /* 30px */
    line-height: 1.2;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem; /* 24px */
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem; /* 20px */
    line-height: 1.4;
}

h5 {
    font-size: 1.125rem; /* 18px */
    line-height: 1.4;
}

h6 {
    font-size: 1rem; /* 16px */
    line-height: 1.5;
}

/* Responsive typography - adjusts heading sizes on mobile */
@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem; /* 32px */
    }
    
    h2 {
        font-size: 1.625rem; /* 26px */
    }
    
    h3 {
        font-size: 1.375rem; /* 22px */
    }
    
    h4 {
        font-size: 1.125rem; /* 18px */
    }
    
    h5 {
        font-size: 1rem; /* 16px */
    }
    
    h6 {
        font-size: 0.875rem; /* 14px */
    }
}

/* Blog Header and Search Styles */
.blog-header-decoration-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    transform: translate(150px, -150px);
}

.blog-header-decoration-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    transform: translate(-100px, 100px);
}

.blog-header-dots {
    width: 180px;
    height: 180px;
    background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 2px);
    background-size: 18px 18px;
    transform: translateX(-50%);
}

.z-index-2 {
    z-index: 2;
}

/* Minimal Search Box Styling */
.minimal-search-wrapper {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 25px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    max-width: 620px;
    margin: 0 auto;
}

.search-icon {
    color: var(--primary-color, #6159ff);
    opacity: 0.6;
    margin-right: 15px;
    font-size: 18px;
}

.minimal-search-field {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    color: #333;
    padding: 0;
}

.minimal-search-field::placeholder {
    color: #999;
    opacity: 0.8;
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__delay-1s {
    animation-delay: 0.2s;
}

.animate__delay-2s {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Make search form more responsive */
@media (max-width: 576px) {
    .search-submit {
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: 14px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Blog Post Card Styles */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.hover-lift-light:hover {
    transform: translateY(-3px);
}

/* List view enhancements */
.list-view .post-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Pagination styling */
.pagination .page-numbers {
    display: inline-block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--primary-color);
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
}

.pagination .page-numbers.current {
    z-index: 3;
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-numbers:hover {
    z-index: 2;
    color: var(--primary-color);
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.pagination .page-numbers.current:hover {
    background-color: var(--primary-color, #7E75FF);
    color: #fff;
    cursor: default;
}

/* Category list styling */
.widget-area ul li {
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.widget-area ul li:last-child {
    border-bottom: none;
}

.widget-area ul li a {
    color: #212529;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.widget-area ul li a:hover {
    color: var(--primary-color);
}

/* Category badge styling */
.badge {
    font-weight: 500;
}

/* Image hover zoom effect */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

/* Recent posts styling */
.recent-post-date {
    min-width: 40px;
    border-radius: 4px;
    background: #f8f9fa;
    padding: 5px 0;
}

/* Tag cloud */
.tag-link {
    font-size: 0.8rem;
    border-radius: 20px;
    padding: 0.2rem 0.75rem;
    text-decoration: none;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    display: inline-block;
}

/* Header padding utility */
.py-md-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 992px) {
    .py-md-6 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Archive Header Styling */
.archive-header {
    padding: 1.5rem 0 2rem;
    background-color: var(--primary-color, #6159ff);
    position: relative;
    overflow: hidden;
}

.archive-header-circle-1 {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    top: -150px;
    right: -100px;
}

.archive-header-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    bottom: -50px;
    left: -80px;
}

.archive-header-dots {
    width: 180px;
    height: 180px;
    background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 2px);
    background-size: 18px 18px;
    top: 20%;
    right: 15%;
}

.archive-badge {
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
}

.archive-header .page-title {
    margin-bottom: 1.5rem;
}

.archive-description {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.post-count .badge {
    font-weight: 500;
}

.z-index-2 {
    z-index: 2;
}

/* Responsive adjustments for archive header */
@media (max-width: 767px) {
    .archive-header {
        padding: 2rem 0 4rem;
    }
}

/* Archive Page Responsive Typography */
@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }
    
    .archive-description {
        font-size: 1rem;
    }
}

/* Service Single Page Styles */
/* Service Hero Styles */
.service-hero {
    padding-top: 3rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4A45E3 100%);
}

/* Service Badge */
.service-badge {
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.btn-hover-scale:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Service Highlights */
.service-highlight {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-highlight-icon {
    color: rgba(255, 255, 255, 0.8);
}

/* Image Styles */
.service-img-wrapper {
    position: relative;
    padding: 15px;
}

.service-img-container {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    display: inline-block;
    max-width: 100%;
}

.service-img {
    transition: transform 0.5s ease;
    max-height: 250px;
    width: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.service-img-wrapper:hover .service-img {
    transform: scale(1.03);
}

/* Decorative Elements */
.service-img-circle-1 {
    width: 300px;
    height: 300px;
    top: -20px;
    left: -20px;
    z-index: 0;
}

.service-img-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20px;
    right: 20px;
    z-index: 0;
}

.service-img-dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 2px);
    background-size: 10px 10px;
    right: -30px;
    top: 30px;
}

/* Animated Particles */
.service-hero-particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.service-hero-particle-1 {
    width: 50px;
    height: 50px;
    top: 20%;
    left: 10%;
    animation: floatParticle 8s ease-in-out infinite;
}

.service-hero-particle-2 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 15%;
    animation: floatParticle 6s ease-in-out infinite;
    animation-delay: 1s;
}

.service-hero-particle-3 {
    width: 25px;
    height: 25px;
    top: 30%;
    right: 20%;
    animation: floatParticle 9s ease-in-out infinite;
    animation-delay: 2s;
}

.service-hero-particle-4 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    right: 10%;
    animation: floatParticle 7s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(20px) translateX(10px);
    }
}

/* Service responsive styles */
@media (max-width: 991px) {
    .service-hero {
        padding-top: 2.5rem;
        padding-bottom: 4rem;
    }
    
    .service-img {
        max-height: 200px;
    }
}

/* Additional Service Styles */
.opacity-90 {
    opacity: 0.9;
}

.z-index-1 {
    z-index: 1;
}

.border-opacity-25 {
    --bs-border-opacity: 0.25;
}

.btn-light {
    min-width: 160px;
    text-align: center;
}

/* Comments Styling */
.comments-area {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.comments-title, .comment-reply-title {
    position: relative;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.comments-title:after, .comment-reply-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color, #7E75FF);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .children {
    list-style: none;
    padding-left: 2.5rem;
    margin-top: 1rem;
}

.comment-body {
    position: relative;
}

/* Modern Comments Style */
.comments-modern .comment-body {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comments-modern .comment-body:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.comments-modern .children .comment-body {
    border-left: 3px solid var(--primary-color, #7E75FF);
}

/* Minimal Comments Style */
.comments-minimal .comment-body {
    border-width: 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 0;
    padding-right: 0;
}

.comments-minimal .children {
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    padding-left: 1.5rem;
}

.comments-minimal .comment-author .avatar {
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Comment Form Styling */
.comment-form label {
    font-weight: 500;
}

.comment-form .form-control {
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.comment-form .form-control:focus {
    border-color: var(--primary-color, #7E75FF);
    box-shadow: 0 0 0 0.25rem rgba(126, 117, 255, 0.25);
}

.comment-form .form-floating label {
    padding: 0.75rem 1rem;
}

.comment-form .form-floating>.form-control {
    padding: 1.5rem 1rem 0.5rem;
    height: calc(3.5rem + 2px);
}

.comment-form .form-floating>textarea.form-control {
    height: calc(8rem + 2px);
}

.comment-form .btn-primary {
    padding: 0.5rem 1.5rem;
}

.comment-awaiting-moderation {
    font-style: italic;
    background-color: rgba(255, 193, 7, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

/* Comment Pagination */
.comment-navigation {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comment-navigation a {
    color: var(--bs-body-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-navigation a:hover {
    color: var(--primary-color, #7E75FF);
}

.required {
    color: #dc3545;
}

@media (max-width: 767px) {
    .comment-list .children {
        padding-left: 1rem;
    }
    
    .comment-form .row {
        flex-direction: column;
    }
    
    .comment-form .col-md-6 {
        width: 100%;
    }
}

/* Homepage CTA Section */
.homepage-cta-wrapper {
    margin: 4rem 0;
    padding: 1rem;
    overflow: hidden;
}

.homepage-cta-background {
    background: linear-gradient(135deg, #7B6FFF 0%, #A794FF 50%, #8878FF 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(123, 111, 255, 0.2);
    transform: translateY(0);
    transition: transform 0.4s ease-out;
}

.homepage-cta-wrapper:hover .homepage-cta-background {
    transform: translateY(-5px);
}

.homepage-cta-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.homepage-cta-particle-1 {
    width: 180px;
    height: 180px;
    top: -90px;
    left: -90px;
    animation: floatParticle 8s infinite ease-in-out;
}

.homepage-cta-particle-2 {
    width: 120px;
    height: 120px;
    bottom: -60px;
    right: 10%;
    animation: floatParticle 12s infinite ease-in-out;
    animation-delay: 2s;
}

.homepage-cta-particle-3 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: -40px;
    animation: floatParticle 10s infinite ease-in-out;
    animation-delay: 1s;
}

.homepage-cta-buttons .btn {
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.homepage-cta-buttons .btn-hover-scale:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.homepage-cta-buttons .btn-outline-light {
    border-width: 2px;
}

.homepage-cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

@media (max-width: 767px) {
    .homepage-cta-wrapper {
        margin: 2rem 0;
    }
    
    .homepage-cta-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }
}