﻿
    :root {
      --maroon: #6b2c3e;
      --maroon-light: #8b4560;
      --maroon-dark: #4a1f2c;
      --peach: #f5d4c1;
      --peach-light: #fae8de;
      --gold: #d4a854;
      --gold-glow: #f0c970;
      --cosmic-purple: #3d2952;
      --cosmic-pink: #c9a8b8;
      --background: #fdfbfa;
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--background);
      color: #3d1f2a;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
    }

    /* Floating Stars */
    .stars-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .star {
      position: absolute;
      animation: twinkle 3s ease-in-out infinite;
    }

    .star-float {
      animation: float 6s ease-in-out infinite;
    }

    @keyframes twinkle {
      0%, 100% { opacity: 0.3; transform: scale(0.8); }
      50% { opacity: 1; transform: scale(1.2); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
      50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
    }

    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    @keyframes fadeUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Background Orbs */
    .bg-orbs {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
    }

    .orb-1 {
      top: 0;
      right: 0;
      width: 500px;
      height: 500px;
      background: rgba(245, 212, 193, 0.15);
    }

    .orb-2 {
      bottom: 0;
      left: 0;
      width: 600px;
      height: 600px;
      background: rgba(107, 44, 62, 0.1);
    }

    .orb-3 {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 400px;
      background: rgba(201, 168, 184, 0.05);
    }

    /* Header */
    .header {
      padding: 2rem 0 3rem;
      position: relative;
      z-index: 10;
    }

    .logo {
      max-height: 280px;
      width: auto;
      filter: drop-shadow(0 4px 20px rgba(107, 44, 62, 0.15));
    }

    @media (max-width: 768px) {
      .logo {
        max-height: 150px;
      }
    }

    /* Services Section */
    .services-section {
      padding: 4rem 0;
      position: relative;
      z-index: 10;
    }

    .section-title {
        padding-top: 10px;
      font-size: 3.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--maroon), var(--cosmic-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      color: #7a5a65;
      font-size: 2rem;
      max-width: 1000px;
      margin: 0 auto 3rem;
    }

    /* Service Cards */
    .service-card {
      background: linear-gradient(180deg, #fdfbfa, #f8ede8);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 10px 40px -10px rgba(107, 44, 62, 0.2);
      transition: all 0.5s ease;
      animation: fadeUp 0.8s ease-out forwards;
      opacity: 0;
    }

    .service-card:nth-child(1) { animation-delay: 0.2s; }
    .service-card:nth-child(2) { animation-delay: 0.35s; }
    .service-card:nth-child(3) { animation-delay: 0.5s; }

    .service-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 50px -10px rgba(107, 44, 62, 0.35);
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(212, 168, 84, 0.2), transparent 70%);
      opacity: 0;
      transition: opacity 0.5s;
      z-index: 1;
      pointer-events: none;
    }

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

    .card-image-container {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
    }

    .card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .service-card:hover .card-image {
      transform: scale(1.1);
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(74, 31, 44, 0.8), transparent 60%);
    }

    .card-title-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      text-align: center;
      z-index: 2;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      font-weight: 600;
      color: #fdfbfa;
      margin-bottom: 0.25rem;
    }

    .card-title-hindi {
      color: var(--peach-light);
      font-size: 1.1rem;
      font-weight: 500;
    }

    .card-button-container {
      padding: 1.5rem;
      background: linear-gradient(180deg, #fdfbfa, rgba(245, 212, 193, 0.3));
    }

    /* Celestial Button */
    .btn-celestial {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      padding: 0.875rem 2rem;
      background: linear-gradient(135deg, var(--maroon), var(--cosmic-purple));
      color: #fdfbfa;
      border: none;
      border-radius: 50px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-celestial::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(212, 168, 84, 0.3), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .btn-celestial:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px -5px rgba(107, 44, 62, 0.4);
    }

    .btn-celestial:hover::after {
      opacity: 1;
    }

    .btn-celestial .arrow {
      transition: transform 0.3s;
    }

    .btn-celestial:hover .arrow {
      transform: translateX(4px);
    }

    /* Footer */
    .footer {
      background: linear-gradient(180deg, var(--cosmic-purple), var(--maroon-dark));
      padding: 3rem 0;
      margin-top: 4rem;
      position: relative;
      z-index: 10;
    }

    .footer-tagline {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 3s linear infinite;
    }

    .footer-tagline-english {
      color: rgba(250, 232, 222, 0.7);
      font-size: 0.9rem;
      margin-top: 0.5rem;
    }

    .divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin: 2rem 0;
    }

    .divider-line {
      height: 1px;
      width: 80px;
      background: linear-gradient(to right, transparent, rgba(245, 212, 193, 0.5));
    }

    .divider-line:last-child {
      background: linear-gradient(to left, transparent, rgba(245, 212, 193, 0.5));
    }

    .divider-star {
      color: var(--gold);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    /* Social Links */
    .social-links {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .social-link {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(245, 212, 193, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--peach);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--peach);
      color: var(--maroon-dark);
      transform: scale(1.1);
      box-shadow: 0 0 30px rgba(212, 168, 84, 0.3);
    }

    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .contact-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(250, 232, 222, 0.8);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }

    .contact-link:hover {
      color: var(--peach);
    }

    .copyright {
      color: rgba(250, 232, 222, 0.5);
      font-size: 0.85rem;
    }

    /* Footer Stars */
    .footer-star {
      position: absolute;
      animation: twinkle 3s ease-in-out infinite;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }
      .footer-tagline {
        font-size: 1.5rem;
      }
    }
  
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25d366, #1ebea5);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.8s infinite;
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-float i {
    z-index: 2;
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    background: #1b1b2f;
    color: #ffd369;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 211, 105, 0.6);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
