/* assets/css/style.css */

/* Base Styles */
:root {
    --primary-color: #ff9800;
    --primary-dark: #e65100;
    --secondary-color: #4a148c;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Make navbar toggler icon white */
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' 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") !important;
}
.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8) !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #f5f5f5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Mukta Vaani', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    border: 1px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

section{
    overflow:hidden;
}

.section-padding {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    margin-bottom: 20px;
}

.om-symbol {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Mukta Vaani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.navbar-light .navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-float-icon {
    line-height: 60px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Slider Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
    opacity: 0.7;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    opacity: 1;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Slider Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Mantra Slider Specific Styles */
.mantra-slider .swiper-button-next,
.mantra-slider .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.mantra-slider .swiper-button-next:hover,
.mantra-slider .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Testimonial Slider Specific Styles */
.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    top: 40%;
}


/* Hero Section */
/*.hero-section {*/
/*    position: relative;*/
/*    width: 100vw;*/
/*    height: 100vh;*/
/*    min-height: 700px;*/
    /* background: linear-gradient(135deg, #8d17bb, #6f15dc) (awsome);
       background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));  (og)
    */
/*    background: linear-gradient(135deg, #ff5d4a, #ff8200c7); (orange)*/
/*    overflow: hidden;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    opacity: 1;*/
/*}*/

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #8d17bb, #6f15dc);
    overflow: hidden;
    display: flex;
    align-items: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
}


.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}


.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    width: 70%;
    height: 70%;
    margin-left: 10%;
}

.hero-image img {
    max-width: 100%;
    border-radius: 50%;
    margin-top: 3%;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

/*
.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.3) 0%, rgba(255, 152, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}
*/

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  scale(2);
    width: 250px;
    height: 250px;
    background:var(--glass-bg);
    background-position: -17% 0;
    overflow: hidden;
    border-radius: 50%;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}


/*  dropdown menu */
.dropdown-menu {
    position: static !important;
    transform: none !important;
    will-change: auto !important;
}

/* Dropdown animation */
.animate-grow {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
        max-height 0.5s ease-in-out,
        opacity 0.3s ease 0.1s;
}

.show.animate-grow {
    max-height: 400px; 
    opacity: 1;
}

/* proper spacing */
.dropdown-menu.animate-grow {
    margin-top: 0.5rem;
    border: 1px solid rgba(0,0,0,.15);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

/* Categories Section */
.categories-section {
    position: relative;
    overflow: hidden;
}

.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid wheat;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.5);
    box-shadow: var(--glass-shadow);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* product row */
.product-row{
    margin-top: -2%;
}
/* Product Cards */
.product-card {
    background: white;
    border: 1px solid wheat;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-details {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* About Section */
.about-image-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.yantra-floating {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    opacity: 0.8;
    animation: rotate 20s linear infinite;
}

.feature-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* team */
.team-image{
    display: flex;  
    flex-wrap: wrap;
    justify-content: center;
}

.team-img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.team-social a{
    padding: 20px 5px;
    font-size: 1rem;
    border-radius: 50%;
}


/* Testimonials */
.testimonials-slider {
    padding: 20px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 10px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

/* CTA Section */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 50px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Blessed Vibes */
.mantra-slider {
    padding: 20px 0;
}

.mantra-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
    height: 100%;
}

.mantra-quote {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
}

.mantra-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.mantra-source {
    font-weight: 600;
}

/* FAQ */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-weight: 600;
    padding: 15px 20px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 152, 0, 0.1);
    color: var(--primary-color);
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
}

/* Contact */
.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgb(49, 46, 46);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 152, 0, 0.25);
}

/* Map */
.map-container {
    height: 450px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%) contrast(1.2) opacity(0.9);
}

/* Business Hours */
.business-hours {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.day-hour {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.day-hour:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.hours {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('../images/footer-pattern.png') repeat; */
    background: url('../images/mandala.webp') repeat;
    opacity: 0.05;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.8;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    opacity: 0.8;
    margin-left: 15px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 38px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Page Hero */
.page-hero-section {
    padding: 100px 0 50px;
    /* background: linear-gradient(135deg, var(--dark-color), var(--secondary-color)); */
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('../images/hero-pattern.png') repeat; */
    background: url('../images/mandala.webp') repeat;
    background-position: -40% 4%;
    opacity: 0.05;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Product Modal */
.product-modal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.product-modal .modal-body {
    padding: 30px;
}

.product-modal-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-modal-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.product-modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-modal-category {
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-modal-description {
    margin-bottom: 20px;
}

.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 30px 0;
    }
    .hero-image {
        margin-top: 20%;
        margin-left: 14%;
    }
    
    .hero-title {
        padding-top: 50px !important;
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .page-hero-section::before{
        background-position: 5% 12%;
    }

    .timeline::after {
        left: 31px;
    }
    
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-container::after {
        left: 18px;
    }
    
    .left::before, .right::before {
        left: 60px;
        border: medium solid var(--primary-color);
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--primary-color) transparent transparent;
    }
    
    .left::after, .right::after {
        left: 18px;
    }
    
    .right {
        left: 0%;
    }
}

@media (max-width: 767.98px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .dropdown-menu {
        width: 100%;
    }

    .product-row{
        margin-top: -12%;
    }

    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 600px;
    }
    
    .hero-title {
        padding-top: 50px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    
    .hero-image img{
        margin-top: 5%;
    }

    .hero-image-glow{
        transform: translate(-50%, -50%)  scale(1.5);
    }
    
    .page-hero-section::before{
        background-position: 0 27%;
    }

    .page-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-box {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .back-to-top{
        bottom: 80px;
        right: 23px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-image {
        margin-top: 27%  !important;
    }
    
    .hero-image img{
        margin-top: 7% !important;
    }

    .hero-image-glow{
        transform: translate(-50%, -50%)  scale(1.2);
    }

    .page-hero-section::before{
        background-position: 0 27%;
    }
    
    .footer-bottom-links {
        text-align: left;
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin-left: 0;
        margin-right: 15px;
    }
    
    .contact-method {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
