* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

/* Premium Marigold Garland Decoration */
.garland-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 18px;
    background: linear-gradient(90deg, 
        #ff9a00 0%, 
        #ffd700 10%, 
        #ffb700 20%, 
        #ff9a00 30%,
        #ffd700 40%,
        #ffb700 50%,
        #ff9a00 60%,
        #ffd700 70%,
        #ffb700 80%,
        #ff9a00 90%,
        #ffd700 100%
    );
    background-size: 200% 100%;
    animation: garlandShine 4s linear infinite;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(255, 154, 0, 0.7), 
                inset 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.8);
}

.garland-top::before {
    content: '🌼 🌺 🌸 🌼 🌺 🌸 🌼 🌺 🌸 🌼 🌺 🌸 🌼 🌺 🌸 🌼 🌺 🌸 🌼 🌺';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    font-size: 22px;
    letter-spacing: 25px;
    animation: sway 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.garland-top::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        #4CAF50 0px,
        #4CAF50 10px,
        #2E7D32 10px,
        #2E7D32 20px
    );
    opacity: 0.9;
}

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

@keyframes sway {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(1deg); }
    75% { transform: translateY(-2px) rotate(-1deg); }
}

/* Premium Navigation */
.navbar {
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    margin-top: 18px;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.98) 0%, rgba(101, 67, 33, 0.98) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ff9a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.marathi-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.nav-link {
    color: white !important;
    margin: 0 15px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700 0%, #ff9a00 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: #ffd700 !important;
    transform: translateY(-3px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Premium Hero Section with Slider */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    min-height: 100vh;
    position: relative;
}

.slide.active {
    display: block;
    animation: fadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.7) 0%, 
        rgba(101, 67, 33, 0.8) 50%,
        rgba(139, 69, 19, 0.7) 100%);
    z-index: 1;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: scale(1.05);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.flower-decoration {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-25px) rotate(5deg);
    }
}

.marathi-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ff9a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.english-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5),
                 0 0 30px rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 1.2s ease;
}

.animate-slide-up {
    animation: slideUp 1.4s ease;
}

.animate-slide-up-delay {
    animation: slideUp 1.6s ease;
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero {
    background: linear-gradient(135deg, #ffd700 0%, #ff9a00 100%);
    color: #4a2c2a;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 154, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #ff9a00 0%, #ffd700 100%);
    color: #4a2c2a;
    transform: translateY(-7px) scale(1.08);
    box-shadow: 0 20px 50px rgba(255, 154, 0, 0.6);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-hero-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 154, 0, 0.2) 100%);
    transition: left 0.4s ease;
}

.btn-hero-outline:hover::before {
    left: 0;
}

.btn-hero-outline:hover {
    background: white;
    color: #764ba2;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Premium Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 154, 0, 0.3));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 2.5rem;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slider-control:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.6), rgba(255, 154, 0, 0.6));
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 12px 40px rgba(255, 154, 0, 0.5);
}

.slider-control.prev {
    left: 30px;
}

.slider-control.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dot.active, .dot:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ff9a00 100%);
    transform: scale(1.5);
    border-color: white;
    box-shadow: 0 4px 12px rgba(255, 154, 0, 0.6);
}

/* Premium About Section */
.about-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B4513 0%, #654321 50%, #8B4513 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: 1px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.marigold {
    font-size: 2.5rem;
    animation: pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 154, 0, 0.4));
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        transform: scale(1.3) rotate(10deg);
    }
}

.line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        #ff9a00 0%, 
        #ffd700 25%, 
        #ff9a00 50%, 
        #ffd700 75%, 
        #ff9a00 100%);
    box-shadow: 0 2px 10px rgba(255, 154, 0, 0.4);
    border-radius: 2px;
}

.line-white {
    width: 80px;
    height: 3px;
    background: white;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
    border-color: #ffd700;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ff9a00 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 154, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 154, 0, 0.6);
}

.feature-card h4 {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Premium Success Stories Section */
.stories-section {
    background: linear-gradient(135deg, #8B4513 0%, #654321 50%, #8B4513 100%);
    position: relative;
    overflow: hidden;
}

.stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="50" y="50" font-size="50" text-anchor="middle" dominant-baseline="middle" opacity="0.05">💑</text></svg>');
    background-size: 150px 150px;
    animation: bgScroll 30s linear infinite;
}

@keyframes bgScroll {
    from { background-position: 0 0; }
    to { background-position: 150px 150px; }
}

.story-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '💐';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 80px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.story-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
    border-color: #ffd700;
}

