/* --- Variables & Reset --- */
:root {
    --primary-color: #b76e79; /* Rose Gold */
    --primary-dark: #96525c;
    --secondary-color: #fdf2f5; /* Very Pale Pink */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #b76e79 0%, #d6a4a4 100%);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Utility Classes --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--secondary-color); }
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 10px; font-family: var(--font-heading); }
.tagline { color: var(--primary-color); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; font-weight: 600; display: block; margin-bottom: 10px;}
.separator { width: 60px; height: 3px; background: var(--primary-color); margin: 10px auto 30px; }
.intro-text { max-width: 700px; margin: 0 auto; color: var(--text-light); font-size: 1.1rem; }

/* Buttons */
.btn { display: inline-block; padding: 12px 30px; border-radius: 30px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { background: var(--gradient); color: var(--white); border: 2px solid transparent; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(183, 110, 121, 0.3); }
.btn-outline { border: 2px solid var(--white); color: var(--white); margin-left: 10px; }
.btn-outline:hover { background: var(--white); color: var(--primary-color); }
.btn-white { background: var(--white); color: var(--primary-color); padding: 12px 35px; border-radius: 30px; font-weight: bold; margin-top: 20px; }
.btn-white:hover { background: #eee; }

/* --- Navbar --- */
header { position: sticky; top: 0; width: 100%; background: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 15px rgba(0,0,0,0.05); z-index: 1000; padding: 15px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-family: var(--font-heading); font-weight: 700; }
.logo span { color: var(--primary-color); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }
.btn-nav { background: var(--primary-color); color: white !important; padding: 8px 20px; border-radius: 20px; }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- CREATIVE HERO SECTION (Modern Arch Design) --- */
.creative-hero {
    position: relative;
    min-height: 100vh;
    background: #fff5f7; /* Very light pink background */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
}

/* Background Giant Watermark */
.bg-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(183, 110, 121, 0.05); /* Faint Rose Gold */
    font-family: var(--font-heading);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Left Content Styling */
.hero-text-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.highlight-text {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-style: italic;
    position: relative;
}

/* Underline effect */
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0;
    width: 100%; height: 10px;
    background: rgba(183, 110, 121, 0.2);
    z-index: -1;
    border-radius: 5px;
}

.luxury-badge {
    display: inline-block;
    background: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid #ffd1dc;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 20px;
}
.btn-play i {
    width: 40px; height: 40px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--primary-color);
    transition: 0.3s;
}
.btn-play:hover i { transform: scale(1.1); background: var(--primary-color); color: white; }

/* Trust Avatars */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}
.avatars { display: flex; }
.avatars img {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }

/* Right Visual Styling (THE ARCH) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.arch-container {
    position: relative;
    width: 400px;
    height: 550px;
}

/* The Arch Image */
.arch-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 20px 20px; /* ARCH SHAPE */
    box-shadow: 0 20px 50px rgba(183, 110, 121, 0.2);
    position: relative;
    z-index: 2;
}

/* Gold Ring Decoration */
.gold-ring {
    position: absolute;
    top: -30px; right: -30px;
    width: 150px; height: 150px;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
    animation: rotate 10s linear infinite;
}

