 :root {
            --primary-color: #000000;
            --secondary-color: #4d44db;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        
        .navbar-Astrologo {
      background-color: #ebbc12;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      padding: 0.8rem 0;
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--primary-color) !important;
      display: flex;
      align-items: center;
    }
    
    .navbar-brand img {
      height: 60px;
      margin-right: 10px;
    }
    
    .brand-highlight {
      color: var(--dark-color);
    }
    
    .nav-link {
      font-weight: 500;
      color: #000 !important;
      padding: 0.5rem 1rem !important;
      margin: 0 0.2rem;
      position: relative;
      transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
      color: var(--primary-color) !important;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: 0;
      left: 0;
      background-color: var(--primary-color);
      transition: width 0.3s ease;
      border-radius: 3px;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }
    
    .action-btn {
      background-color: #30297f;
      color: white !important;
      border-radius: 30px;
      padding: 0.5rem 1.2rem;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
    }
    
    .action-btn:hover {
      background-color: #2fbd30;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
    }
    
    .action-btn i {
      margin-right: 8px;
      font-size: 0.9rem;
    }
    
  
  .login-btn {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: #f4f4f4;
  color: #000;
  text-decoration: none;
}

    .login-btn i {
      margin-right: 8px;
    }
    
    .navbar-toggler {
      border: none;
      padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
    }
    
    @media (max-width: 992px) {
      .navbar-collapse {
        padding: 1rem;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
      }
      
      .nav-item {
        margin-bottom: 0.5rem;
      }
      
      .action-btn {
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
      }
      
      
      
       .login-btn {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: #f4f4f4;
  color: #000;
  text-decoration: none;
}

    }
        
        .hero-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-text {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .cta-button {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
        }
        
        .cta-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(108, 99, 255, 0.4);
        }
        
        .download-badge {
            height: 50px;
            margin: 10px;
            transition: transform 0.3s ease;
        }
        
        .download-badge:hover {
            transform: scale(1.05);
        }
        
        .free-chat-badge {
            background-color: #ff6b6b;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            margin-top: 20px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .carousel-item {
            height: 500px;
            background-size: cover;
            background-position: center;
        }
        
        .carousel-caption {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 20px;
            bottom: 80px;
        }
        
        .carousel-indicators {
            bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .carousel-item {
                height: 400px;
            }
            
            .carousel-caption {
                bottom: 40px;
                padding: 15px;
            }
             .login-btn {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: #f4f4f4;
  color: #000;
  text-decoration: none;
}

        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .carousel-item {
                height: 162px;
            }
            
            .carousel-caption {
                bottom: 20px;
                padding: 10px;
            }
            
            .download-badge {
                height: 40px;
            }
             .login-btn {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: #f4f4f4;
  color: #000;
  text-decoration: none;
}

        }

          section.astro-buttons-section {
      background-color: #f6f6f6;
      padding: 60px 20px;
      text-align: center;
    }

    .astro-btn {
      background-color: #fff;
      border: 1px solid #ebbc12;
      padding: 18px 30px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(255, 117, 140, 0.3);
      text-decoration: none;
      color: #000;
      font-weight: 500;
      font-size: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .astro-btn i {
      font-size: 1.5rem;
      color: #ebbc12;
    }

    .astro-btn .highlight {
      color: #ebbc12;
      font-weight: 600;
    }
    

    .astro-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px #ebbc12;
      text-decoration: none;
    }

    @media (max-width: 576px) {
      .astro-btn {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 16px;
      }

      .astro-btn i {
        font-size: 1.3rem;
      }
    }

    
     .astro-section {
      padding: 60px 20px;
      text-align: center;
    }

    .astro-section h2 {
      font-weight: bold;
    }

    .astro-section .subtext {
      color: #555;
      margin-top: 10px;
    }

    .swiper {
      padding: 30px 0;
    }

   .astro-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.astro-card:hover {
  transform: translateY(-5px);
}
.astro-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
}
.astro-card h5 {
  margin: 10px 0 5px;
  font-weight: 600;
}
.stars {
  color: #ffcc00;
  font-size: 18px;
}


