* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #333;
    overflow-x: hidden;
}

/* Background */
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffe6c7, #ffd1dc, #fff2b2);
    z-index: -1;
}

/* Hero */
.hero {
    text-align: center;
    padding: 50px 20px;
    animation: fadeIn 1.5s ease;
}

.sanskrit {
    color: #5b3c88;
    font-weight: bold;
    margin-bottom: 15px;
}

.logo {
    width: 120px;
    margin: 10px auto;
    animation: float 4s ease-in-out infinite;
}

.hero h1 {
    font-size: 3rem;
    color: #4a8f2c;
}

.hero h2 {
    color: #5b3c88;
    margin-top: 5px;
}

.name {
    margin-top: 10px;
    font-weight: bold;
}

/* Call Button */
.call-btn {
    display: inline-block;
    margin: 20px auto;
    padding: 12px 25px;
    background: #4a8f2c;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.call-btn:hover {
    background: #3a6f22;
    transform: scale(1.05);
}

/* Socials */
.socials a {
    margin: 0 10px;
    font-size: 1.8rem;
    color: #5b3c88;
    transition: 0.3s;
}

.socials a:hover {
    color: #e84393;
}

/* Services */
.services {
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: rgba(255,255,255,0.75);
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Mobile */
@media(max-width:600px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}