/* Floating Offer Card */
.floating-card {
    position: absolute;
    bottom: 40px; left: -40px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
}
.offer-tag {
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 5px;
}
.floating-card p {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

/* Animations */
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.bounce { animation: float 3s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- PAGE HEADERS (UNIQUE FOR EACH PAGE) --- */
.page-header { 
    height: 50vh; /* Taller banner */
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--white); 
    margin-bottom: 50px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
}

/* Dark Overlay for Text Readability */
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.page-header h1 { 
    font-size: 3.5rem; 
    font-family: var(--font-heading); 
    position: relative; 
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

/* Specific Page Backgrounds */
.header-about { background-image: url('https://images.unsplash.com/photo-1633681926022-84c23e8cb2d6?q=80&w=1600'); }
.header-services { background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=1600'); }
.header-gallery { background-image: url('https://images.unsplash.com/photo-1596462502278-27bfdd403348?q=80&w=1600'); }
.header-contact { background-image: url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?q=80&w=1600'); }


/* --- Why Choose Us (Features) --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 30px; }
.feature-box { text-align: center; padding: 30px; background: white; border: 1px solid #eee; border-radius: 10px; transition: 0.3s; }
.feature-box:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.feature-box i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; }
.feature-box h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-box p { color: var(--text-light); font-size: 0.9rem; }

/* --- Services Preview --- */
.services-preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-preview-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.service-preview-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.svc-img img { width: 100%; height: 200px; object-fit: cover; }
.svc-info { padding: 25px; text-align: center; }
.svc-info h3 { font-size: 1.4rem; margin-bottom: 10px; }
.svc-info p { color: var(--text-light); margin-bottom: 15px; font-size: 0.95rem; }
.read-more { color: var(--primary-color); font-weight: 600; font-size: 0.9rem; }

/* --- Promo Banner --- */
.promo-banner { background: var(--gradient); padding: 80px 20px; color: white; margin: 50px 0; }
.promo-banner h2 { font-size: 2.5rem; font-family: var(--font-heading); margin-bottom: 15px; }
.promo-banner p { font-size: 1.2rem; opacity: 0.9; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: white; padding: 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.stars { color: #f1c40f; margin-bottom: 15px; font-size: 1.2rem; }
.review-card p { font-style: italic; color: #555; margin-bottom: 20px; }
.review-card h4 { font-weight: 600; color: var(--primary-color); }

/* --- Inner Pages Layouts --- */
.about-grid, .contact-wrapper { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.about-img, .about-text, .contact-info, .contact-form-map { flex: 1; min-width: 300px; }
.about-img img { border-radius: 15px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 30px; border-radius: 15px; text-align: center; border: 1px solid #eee; transition: 0.3s; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--primary-color); }
.icon-box { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { width: 100%; height: 250px; object-fit: cover; border-radius: 10px; cursor: pointer; transition: 0.3s; }
.gallery-item:hover { transform: scale(1.03); }
input, select, textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); }
.full-width { width: 100%; }

/* --- New Styles for Detail Pages --- */

/* Stats Section (About Page) */
.stats-section { background: var(--gradient); color: white; padding: 60px 0; margin: 40px 0; }
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; text-align: center; gap: 30px; }
.stat-item h2 { font-size: 3rem; font-weight: 700; margin-bottom: 5px; font-family: var(--font-body); }
.stat-item p { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }

/* Service List (Services Page) */
.service-list { margin-top: 20px; list-style: none; }
.service-list li { margin-bottom: 15px; font-size: 1rem; color: var(--text-dark); display: flex; align-items: start; gap: 10px; }
.service-list li i { color: var(--primary-color); margin-top: 5px; }
.price { color: var(--primary-color); font-weight: 700; font-size: 1.2rem; margin: 10px 0; }

/* --- Contact Page Specific Styles --- */
.contact-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: -50px; position: relative; z-index: 2; }
.contact-card { background: white; padding: 40px 20px; text-align: center; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: 0.3s; border-bottom: 3px solid transparent; }
.contact-card:hover { transform: translateY(-10px); border-bottom-color: var(--primary-color); }
.icon-circle { width: 70px; height: 70px; background: var(--secondary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary-color); font-size: 1.8rem; }
.contact-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.contact-card p { color: var(--text-light); font-size: 0.95rem; }
.highlight-text { font-size: 1.2rem; font-weight: 700; color: var(--primary-color) !important; margin-top: 5px; }

/* Contact Form & Map Layout */
.contact-wrapper { display: flex; gap: 40px; align-items: stretch; }
.contact-map { flex: 1.5; }
.contact-form-box { flex: 1; background: white; padding: 40px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.contact-form-box h3 { margin-bottom: 10px; font-family: var(--font-heading); font-size: 1.5rem; }

/* FAQ Section */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.faq-item { background: #fff; border: 1px solid #eee; padding: 25px; border-radius: 10px; }
.faq-item h4 { margin-bottom: 10px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.faq-item h4 i { color: var(--primary-color); }
.faq-item p { color: var(--text-light); font-size: 0.95rem; padding-left: 28px; }

/* --- Footer & WhatsApp --- */
footer { background: #222; color: white; padding: 50px 0 20px; text-align: center; margin-top: 50px; }
.footer-logo { font-size: 2rem; font-family: var(--font-heading); font-weight: 700; color: white; }
.footer-logo span { color: var(--primary-color); }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 100; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); }

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .nav-links { position: absolute; right: 0; top: 60px; background: white; width: 100%; flex-direction: column; padding: 20px; transform: translateY(-150%); transition: 0.3s; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.nav-active { transform: translateY(0); }
    .hamburger { display: block; }
    
    /* Hero Mobile Adjustments */
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text-content h1 { font-size: 3rem; }
    .btn-play { margin-left: 0; margin-top: 20px; display: block; }
    .trust-badge { justify-content: center; }
    .hero-visual { margin-top: 50px; }
    .arch-container { width: 300px; height: 400px; margin: 0 auto; }
    .bg-watermark { display: none; } /* Hide big text on mobile */
    .floating-card { left: -10px; bottom: 20px; }
    
    /* Page Header Mobile Fix */
    .page-header { height: 35vh; background-attachment: scroll; } /* Disable Parallax on Mobile */
    .page-header h1 { font-size: 2.2rem; }

    /* Other sections */
    .stats-grid { flex-direction: column; }
    .about-grid { flex-direction: column; }
    .bg-light .about-grid { flex-direction: column-reverse; }
    .contact-wrapper { flex-direction: column; }
    .contact-cards-grid { margin-top: 0; }
    .contact-map iframe { height: 300px; }
}
/* --- Happy Clients Avatar Style --- */
.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Round Shape */
    object-fit: cover;
    margin: 0 auto 15px auto; /* Center Align */
    border: 3px solid var(--primary-color);
    padding: 3px;
    background: white;
}
/* --- LOGO STYLES --- */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px; /* லோகோ உயரம் */
    width: auto;  /* அகலம் தானாக மாறும் */
    object-fit: contain;
}

/* மொபைலில் லோகோ அளவு */
@media (max-width: 768px) {
    .logo-img {
        height: 70px;
    }
}
/* --- TESTIMONIAL SLIDER STYLES --- */

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden; /* மறைந்திருக்கும் பகுதிகளை காட்டாது */
    padding-bottom: 30px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out; /* ஸ்மூத் ஸ்க்ரோலிங் */
    width: 100%;
}

.review-slide {
    min-width: 100%; /* மொபைலில் ஒரு நேரத்தில் 1 கார்டு தெரியும் */
    padding: 0 15px; /* இடைவெளி */
    box-sizing: border-box;
}

/* PC-ல் கார்டு கொஞ்சம் சிறிதாக தெரிய (Optional) */
@media (min-width: 768px) {
    .review-slide {
        min-width: 50%; /* டேப்லெட்டில் 2 கார்டு தெரியும் */
    }
}
@media (min-width: 1024px) {
    .review-slide {
        min-width: 33.33%; /* கம்ப்யூட்டரில் 3 கார்டு தெரியும் */
    }
}

/* Navigation Dots */
.dots-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}
/* --- INFINITE SCROLL TESTIMONIALS --- */

.scroll-container {
    width: 100%;
    overflow: hidden; /* வெளியில் போவதை மறைக்கும் */
    position: relative;
    padding: 20px 0;
}

.scroll-track {
    display: flex;
    width: max-content; /* கன்டென்ட் அளவுக்கு அகலம் இருக்கும் */
    gap: 30px; /* கார்டுகளுக்கு நடுவில் இடைவெளி */
    animation: scrollLoop 20s linear infinite; /* 20 நொடியில் ஒரு ரவுண்ட் வரும் */
}

/* மொபைலில் கொஞ்சம் வேகமாக ஓடலாம் */
@media (max-width: 768px) {
    .scroll-track {
        animation: scrollLoop 15s linear infinite;
    }
}

/* வாடிக்கையாளர் படிக்க நினைத்தால், மவுஸ் வைக்கும்போது நிற்கும் */
.scroll-track:hover {
    animation-play-state: paused;
}

.scroll-card {
    width: 350px; /* கார்டின் அகலம் */
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    flex-shrink: 0; /* கார்டு சுருங்காமல் இருக்க */
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.scroll-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary-color);
}

/* அனிமேஷன் லாஜிக் */
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        /* மொத்த நீளத்தில் பாதியளவு (50%) நகர்ந்தால் போதும், ஏனெனில் நாம் டூப்ளிகேட் வைத்துள்ளோம் */
        transform: translateX(calc(-100% / 2)); 
    }
}

/* Avatar Styling (ஏற்கனவே இருந்தால் பரவாயில்லை) */
.client-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
    padding: 3px;
    background: white;
}
/* --- ELEGANT FALLING TEXT ANIMATION --- */