.astro-img {
  width: 100%;
  height: 320px; /* fixed height for uniform look */
  object-fit: cover;
  border-radius: 8px;
}

/* Adjust height for smaller screens */
@media (max-width: 768px) {
  .astro-img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .astro-img {
    height: 200px;
  }
}

    .swiper-button-next,
    .swiper-button-prev {
      color: #ebbc12;
      background-color: #fff;
      border: 1px solid #ebbc12;
      border-radius: 50%;
      width: 40px;
      height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 18px;
    }

    #customer-stories .swiper-slide {
  height: auto !important;
  display: flex;
  align-items: stretch;
}

#customer-stories .astro-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#customer-stories .swiper-wrapper {
  align-items: stretch;
}

#customer-stories .astro-card img {
  display: block;
  margin: 0 auto 10px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}
#customer-stories .astro-card h5 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  font-weight: bold;
}

#customer-stories .stars {
  color: gold;
  margin-bottom: 10px;
}

#customer-stories .swiper-button-next,
#customer-stories .swiper-button-prev {
  color: #000;
}


 .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .page-header {
            background: linear-gradient(135deg, #ebbc12, #ebbc12);
            color: white;
            padding: 2rem 0;
            text-align: center;
            margin-bottom: 2rem;
            border-radius: 0 0 12px 12px;
        }

        .page-header h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Search and Filter Section */
        .search-section {
            background: white;
            padding: 1.2rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .search-container {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .search-input {
            flex: 1;
            min-width: 200px;
            position: relative;
        }

        .search-input input {
            width: 100%;
            padding: 10px 15px;
            padding-left: 40px;
            border: 1px solid #2e3436;
            border-radius: 12px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .search-input input:focus {
            border-color: #ebbc12;
            outline: none;
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
        }

        .search-input i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #ebbc12;
            font-size: 0.95rem;
        }

        .filter-btn, .sort-btn {
            background: white;
            border: 1px solid #2e3436;
            border-radius: 12px;
            padding: 10px 15px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .sort-btn:hover {
            background: #f5f6fa;
            border-color: #ebbc12;
        }

        .filter-btn i, .sort-btn i {
            color: #ebbc12;
            font-size: 0.95rem;
        }

        .filter-badge, .sort-badge {
            background: #3ab800;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            margin-left: 4px;
            display: none;
        }

        /* Astrologer Cards */
        .astrologer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .astrologer-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .astrologer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .status-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            z-index: 2;
        }

        .online {
            background: #3ab800;
            color: white;
        }

        .offline {
            background: #2e3436;
            color: #2d3436;
        }

        .verified-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: white;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            z-index: 2;
            color: #ebbc12;
            font-size: 0.8rem;
        }

        .profile-header {
            display: flex;
            align-items: center;
            padding: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .profile-image {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            object-fit: cover;
            margin-right: 1rem;
            border: 2px solid white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .profile-info {
            flex: 1;
        }

        .astrologer-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
            color: #2d3436;
        }

        .astrologer-specialty {
            font-size: 0.8rem;
            color: #2d3436;
            opacity: 0.8;
        }

        .card-body {
            padding: 1rem;
            flex: 1;
        }

        .rating {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .stars {
            color: #fdcb6e;
            margin-right: 8px;
            font-size: 0.9rem;
        }

        .rating-count {
            font-size: 0.8rem;
            color: #2d3436;
            opacity: 0.7;
        }

        .price {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .current-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ebbc12;
            margin-right: 8px;
        }

        .original-price {
            font-size: 0.8rem;
            text-decoration: line-through;
            color: #2d3436;
            opacity: 0.6;
        }

        .details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
        }

        .detail-item i {
            color: #ebbc12;
            font-size: 0.9rem;
        }

        .languages {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-top: 4px;
        }

        .language-tag {
            background: #f5f6fa;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.7rem;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 1rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .orders-count {
            font-size: 0.8rem;
            color: #2d3436;
            opacity: 0.7;
        }

        .chat-btn {
            background: #ebbc12;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }

        .chat-btn:hover {
            background: #ebbc12;
        }

        .chat-btn:disabled {
            background: #2e3436;
            cursor: not-allowed;
        }

        .load-more {
            text-align: center;
            margin: 2.5rem 0;
        }

        .load-more-btn {
            background: white;
            color: #ebbc12;
            border: 2px solid #ebbc12;
            padding: 10px 25px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .load-more-btn:hover {
            background: #ebbc12;
            color: white;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .astrologer-grid {
                grid-template-columns: 1fr;
            }
            
            .search-container {
                flex-direction: column;
            }
            
            .filter-btn, .sort-btn {
                justify-content: center;
                width: 100%;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .page-header p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .profile-header {
                padding: 0.8rem;
            }

            .profile-image {
                width: 60px;
                height: 60px;
                margin-right: 0.8rem;
            }

            .astrologer-name {
                font-size: 1rem;
            }

            .astrologer-specialty {
                font-size: 0.75rem;
            }

            .card-body {
                padding: 0.8rem;
            }

            .details-grid {
                grid-template-columns: 1fr;
                gap: 0.6rem;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .astrologer-card {
            animation: fadeIn 0.5s ease forwards;
            opacity: 0;
        }

        .astrologer-card:nth-child(1) { animation-delay: 0.1s; }
        .astrologer-card:nth-child(2) { animation-delay: 0.2s; }
        .astrologer-card:nth-child(3) { animation-delay: 0.3s; }
        .astrologer-card:nth-child(4) { animation-delay: 0.4s; }
        .astrologer-card:nth-child(5) { animation-delay: 0.5s; }
        .astrologer-card:nth-child(6) { animation-delay: 0.6s; }


        /* about-us-start */

        .text-gradient {
    background: linear-gradient(45deg, #dab607, #ebbc12);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .cosmic-star {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    filter: blur(0.5px);
    animation: twinkle 4s infinite alternate;
  }
  
  .cosmic-star:nth-child(2) {
    width: 5px;
    height: 5px;
    animation-delay: 1s;
  }
  
  .cosmic-star:nth-child(3) {
    width: 6px;
    height: 6px;
    animation-delay: 2s;
  }
  
  @keyframes twinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
  }
  
  .section-title {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
  }
  
  .title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ebbc12, #ebbc12);
    border-radius: 2px;
    animation: underlineGrow 1s ease-out forwards;
  }
  
  @keyframes underlineGrow {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 1; }
  }
  
  /* Floating animation */
  .floating {
    animation: floating 6s ease-in-out infinite;
  }
  
  @keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }
  
  /* Cosmic pulse effect */
  .cosmic-pulse {
    animation: cosmicPulse 3s ease infinite;
  }
  
  @keyframes cosmicPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(160, 146, 21, 0.4)); }
    100% { transform: scale(1); }
  }
  
  /* Feature list animations */
  .feature-list {
    position: relative;
  }
  
  .feature-item {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    opacity: 0;
    animation: slideInRight 0.5s forwards;
    animation-delay: calc(var(--order) * 0.2s);
  }
  
  @keyframes slideInRight {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  .feature-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ebbc12, #ebbc12);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
  }
  
  .check-spin {
    width: 16px;
    height: 16px;
    animation: checkSpin 0.6s ease;
  }
  
  @keyframes checkSpin {
    0% { transform: scale(0) rotate(-90deg); }
    80% { transform: scale(1.1) rotate(10deg); }
    100% { transform: scale(1) rotate(0); }
  }
  
  /* Counter animation */
  .counter {
    font-size: 2.5rem;
  }
  
  /* Orbit dots */
  .orbit-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
  }
  
  .dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ebbc12;
    border-radius: 50%;
    filter: blur(1px);
  }
  
  .dot-1 {
    top: 10%;
    left: 20%;
    animation: orbit 12s linear infinite;
  }
  
  .dot-2 {
    top: 70%;
    left: 80%;
    animation: orbitReverse 15s linear infinite;
    background: #ff7e5f;
    width: 8px;
    height: 8px;
  }
  
  .dot-3 {
    top: 30%;
    left: 85%;
    animation: orbit 18s linear infinite;
    width: 6px;
    height: 6px;
  }
  
  @keyframes orbit {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
  }
  
  @keyframes orbitReverse {
    from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    to { transform: rotate(-360deg) translateX(80px) rotate(360deg); }
  }
  
  /* Hover effects */
  .hover-float {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hover-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
  }
  
  /* Entry animations */
  .fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.3s;
  }
  
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }
   .mission-vision {
    overflow: hidden;
  }
  
  .cosmic-bg {
    background: 
      radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.05) 0%, transparent 20%),
      radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.05) 0%, transparent 20%);
    z-index: 0;
  }
  
  .cosmic-card {
    background: white;
    border-radius: 16px;
    transition: all 0.4s ease;
    z-index: 1;
    overflow: hidden;
    position: relative;
  }
  
  .cosmic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(3, 3, 3, 0.1) !important;
  }
  
  .mission-card {
    border-left: 4px solid #ebbc12;
  }
  
  .vision-card {
    border-left: 4px solid #ebbc12;
  }
  
  .text-gradient-primary {
    background: linear-gradient(45deg, #000000, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .text-gradient-secondary {
    background: linear-gradient(45deg, #f7971e, #ebbc12);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.1);
  }
  
  .vision-card .icon-wrapper {
    background: rgba(247, 151, 30, 0.1);
  }
  
  .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #000000);
    border-radius: 2px;
  }
  
  .tick-icon {
    min-width: 24px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.1);
    padding: 4px;
    transition: all 0.3s ease;
  }
  
  .vision-list .tick-icon {
    background: rgba(247, 151, 30, 0.1);
  }
  
  .mission-list li:hover .tick-icon,
  .vision-list li:hover .tick-icon {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(106, 17, 203, 0.1);
  }
  
  .vision-list li:hover .tick-icon {
    box-shadow: 0 0 0 4px rgba(247, 151, 30, 0.1);
  }
  
  @media (max-width: 768px) {
    .cosmic-card {
      margin-bottom: 30px;
    }
  }

  .contact-card {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            overflow: hidden;
            background: white;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
        }
        
      
        .contact-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(106, 17, 203, 0.1);
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .contact-info-item {
            transition: all 0.3s ease;
        }
        
        .contact-info-item:hover {
            transform: translateX(10px);
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
            min-height: 300px;
        }
        
        .floating {
            animation: floating 6s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .was-validated .form-control:valid,
        .form-control.is-valid {
            border-color: #28a745;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
        }
        
        .was-validated .form-control:invalid,
        .form-control.is-invalid {
            border-color: #dc3545;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
        }
         .signup-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      padding: 40px;
      position: relative;
      z-index: 1;
      border: none;
    }
    
    .signup-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%236c63ff" opacity="0.1"><path d="M50 0L100 50L50 100L0 50Z"/></svg>');
      background-size: contain;
      z-index: -1;
    }
    
    .signup-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 80px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ff6584" opacity="0.1"><circle cx="50" cy="50" r="50"/></svg>');
      background-size: contain;
      z-index: -1;
    }
    
    .highlight-text {
      color: var(--primary);
      font-weight: 700;
      position: relative;
      display: inline-block;
    }
    
    .highlight-text::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 8px;
      background-color: rgba(0, 0, 0, 0.3);
      z-index: -1;
      border-radius: 4px;
    }
    
    .feature-box {
      border-radius: 12px;
      padding: 25px 15px;
      text-align: center;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
      border: 1px solid rgba(108, 99, 255, 0.1);
    }
    
    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(108, 99, 255, 0.15);
    }
    
    .feature-box img {
      max-width: 50px;
      margin-bottom: 15px;
      filter: drop-shadow(0 4px 6px rgba(108, 99, 255, 0.2));
    }
    
    .btn-signup {
      background: var(--accent);
      border: none;
      color: var(--dark);
      font-weight: 600;
      padding: 12px 35px;
      border-radius: 50px;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(255, 213, 0, 0.4);
      width: 100%;
      font-size: 1.1rem;
    }
    
    .btn-signup:hover {
      background: #ffcc00;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 213, 0, 0.5);
    }
    
    .form-control {
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      transition: all 0.3s;
    }
    
    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
    }
    
    .input-group-text {
      background-color: white;
      border-radius: 8px 0 0 8px !important;
    }
    
    .input-group select {
      border-radius: 8px 0 0 8px !important;
    }
    
    .input-group input {
      border-radius: 0 8px 8px 0 !important;
    }
    
    .title {
      font-weight: 700;
      font-size: 2.5rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    
   
    .benefits-list {
      list-style: none;
      padding-left: 0;
    }
    
    .benefits-list li {
      padding: 8px 0;
      position: relative;
      padding-left: 30px;
    }
    
    .benefits-list li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--primary);
      position: absolute;
      left: 0;
    }
    
    .stars {
      color: #ffc905;
      font-size: 1.2rem;
      margin-bottom: 15px;
    }
    
    @media (max-width: 992px) {
      .title {
        font-size: 2rem;
      }
      
      .signup-card {
        padding: 30px;
      }
    }
   .horoscope-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  height: 100%; /* Ensures equal height in grid */
  transition: all 0.3s ease;
}
.horoscope-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.horoscope-logo {
  width: 70px; /* fixed icon size */
  height: auto;
  margin-bottom: 12px;
}
.horoscope-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #ebbc12;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.horoscope-btn {
  display: inline-block;
  background: #ebbc12;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background 0.3s ease;
}
.horoscope-btn:hover {
  background: #d4a50f;
}
 .our-services img {
      width: 100%;
      height: 120px; /* Fixed height for all images */
      object-fit: cover; /* Keeps proportions and crops nicely */
      border-radius: 8px;
    }

    .our-services a {
      transition: all 0.3s ease;
    }

    .our-services a:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }
    /* horoscope css */

    .zodiac-header {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      padding: 1rem 0;
    }
    
    .zodiac-hero {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: center;
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .zodiac-hero-left {
      flex: 1;
      min-width: 300px;
    }
    
    .zodiac-hero-right {
      flex: 2;
      min-width: 300px;
    }
    
    .zodiac-icon {
      width: 120px;
      height: 120px;
      background: linear-gradient(135deg, #ebbc12 0%, #ebbc12 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }
    
    .zodiac-icon img {
      width: 70%;
      filter: brightness(0) invert(1);
    }
    
   
    
    .zodiac-dates {
      display: inline-block;
      background: linear-gradient(135deg, #ebbc12 0%, #ebbc12 100%);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-weight: 600;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
    }
    
    .lead {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #5a5a5a;
    }
    
    .zodiac-features {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .feature-card {
      background: white;
      border-radius: 12px;
      padding: 1.5rem 1rem;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      border: 1px solid rgba(255, 62, 62, 0.1);
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
      border-color: rgba(255, 220, 62, 0.3);
    }
    
    .feature-card i {
      font-size: 1.75rem;
      color: #ebbc12;
      margin-bottom: 1rem;
    }
    
    .feature-card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    
    .feature-card p {
      font-size: 0.85rem;
      color: #5a5a5a;
      margin-bottom: 0;
    }
    
    .section-title {
      font-weight: 700;
      color: #ebbc12;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(135deg, #ebbc12 0%, #ebbc12 100%);
      border-radius: 3px;
    }
    
    .zodiac-sign-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
    }
    
    .zodiac-sign-icon img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 0.75rem;
      transition: transform 0.3s ease;
    }
    
    .zodiac-sign-icon:hover img {
      transform: scale(1.1);
    }
    
    .zodiac-text-fix {
      font-weight: 600;
      color: #2a2a2a;
      font-size: 0.9rem;
      text-align: center;
    }
    
    .zodiac-sign-icon:hover .zodiac-text-fix {
      color: #ebbc12;
    }
    
    @media (max-width: 768px) {
      .zodiac-hero {
        flex-direction: column;
        text-align: center;
      }
      
      .zodiac-icon {
        margin-left: auto;
        margin-right: auto;
      }
      
      .zodiac-dates {
        margin-left: auto;
        margin-right: auto;
      }
      
      .zodiac-features {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      }
    }


      :root {
    --vedic-gold: #d4af37;
    --vedic-purple: #ab0907;
    --vedic-bg: linear-gradient(135deg, #ffffff, #ffffff);
    --vedic-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  }

  .container-main {
    background: var(--vedic-bg);
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--vedic-shadow);
  }

  /* Decorative Patterns */
  .vedic-pattern {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
  }
  .pattern-1 {
    top: 20px;
    left: 20px;
    width: 80px;
  }
  .pattern-2 {
    bottom: 20px;
    right: 20px;
    width: 120px;
  }

  /* Header */
  .kundli-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--vedic-purple);
    margin-bottom: 15px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
  }
  .kundli-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
  }
  .kundli-image {
    max-width: 320px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 4px solid var(--vedic-gold);
    transition: transform 0.3s ease;
  }
  .kundli-image:hover {
    transform: scale(1.05);
  }

  /* Features Grid */
  .kundli-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
 .kundli-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        padding: 25px;
    }
   
    .form-label {
        font-weight: 500;
    }
    .kundli-submit {
        background: #ab0907;
        color: #fff;
        border: none;
        padding: 12px 25px;
        border-radius: 8px;
        font-size: 1.1rem;
        transition: 0.3s;
    }
    .kundli-submit:hover {
        background: #000000;
    }
	
	.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    font-size: 40px;
    transition: all 0.3s ease-in-out;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}

		
		 .chat-button-container {
      position: fixed; bottom: 20px; right: 20px;
      z-index: 1000; display: flex; align-items: center; gap: 15px;
    }
    .phone-number {
      background: white; padding: 10px 15px; border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1); font-weight: 600; color: #d4af37;
      display: flex; align-items: center; gap: 8px; transition: all 0.3s ease;
    }
    .phone-number:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
    .chat-btn {
      background: linear-gradient(135deg, #d4af37, #d4af37);
      border: none; color: white; width: 60px; height: 60px;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: all 0.3s ease;
      position: relative; overflow: hidden;
    }
    .chat-btn:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.25); }
    .chat-btn:active { transform: scale(0.95); }
    .chat-btn i { font-size: 1.5rem; }
    .pulse-ring {
      content: ''; position: absolute; width: 100%; height: 100%;
      border: 2px solid #d4af37; border-radius: 50%;
      animation: pulse 2s infinite; opacity: 0;
    }
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.8; }
      100% { transform: scale(1.5); opacity: 0; }
    }
    /* Chat window */
    .chat-window {
      position: fixed; bottom: 90px; right: 20px;
      width: 350px; height: 450px; background: white;
      border-radius: 15px; box-shadow: 0 5px 35px rgba(0,0,0,0.2);
      z-index: 1001; display: none; flex-direction: column; overflow: hidden;
    }
    .chat-header {
      background: linear-gradient(135deg, #d4af37, #d4af37);
      color: white; padding: 15px; display: flex; align-items: center; justify-content: space-between;
    }
    .chat-body {
      flex: 1; padding: 15px; overflow-y: auto; background: #f8f9fa;
      display: flex; flex-direction: column;
    }
    .chat-footer { padding: 15px; border-top: 1px solid #eee; background: white; }
    .message {
      max-width: 80%; padding: 10px 15px; border-radius: 18px;
      margin-bottom: 10px; position: relative;
    }
    .received { background: #e5e5ea; align-self: flex-start; border-bottom-left-radius: 5px; }
    .sent { background: linear-gradient(135deg, #d4af37, #d4af37); color: white;
      align-self: flex-end; border-bottom-right-radius: 5px; margin-left: auto; }
    .close-btn { background: none; border: none; color: white; font-size: 1.2rem; }
    @media (max-width: 576px) {
      .chat-window { width: 300px; right: 10px; }
    }