.story-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ff9a00 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 154, 0, 0.5);
    border: 5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.story-card:hover .story-img {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7);
}

.story-card h5 {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.rating {
    color: #ffd700;
    font-size: 1.4rem;
    margin-top: 1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
}

/* Premium Contact Section */
.contact-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #ff9a00;
    box-shadow: 0 20px 50px rgba(255, 154, 0, 0.3);
}

.contact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ff9a00 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 154, 0, 0.4);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.contact-card h5 {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.contact-card p.text-muted {
    font-size: 0.95rem;
    color: #666 !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer p {
    margin-bottom: 0;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.footer a:hover {
    color: #ffd700;
    transform: scale(1.2);
    display: inline-block;
}

/* Premium Mobile Responsive */
@media (max-width: 1200px) {
    .marathi-heading {
        font-size: 3.5rem;
    }
    
    .english-heading {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .garland-top::before {
        font-size: 18px;
        letter-spacing: 20px;
    }
    
    .marathi-heading {
        font-size: 3rem;
    }
    
    .english-heading {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-card, .story-card, .contact-card {
        margin-bottom: 2rem;
    }
    
    .btn-hero, .btn-hero-outline {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    .garland-top {
        height: 15px;
    }
    
    .garland-top::before {
        font-size: 16px;
        letter-spacing: 15px;
        top: -8px;
    }
    
    .garland-top::after {
        height: 6px;
    }
    
    .navbar {
        margin-top: 15px;
        padding: 0.8rem 0;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(139, 69, 19, 0.98), rgba(101, 67, 33, 0.98));
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link {
        margin: 0.5rem 0;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        text-align: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(255, 215, 0, 0.2);
    }
    
    .marathi-heading {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .english-heading {
        font-size: 1.8rem;
    }
    
    .flower-decoration {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-hero, .btn-hero-outline {
        font-size: 0.95rem;
        padding: 12px 25px;
        margin: 0.5rem;
        width: 100%;
        max-width: 300px;
    }
    
    .slider-control {
        font-size: 2rem;
        padding: 15px 18px;
    }
    
    .slider-control.prev {
        left: 15px;
    }
    
    .slider-control.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 25px;
        padding: 10px 20px;
        gap: 12px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .feature-card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .story-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .story-img {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    
    .contact-card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .flower-decoration {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-hero, .btn-hero-outline {
        font-size: 0.9rem;
        padding: 0.75rem 2rem !important;
    }
    
    .slider-control {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .slider-control.prev {
        left: 10px;
    }
    
    .slider-control.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .feature-card, .story-card, .contact-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-icon, .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .story-img {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .garland-top {
        height: 12px;
    }
    
    .garland-top::before {
        font-size: 14px;
        letter-spacing: 8px;
        top: -6px;
    }
    
    .garland-top::after {
        height: 5px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .marathi-heading {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .english-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .flower-decoration {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-hero, .btn-hero-outline {
        font-size: 0.9rem;
        padding: 10px 20px;
        width: 100%;
    }
    
    .slider-control {
        font-size: 1.5rem;
        padding: 10px 12px;
    }
    
    .slider-control.prev {
        left: 10px;
    }
    
    .slider-control.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
        padding: 8px 15px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .feature-card, .story-card, .contact-card {
        padding: 2rem 1.2rem;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .story-img {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .marigold {
        font-size: 2rem;
    }
    
    .line {
        width: 60px;
        height: 3px;
    }
    
    .lead {
        font-size: 0.95rem;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .marathi-heading {
        font-size: 1.6rem;
    }
    
    .english-heading {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-hero, .btn-hero-outline {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
}

/* Smooth scrolling for all */
html {
    scroll-behavior: smooth;
}

/* Better touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, .slider-control, .dot {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Larger tap targets for mobile */
    .btn-hero, .btn-hero-outline {
        min-height: 48px;
        padding: 12px 24px;
    }
    
    .nav-link {
        min-height: 48px;
        padding: 12px 16px;
    }
}

/* Prevent text selection on buttons */
.btn, button, .slider-control, .dot {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Improve scrolling performance */
* {
    -webkit-overflow-scrolling: touch;
}
