/* Colors */
:root {
    --primary-dark: #220536; 
    --footer-bottom: #6f2e9b;
    --accent-gold: #f39c12; 
    --text-dark: #333;
    --text-light: #fff;
    --text-muted: #666;
    --bg-light: #ffffff;
    --wa-green: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mukta', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Subtitle lines */
.section-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.section-header.center { justify-content: center; }
.section-header .line { height: 1px; width: 30px; background-color: var(--accent-gold); }
.section-subtitle { color: var(--text-dark); font-weight: 700; font-size: 15px; }
.section-title { font-size: 28px; color: var(--primary-dark); margin-bottom: 25px; }

/* Header - Added Shadow */
.header { 
    background: #fff; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.12); /* Increased noticeable shadow */
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}
.nav-container { display: flex; align-items: center; padding: 8px 20px; }
.logo { margin-right: auto; }
.logo img { height: 85px; object-fit: contain; display: block; }

.nav-menu { margin-right: 30px; }
.nav-menu ul { display: flex; gap: 20px; }
.nav-menu ul li a { font-size: 16px; font-weight: 600; color: var(--text-dark); padding-bottom: 5px; }
.nav-menu ul li a:hover, .nav-menu ul li a.active { color: var(--accent-gold); border-bottom: 2px solid var(--accent-gold); }

.btn-appointment { background: var(--primary-dark); color: #fff; padding: 10px 22px; border-radius: 8px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.btn-appointment:hover { opacity: 0.9; }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--primary-dark); }

/* Slider (No Crop) */
.slider-section { position: relative; width: 100%; max-width: 100%; overflow: hidden; }
.slide { display: none; width: 100%; }
.slide img { width: 100%; display: block; height: auto; object-fit: contain; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.3); color: white; border: none; padding: 10px 15px; cursor: pointer; font-size: 18px; border-radius: 50%; z-index: 10; transition: 0.3s; }
.slider-btn:hover { background: var(--accent-gold); }
.prev-btn { left: 15px; }
.next-btn { right: 15px; }
.slider-dots { position: absolute; bottom: 15px; width: 100%; text-align: center; z-index: 10; }
.dot { cursor: pointer; height: 10px; width: 10px; margin: 0 4px; background-color: rgba(255,255,255,0.5); border-radius: 50%; display: inline-block; }
.dot.active, .dot:hover { background-color: var(--accent-gold); }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(243, 156, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

.animate-up { animation: fadeInUp 1s ease-out forwards; }
.pulse-anim { animation: pulseGlow 2s infinite; }

/* About Section - 40/60 Layout */
.about-section { padding: 40px 20px; }
.about-grid { display: grid; grid-template-columns: 40% 60%; gap: 40px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.experience-badge { position: absolute; bottom: 20px; left: -15px; background: var(--primary-dark); color: var(--accent-gold); padding: 12px 20px; border-radius: 8px; text-align: center; border: 2px solid var(--accent-gold); }
.experience-badge strong { font-size: 26px; display: block; line-height: 1; }
.about-text h2 { font-size: 28px; margin-bottom: 15px; color: var(--primary-dark); line-height: 1.3; font-weight: 700; }
.about-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 16px; line-height: 1.6; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
.stat-box { background: #fff; padding: 15px 10px; border-radius: 8px; text-align: center; border: 1px solid #eaeaea; box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
.stat-box i { color: var(--accent-gold); font-size: 20px; margin-bottom: 8px; }
.stat-box h4 { font-size: 15px; color: var(--text-dark); margin-bottom: 3px; }
.stat-box p { font-size: 12px; color: var(--text-muted); }
.btn-primary { background: var(--primary-dark); color: #fff; padding: 10px 22px; border-radius: 30px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px;}

/* Services / Packages Section - Icon Update */
.services-section { padding: 50px 0; border-top: 1px solid #eaeaea; background: #fafafa; }
.services-intro { text-align: center; max-width: 800px; margin: 0 auto 40px auto; padding: 0 20px; }
.services-intro p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }

.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.service-card { 
    background: #fff; 
    border-radius: 12px; 
    padding: 30px 15px 25px 15px; 
    text-align: center; 
    border: 1px solid #eaeaea; 
    border-top: 4px solid transparent; /* Prepare for hover border */
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); 
    display: flex; flex-direction: column; position: relative; 
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top-color: var(--accent-gold);
}

.animate-card { opacity: 0; animation: fadeInUp 0.8s ease forwards; }

/* Beautiful Icon Style */
.service-icon {
    font-size: 35px;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--accent-gold), #ffdf00);
    width: 75px; 
    height: 75px;
    line-height: 75px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4);
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 { font-size: 20px; color: var(--primary-dark); margin-bottom: 5px; font-weight: 700; }
.service-card .price { font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }

/* Feature List Inside Card */
.service-card .features { list-style: none; padding: 0 10px; margin: 0 0 25px 0; text-align: left; flex-grow: 1; }
.service-card .features li { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; font-weight: 600; }
.service-card .features li i { color: var(--wa-green); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

.service-btn { background: var(--primary-dark); color: #fff; padding: 10px 20px; border-radius: 25px; font-size: 15px; font-weight: 600; margin: 0 10px; transition: 0.3s; }
.service-btn:hover { background: var(--accent-gold); color: var(--primary-dark); }

/* Package Ribbons */
.service-card.popular { border-top: 4px solid var(--accent-gold); border-left: 1px solid var(--accent-gold); border-right: 1px solid var(--accent-gold); border-bottom: 1px solid var(--accent-gold); transform: scale(1.02); box-shadow: 0 8px 25px rgba(243, 156, 18, 0.2); z-index: 2; }
.service-card.popular:hover { transform: scale(1.02) translateY(-10px); }
.service-card.vip { border-top: 4px solid var(--primary-dark); }
.popular-badge { position: absolute; top: 15px; right: -35px; background: var(--accent-gold); color: #fff; padding: 5px 40px; transform: rotate(45deg); font-size: 11px; font-weight: bold; letter-spacing: 1px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.vip-badge { background: var(--primary-dark); color: var(--accent-gold); }

/* Why Choose Us */
.compact-section { padding-top: 30px; padding-bottom: 20px; }
.why-choose-us { background: var(--primary-dark); border-radius: 10px; padding: 6px 30px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 25px; align-items: center; color: #fff; }
.why-card h2 { font-size: 26px; margin-bottom: 15px; }
.why-card ul li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-size: 14px; color: #f0f0f0; }
.why-card ul li i { color: var(--accent-gold); font-size: 16px; }
.why-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.w-stat { text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.w-stat:last-child { border-right: none; }
.w-stat i { font-size: 26px; color: var(--accent-gold); margin-bottom: 8px; }
.w-stat h3 { font-size: 22px; margin-bottom: 3px; }
.w-stat p { font-size: 12px; color: #ccc; }

/* ================= Testimonials Auto-Slider (4 Items) ================= */
.testimonials-section { padding-bottom: 50px; overflow: hidden; position: relative; }
.testimonial-slider-wrapper { position: relative; width: 100%; padding: 10px 0; overflow: hidden; }

.testimonial-track { 
    display: flex; 
    gap: 20px; 
    transition: transform 0.5s ease-in-out; 
}

/* Force exactly 4 items per row on desktop */
.testimonial-card { 
    flex: 0 0 calc(25% - 15px); /* Ensures 4 cards fit perfectly */
    background: #fff; 
    padding: 25px; 
    border-radius: 8px; 
    border: 1px solid #eaeaea; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.quote-icon { color: var(--accent-gold); font-size: 20px; margin-bottom: 10px; }
.testimonial-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; min-height: 65px; line-height: 1.5; font-style: italic; }

.client-info { display: flex; align-items: center; gap: 12px; border-top: 1px solid #eaeaea; padding-top: 15px; }

/* Circular Profile Icon Styling */
.client-img { 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; /* Makes it perfectly round */
    object-fit: cover; 
    border: 2px solid var(--accent-gold); /* Beautiful border */
}

.client-name h4 { font-size: 15px; color: var(--text-dark); margin-bottom: 2px; font-weight: 700; }
.client-name span { font-size: 12px; color: var(--text-muted); }
.stars { margin-left: auto; color: var(--accent-gold); font-size: 12px; }

/* Testimonial slider buttons */
.test-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--primary-dark); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; z-index: 5; opacity: 0.8; transition: 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.test-btn:hover { opacity: 1; background: var(--accent-gold); color: var(--primary-dark); }
.test-prev { left: 0px; }
.test-next { right: 0px; }

/* Responsive adjustments for 2 items on tablet, 1 on mobile */
@media (max-width: 992px) {
    .testimonial-card { flex: 0 0 calc(50% - 10px); } 
}
@media (max-width: 768px) {
    .testimonial-card { flex: 0 0 100%; } 
}

/* Footer */
.main-footer { background: var(--primary-dark); color: #dcdcdc; padding-top: 20px; font-size: 14px; border-top: 4px solid var(--accent-gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 15px; padding-bottom: 10px; }
.footer-col { padding: 0 15px; border-right: 1px solid rgba(255, 255, 255, 0.15); }
.footer-col:last-child { border-right: none; }
.footer-col:first-child { padding-left: 0; }
.footer-logo { height: 75px; width: auto; object-fit: contain; margin-bottom: 15px; display: block; }
.brand-col p { margin-bottom: 15px; line-height: 1.5; font-size: 14px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; transition: transform 0.3s; border: 1px solid rgba(255,255,255,0.4); }
.social-icons a:hover { transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 15px; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #dcdcdc; transition: color 0.3s; font-size: 13px;}
.footer-col ul li a:hover { color: var(--accent-gold); }
.contact-col ul li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: #fff; }
.contact-col ul li i { font-size: 16px; width: 18px; text-align: center; }
.footer-bottom { background: var(--footer-bottom); padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.fb-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: #aaa; }
.fb-flex a { color: #aaa; }
.fb-flex a:hover { color: var(--accent-gold); }

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--wa-green);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s;
}
.floating-whatsapp:hover { transform: scale(1.1); }

/* Responsive */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; } /* Stack about section below 1100 for safety */
    .services-grid { display: flex; overflow-x: auto; padding-bottom: 25px; scroll-snap-type: x mandatory; }
    .service-card { min-width: 280px; scroll-snap-align: start; }
    .service-card.popular { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-col { border-right: none; padding: 0; }
}

@media (max-width: 992px) {
    .testimonial-card { min-width: calc((100% - 20px) / 2); } /* 2 items on tablet */
    .about-stats-grid, .why-stats { grid-template-columns: repeat(2, 1fr); }
    .w-stat { border-right: none; }
    .experience-badge { left: 0; bottom: 0; }
    .nav-menu { margin-right: 10px; }
}

@media (max-width: 768px) {
    .testimonial-card { min-width: 100%; } /* 1 item on mobile */
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1); padding: 20px 0; margin-right: 0;}
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; align-items: center; gap: 15px; }
    .menu-toggle { display: block; margin-left: auto; margin-right: 20px; }
    .header-btn { display: none; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto 15px auto; }
    .social-icons { justify-content: center; }
    .contact-col ul li { justify-content: center; }
    .fb-flex { justify-content: center; text-align: center; }
    
    .about-stats-grid, .why-stats { grid-template-columns: 1fr; }
}