:root {
    --primary-color: #8D5C19;
    /* Gold */
    --secondary-color: #000000;
    /* Black */
    --accent-color: #B8860B;
    /* Dark Gold */
    --light-color: #f8f5f0;
    --dark-color: #1a1a1a;
    --text-light: #ffffff;
    --text-dark: #333333;
}


body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Header & Navigation - Show only on desktop */
.navbar {
    background-color: var(--secondary-color) !important;
    /* Black */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 70px;
    margin-right: 10px;
    border-radius: 5px;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s;
    padding: 8px 15px !important;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(141, 92, 25, 0.1);
}

.navbar-toggler {
    border-color: var(--primary-color);
}

.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%28141, 92, 25, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Header - Show only on mobile */
.mobile-header {
    background-color: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-header .navbar-brand {
    font-size: 20px;
}

.mobile-header .navbar-brand img {
    height: 40px;
}

/* Hero Section - Adjust for mobile header */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ffffff;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-light:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Carousel Section */

/* Carousel Section */
.main-carousel {
    margin-bottom: 40px;
    width: 100%;
    height: auto;
   
}

.container-fluid.p-0 {
    padding: 0 !important;
    margin: 0 !important;
}
.carousel-item img {
    width: 100%;
}

/* Desktop styles */
@media (min-width: 992px) {
    #spaCarousel {
        position: relative;
    }

    .main-carousel .carousel-item {
        height: 500px;
    }

    .carousel-caption {
        background: rgba(0, 0, 0, 0.7);
        padding: 30px;
        border-radius: 5px;
        bottom: 20%;
        left: 10%;
        right: 10%;
        border-left: 5px solid var(--primary-color);
    }

    .carousel-caption h3 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    /* Desktop buttons inside carousel */
    .carousel-actions {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        z-index: 10;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
}

/* Tablet styles */
@media (max-width: 991px) and (min-width: 768px) {
    .main-carousel .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        background: rgba(0, 0, 0, 0.7);
        padding: 20px;
        border-radius: 5px;
        bottom: 15%;
        left: 8%;
        right: 8%;
        border-left: 4px solid var(--primary-color);
    }

    .carousel-caption h3 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
    }

    /* Tablet buttons inside carousel */
    .carousel-actions {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        z-index: 10;
        display: flex;
        justify-content: center;
        gap: 15px;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .main-carousel .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        background: rgba(0, 0, 0, 0.7);
        padding: 15px;
        border-radius: 3px;
        bottom: 10%;
        left: 5%;
        right: 5%;
        border-left: 3px solid var(--primary-color);
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Adjust carousel controls for mobile */
    .carousel-control-prev,
    .carousel-control-next {
        width: 15%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }

    /* Adjust indicators for mobile */
    .carousel-indicators {
        margin-bottom: 5px;
    }

    .carousel-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin: 0 5px;
    }

    /* Mobile buttons outside carousel */
    .carousel-actions {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
        padding: 0 15px;
    }

    .carousel-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .main-carousel .carousel-item {
        height: 250px;
    }

    .carousel-caption {
        padding: 12px;
        bottom: 5%;
    }

    .carousel-caption h3 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    /* Adjust button sizes for small screens */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .carousel-actions {
        margin-top: 20px;
        gap: 12px;
    }
}

/* Common styles for all devices */
.main-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}

/* Ensure images are not hidden */
.carousel-inner {
    overflow: visible;
}

.carousel-item {
    position: relative;
}

.carousel-caption h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    background-size: 60%;
}

.carousel-indicators button {
    background-color: var(--primary-color) !important;
    opacity: 0.7;
}

.carousel-indicators button.active {
    opacity: 1;
}

/* Button styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #a0780a;
    border-color: #a0780a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-width: 2px;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

/* Improve image loading and display */
.carousel-item img {
    filter: brightness(0.9);
    transition: filter 0.5s ease;
}

.carousel-item.active img {
    filter: brightness(1);
}

/* Fix for image aspect ratio */
.carousel-item {
    width: 100%;
}

/* Button container for mobile */
.mobile-buttons-container {
    display: none;
}

@media (max-width: 767px) {
    .mobile-buttons-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
        padding: 0 15px;
    }

    /* Hide desktop positioned buttons on mobile */
    #spaCarousel .carousel-actions {
        display: none;
    }
}



/* Sidebar - Shows on both desktop and mobile */
.sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background-color: var(--secondary-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1060;
    transition: right 0.4s ease;
    overflow-y: auto;
    padding: 30px;
}

.sidebar.open {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-color);
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin: 0;
}