.anim-text {
    overflow: hidden; /* எழுத்து வரும் வரை மறைத்து வைக்கும் */
}

/* ஜாவாஸ்கிரிப்ட் உருவாக்கும் எழுத்துக்களுக்கான டிசைன் */
.anim-text span {
    position: relative;
    display: inline-block;
    opacity: 0; /* முதலில் தெரியாது */
    transform: translateY(-100px); /* மேலே 100px தள்ளி இருக்கும் */
    animation: dropIn 0.8s forwards ease-out; /* கீழே விழும் அனிமேஷன் */
    color: var(--text-dark); /* எழுத்து கலர் */
}

/* "Inner Glow" என்ற வார்த்தைக்கு மட்டும் ரோஸ் கோல்ட் கலர் */
.anim-text span.highlight {
    color: var(--primary-color);
    font-style: italic;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

/* கீழே விழும் அனிமேஷன் */
@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(-10deg); /* மேலே சுழன்று இருக்கும் */
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg); /* சரியான இடத்தில் அமரும் */
    }
}
/* --- HERO BACKGROUND ANIMATION (Floating Bubbles) --- */

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Behind text */
    pointer-events: none; /* Click through allowed */
}

.shape {
    position: absolute;
    bottom: -100px; /* Start from below screen */
    background: linear-gradient(45deg, var(--primary-color), #ffcad4);
    border-radius: 50%;
    opacity: 0.15; /* Very soft transparent look */
    animation: floatUp 15s linear infinite;
}

/* Different Sizes & Positions for each shape */
.shape-1 { width: 80px; height: 80px; left: 10%; animation-duration: 12s; }
.shape-2 { width: 150px; height: 150px; left: 25%; animation-duration: 18s; animation-delay: 2s; }
.shape-3 { width: 60px; height: 60px; left: 50%; animation-duration: 15s; animation-delay: 5s; }
.shape-4 { width: 120px; height: 120px; left: 75%; animation-duration: 20s; animation-delay: 1s; }
.shape-5 { width: 90px; height: 90px; left: 90%; animation-duration: 14s; animation-delay: 3s; }

/* The Floating Animation */
@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        opacity: 0.3; /* Slightly visible in middle */
    }
    100% {
        transform: translateY(-120vh) rotate(360deg); /* Move up past screen */
        opacity: 0;
    }
}