.sidebar-subtitle {
    color: var(--primary-color) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.sidebar-link {
    display: block;
    padding: 12px 0;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.sidebar-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Sidebar Toggle Buttons */
.sidebar-toggle-btn {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 1040;
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sidebar-toggle-btn:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.desktop-toggle {
    top: 120px;
    right: 20px;
}

/* Mobile specific sidebar toggle */
.mobile-header .sidebar-toggle-btn {
    position: static;
    background: none;
    color: var(--primary-color);
    width: auto;
    height: auto;
    box-shadow: none;
    font-size: 24px;
}

.mobile-header .sidebar-toggle-btn:hover {
    background: none;
    color: var(--accent-color);
    transform: none;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 10px;
    width: 140px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-color);
}

.gallery-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

/* Ads Section */
.ads-section {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.ad-card {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-top: 5px solid var(--primary-color);
}

.ad-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ad-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Section Styling */
.section-title {
    position: relative;
    margin-bottom: 50px;
    color: var(--secondary-color);
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-color) !important;
}

/* Services */
.service-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-color);
}

.service-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    color: var(--secondary-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* About */
.about-img {
    border-radius: 5px;
    box-shadow: 15px 15px 0 var(--primary-color);
    border: 3px solid white;
}

/* Contact Info */
.contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 30px;
    border-radius: 5px;
    border-left: 5px solid var(--primary-color);
}

.contact-icon {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
}

.contact-info h3 {
    color: var(--primary-color);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--primary-color);
}

.social-icons a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .multi-slider .img-card {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .multi-slider .img-card {
        width: 250px;
    }

    .sidebar-toggle-btn.desktop-toggle {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 80px 0;
    }


    .multi-slider .img-card {
        width: 280px;
        margin: 10px auto;
    }

    .navbar-brand img {
        height: 70px;
    }

    /* Mobile-specific multi-slider */
    .multi-slider .carousel-inner {
        padding: 10px 0;
    }

    /* Show one image at a time on mobile */
    .multi-slider .col-md-3.d-none {
        display: none !important;
    }

    .multi-slider .col-md-3.d-flex {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

}

@media (max-width: 576px) {
    .multi-slider .img-card {
        width: 90%;
        margin: 10px auto;
    }

    .multi-slider .carousel-inner {
        padding: 10px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-outline-light {
        padding: 10px 20px;
        font-size: 0.9rem;
    }


    .navbar-brand {
        font-size: 22px;
    }

    .navbar-brand img {
        height: 70px;
    }

    /* Hide desktop toggle on mobile */
    .sidebar-toggle-btn.desktop-toggle {
        display: none !important;
    }

    /* Show mobile toggle */
    .mobile-header .sidebar-toggle-btn {
        display: flex !important;
    }
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Card hover effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

/* Image hover zoom effect */
.card-img-top {
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Icon hover effect */
.position-absolute .bg-warning {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.card:hover .position-absolute .bg-warning {
    transform: rotate(15deg);
    background-color: #ffc107 !important;
    /* Bootstrap warning color */
}

/* Title hover effect */
.card-title {
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: #ffc107;
    /* Bootstrap warning color */
}

/* Read More link hover effect */
.btn-link {
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #ffca2c !important;
    /* Lighter yellow */
    transform: translateX(5px);
}

.btn-link:hover i {
    transform: translateX(3px);
}

.btn-link i {
    transition: transform 0.3s ease;
}

/* Optional: Add a subtle border on hover */
.card:hover {
    border: 1px solid rgba(255, 193, 7, 0.2) !important;
}

/* For a more pronounced effect on the entire card */
.card {
    overflow: hidden;
}

/* Optional: Add a gradient overlay on image hover */
.card .position-relative::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover .position-relative::after {
    opacity: 1;
}










/* Hero Section Base */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Floating animation for hero content */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatUpDown2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatUpDown3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-content {
    animation: floatUpDown 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-title {
    animation: floatUpDown2 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-subtitle {
    animation: floatUpDown3 7s ease-in-out infinite;
    animation-delay: 1s;
}

/* Floating particles/background */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

@keyframes floatParticle1 {
    0% {
        transform: translateY(100vh) translateX(-100px);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

@keyframes floatParticle2 {
    0% {
        transform: translateY(100vh) translateX(100px);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-100px) translateX(-100px);
        opacity: 0;
    }
}

@keyframes floatParticle3 {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Create multiple floating elements */
.hero-section .container::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: floatParticle1 20s linear infinite;
    top: -40px;
    left: 10%;
}

.hero-section .container::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: floatParticle2 25s linear infinite;
    animation-delay: 5s;
    top: -60px;
    right: 15%;
}

/* Add floating decorative elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: 5%;
    animation: floatParticle1 30s linear infinite;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 60%;
    right: 10%;
    animation: floatParticle2 25s linear infinite;
    animation-delay: 3s;
}

.floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 30%;
    left: 20%;
    animation: floatParticle3 20s linear infinite;
    animation-delay: 7s;
}

/* Button hover animation */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-outline-light:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
}

/* Pulsing effect for CTA */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.btn-primary {
    animation: pulseGlow 2s infinite;
}

/* Add these floating elements to your HTML */
/* You'll need to add these divs inside .hero-section but before .container */