/* --- SERVICE CARD HOVER ACTION (New) --- */
.service-preview-card {
    transition: all 0.4s ease;
}

/* மவுஸ் வைத்தால் கார்டு மேலே எழும்பும் + Glow வரும் */
.service-preview-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 30px rgba(183, 110, 121, 0.2); /* Rose Gold Shadow */
    border-bottom: 5px solid var(--primary-color);
}
/* --- SCROLL REVEAL ANIMATIONS --- */

/* 1. Basic Reveal State (மறைந்து இருக்கும் நிலை) */
.reveal {
    opacity: 0;
    transform: translateY(50px); /* கீழே 50px தள்ளி இருக்கும் */
    transition: all 1s ease-out;
}

/* 2. Active State (மேலே வரும் நிலை) */
.reveal.active {
    opacity: 1;
    transform: translateY(0); /* சரியான இடத்திற்கு வரும் */
}

/* 3. Staggered Delay (கார்டுகள் ஒன்றன் பின் ஒன்றாக வர) */
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }
/* --- DEVELOPER CREDIT (FOOTER) --- */
.developer-credit {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1); /* மெல்லிய கோடு */
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.5px;
}

.developer-credit strong {
    color: #fff; /* Mahi Infotech வெள்ளை நிறத்தில் தெரியும் */
    font-weight: 600;
}

.developer-credit a {
    color: var(--primary-color); /* ரோஸ் கோல்ட் கலர் */
    text-decoration: none;
    margin-left: 5px;
    font-weight: 500;
    transition: 0.3s;
}

.developer-credit a:hover {
    color: #fff;
    text-decoration: underline;
}