/* Pastel Color Palette */
  :root {
      --pastel-pink: #FFB6D9;
      --pastel-purple: #D4A5D9;
      --pastel-blue: #B3D9FF;
      --pastel-peach: #FFD4B3;
      --pastel-green: #C8E6C9;
      --pastel-yellow: #FFF8DC;
      --pastel-lavender: #E6D7F0;
      --dark-text: #4A4A4A;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--dark-text);
      line-height: 1.6;
      background-color: #FAFAFA;
      overflow-x: hidden;
  }
  p {
      margin-top: 0;
      margin-bottom: 1rem;
      font-size: 18px;
      font-weight: 500;
  }

  /* Navbar Styling */
  .navbar {
      background: linear-gradient(90deg, #ffffff 0%, #ffffff 20%, #FFE5EC 100%);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      padding: 1rem 0;
  }

  .navbar-brand {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--dark-text) !important;
      letter-spacing: 1px;
  }

  .nav-link {
      color: #8E7AB5;
      font-weight: bold;
      margin: 0 0.5rem;
      transition: all 0.3s ease;
      position: relative;
      font-size: 24px;
  }

  .nav-link:hover {
      color: #E493B3; /* Dusty Pink */
      transform: translateY(-2px);
  }

  .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 3px;
      background: #E493B3;
      transition: width 0.3s ease;
  }

  .nav-link:hover::after {
      width: 100%;
  }
  h1,h2,h3,h4 {
      /*color: var(--pastel-pink) !important;*/
      color: #8E7AB5 !important;
  }
  /* Hero Section */
  .hero {
      /* Background Image setup */
      background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), 
                  url('img_1.webp'); /* Aapki 1920px image ka path */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      
      min-height: 100vh;
      display: flex;
      align-items: center;
      /* Isse sara content right side chala jayega */
      justify-content: flex-end; 
      padding: 60px 8%; /* Right side se thoda gap dene ke liye */
      position: relative;
      overflow: hidden;
  }

  .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      text-align: center;
      animation: slideInUp 1s ease-out;
  }

  /* Heading color - Dark Pastel Purple/Blue */
  .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      color: #5d5675 !important; 
      margin-bottom: 1rem;
      line-height: 1.2;
  }

  /* Subtitle with Pastel Gradient */
  p.hero-subtitle {
      font-size: 2.2rem !important;
      font-weight: 700;
      background: linear-gradient(135deg, #f3a8c3, #a8b6f3);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.5rem;
  }

  /* Description Text */
  .hero p {
      font-size: 1.15rem;
      color: #666;
      margin-bottom: 2rem;
      line-height: 1.6;
  }

  /* Button setup */
  .btn-custom {
      background: linear-gradient(135deg, #f3a8c3, #a8b6f3);
      border: none;
      color: white;
      padding: 15px 45px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(168, 182, 243, 0.3);
  }

  .btn-custom:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 6px 20px rgba(243, 168, 195, 0.4);
      color: white;
  }

  /* Responsive fix for mobile */
  @media (max-width: 768px) {
      .hero {
          justify-content: center;
          text-align: center;
          padding: 20px;
      }
      .hero-content {
          text-align: center;
          background: rgba(255, 255, 255, 0.8); /* Mobile pe text dikhe isliye light background */
          padding: 20px;
          border-radius: 15px;
      }
      .hero h1 { font-size: 2.5rem; }
  }

  /* Section Styling */
  .section {
      padding: 80px 20px;
  }

  .section-title {
      text-align: center;
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 3rem;
      color: var(--dark-text);
      position: relative;
      padding-bottom: 1.5rem;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-purple));
      background: linear-gradient(90deg, #8E7AB5, var(--pastel-purple));
      border-radius: 2px;
  }
  a {
      color:#E493B3;
          transition: all 0.3s ease;
  }
  a:hover{
      color:#E493B3;
  }
  /* Services Section */
  .services-section {
      background: linear-gradient(135deg, #FFF8DC 0%, #FFE5EC 100%);
  }

  .service-card {
      background: white;
      border: none;
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      transition: all 0.4s ease;
      cursor: pointer;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      border-top: 5px solid var(--pastel-pink);
      position: relative;
      overflow: hidden;
  }

  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,182,217,0.2), transparent);
      transition: left 0.6s ease;
  }

  .service-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 15px 40px rgba(255,182,217,0.2);
  }

  .service-card:hover::before {
      left: 100%;
  }

  .service-card:nth-child(2) {
      border-top-color: var(--pastel-purple);
  }

  .service-card:nth-child(3) {
      border-top-color: var(--pastel-blue);
  }

  .service-icon {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .service-card h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--dark-text);
  }

  .service-card p {
      color: #666;
      font-size: 1rem;
      line-height: 1.8;
  }

  /* Package Cards */
  .package-section {
      background: linear-gradient(135deg, #E6D7F0 0%, #D4F1F4 100%);
  }

  .price-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 2rem;
      border-left: 5px solid var(--pastel-pink);
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }

  .price-card h4 {
      color: var(--pastel-pink);
      font-weight: 700;
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }

  .price-amount {
      font-size: 2rem;
      font-weight: 800;
      color: var(--dark-text);
      margin-bottom: 1rem;
  }

  .price-card ul {
      list-style: none;
      margin-bottom: 1.5rem;
  }

  .price-card ul li {
      padding: 0.5rem 0;
      color: #666;
      border-bottom: 1px solid #f0f0f0;
      font-size: 18px;
  }

  .price-card ul li:last-child {
      border-bottom: none;
  }

  .price-card ul li:before {
      content: '✓ ';
      color: var(--pastel-pink);
      font-weight: bold;
      margin-right: 0.5rem;
  }

  /* Steps Section */
  .steps-section {
      background: white;
  }

  .step-card {
      text-align: center;
      padding: 30px;
      background: linear-gradient(135deg, #FFE5EC 0%, #E6D7F0 100%);
      border-radius: 15px;
      margin-bottom: 2rem;
      position: relative;
      box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
  }

  .step-number {
      display: inline-block;
      width: 60px;
      height: 60px;
      background: white;
      color: #d4a5d9;
      border-radius: 50%;
      line-height: 60px;
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 1rem;
      box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
  }

  .step-card h4 {
      color: var(--dark-text);
      font-weight: 700;
      margin-bottom: 1rem;
      font-size: 1.3rem;
  }

  .step-card p {
      color: #666;
      font-size: 18px;
      line-height: 1.7;
  }

  /* Why Choose Us Section */
  .features-section {
      background: linear-gradient(135deg, #FFF8DC 0%, #C8E6C9 100%);
  }

  .feature-item {
      display: flex;
      align-items: center;
      padding: 1.5rem;
      background: white;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
  }

  .feature-item:hover {
      transform: translateX(10px);
      box-shadow: 0 5px 20px rgba(255,182,217,0.2);
  }

  .feature-icon {
      font-size: 2.5rem;
      margin-right: 1.5rem;
      color: var(--pastel-pink);
      min-width: 60px;
  }

  .feature-item h4 {
      color: var(--dark-text);
      font-weight: 700;
      margin-bottom: 0.3rem;
  }

  .feature-item p {
      color: #666;
      margin: 0;
      font-size: 18px;
  }
  .feature-icon svg {
      width: 40px;
      height: 40px;
      margin-right: 15px;
  }

  /* Pastel Colors for each icon type */
  .icon-custom  { fill: #FFD1DC; } /* Pastel Pink */
  .icon-stress  { fill: #B2E2F2; } /* Pastel Blue */
  .icon-quality { fill: #E2CFEA; } /* Pastel Purple */
  .icon-family  { fill: #FFCCBB; } /* Pastel Orange/Peach */
  .icon-location { fill: #C1E1C1; } /* Pastel Green */

  /* Gallery Section */
  .gallery-section {
      background: linear-gradient(135deg, #E6D7F0 0%, #D4F1F4 100%);
  }

  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }

  .gallery-item {
     /* Image ko gradient ke niche dikhane ke liye RGBA use karein */
      background: linear-gradient(
      135deg, 
      rgba(255, 182, 193, 0.2), /* Pastel Pink with 50% transparency */
      rgba(221, 160, 221, 0.2)  /* Pastel Purple with 50% transparency */
      ), 
      url('hb1.jpg');

      /* Baaki zaroori settings */
      background-size: cover;
      background-position: center;
      border-radius: 15px;
      aspect-ratio: 1;
      display: flex;
      /*align-items: center;*/
      justify-content: center;
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      text-align: center;
     /* padding: 2rem;*/
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      color: #c38e84 !important;
      font-weight: bold;
      margin: 0 0.5rem;
      transition: all 0.3s ease;
      text-shadow: 1px 1px 2px #000;
      position: relative;
      font-size: 24px;
      width: 100%;
      background-color: #fff;
      display: block;
      height: auto;
      border-top: 5px solid var(--pastel-pink);
  }
  .gallery-item span{
      width: 100%;
      padding: 14px;
      background-color: #fff;
      display: block;
      transition: all 0.4s ease-in-out;
      color: var(--pastel-pink) !important;
      text-shadow: 1px 1px 2px #000;
  }
  .item-2 {
      background: linear-gradient(135deg, rgba(173, 216, 230, 0.2), rgba(221, 160, 221, 0.2)), url('img2.webp');
       background-size: cover;
      background-position: center;
     
  }

  /* Item 3 - Peach & Pink */
  .item-3 {
      background: linear-gradient(135deg, rgba(255, 218, 185, 0.2), rgba(255, 182, 193, 0.2)), url('img3.jpg');
       background-size: cover;
      background-position: center;
      
  }

  /* Item 4 - Green & Blue */
  .item-4 {
      background: linear-gradient(135deg, rgba(144, 238, 144, 0.2), rgba(173, 216, 230, 0.2)), url('img4.jpg');
        background-size: cover;
      background-position: center;
      
  }

  /* Item 5 - Pink & Peach */
  .item-5 {
      background: linear-gradient(135deg, rgba(255, 192, 203, 0.2), rgba(255, 229, 180, 0.2)), url('img5.jpg');
       background-size: cover;
      background-position: center;
      
  }

  /* Item 6 - Yellow & Pink */
  .item-6 {
      background: linear-gradient(135deg, rgba(255, 255, 224, 0.2), rgba(255, 182, 193, 0.2)), url('img6.jpg');
       background-size: cover;
      background-position: center;
       
  }

  .gallery-item:hover {
      transform: scale(1.05) rotateY(10deg);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      border-top:unset;
  }
  .gallery-item:hover span{
      display: none;
  }
  .navbar-brand img {
      max-width: 170px;
        transition: all 0.4s ease-in-out;
      filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
  }
  
  .gallery-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.2);
      transition: left 0.6s ease;
  }

  .gallery-item:hover::before {
      left: 100%;
  }

  /* About Section */
  .about-section {
      background: linear-gradient(135deg, #FFF8DC 0%, #FFE5EC 100%);
  }

  .about-content {
      background: white;
      padding: 3rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      line-height: 1.9;
  }

  .about-content h3 {
      color: var(--dark-text);
      font-weight: 700;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
  }

  .about-content p {
      color: #666;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
  }

  /* Contact Form Section */
  .contact-section {
      background: linear-gradient(135deg, #E6D7F0 0%, #D4F1F4 100%);
  }

  .form-container {
      background: white;
      padding: 3rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      max-width: 700px;
      margin: 0 auto;
  }

  .form-group {
      margin-bottom: 1.5rem;
  }

  .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--dark-text);
      font-weight: 600;
      font-size: 0.95rem;
  }

  .form-control {
      border: 2px solid #f0f0f0;
      border-radius: 10px;
      padding: 12px 15px;
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .form-control:focus {
      border-color: var(--pastel-pink);
      box-shadow: 0 0 0 3px rgba(255,182,217,0.1);
  }

  .form-control::placeholder {
      color: #bbb;
  }

  /* Footer */
  footer {
      background: linear-gradient(135deg, #4A4A4A 0%, #2A2A2A 100%);
      color: white;
      padding: 3rem 20px 1rem;
      text-align: center;
  }

  .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      margin-bottom: 2rem;
  }

  .footer-section {
      margin-bottom: 2rem;
  }

  .footer-section h5 {
      color: var(--pastel-pink);
      font-weight: 700;
      margin-bottom: 1rem;
  }

  .footer-section p {
      color: #ddd;
      margin-bottom: 0.5rem;
  }

  .social-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 1.5rem 0;
  }

  .social-links a {
      color: var(--pastel-pink);
      font-size: 1.3rem;
      transition: all 0.3s ease;
      text-decoration: none;
  }

  .social-links a:hover {
      transform: scale(1.2);
      color: white;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255,182,217,0.3);
      padding-top: 1.5rem;
      color: #aaa;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .hero h1 {
          font-size: 2.2rem;
      }

      .hero p {
          font-size: 1rem;
      }

      .section-title {
          font-size: 2rem;
      }

      .service-card {
          padding: 25px;
      }

      .form-container {
          padding: 1.5rem;
      }

      .about-content {
          padding: 1.5rem;
      }
  }

  /* Floating Animation */
  @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
  }

  .floating {
      animation: float 3s ease-in-out infinite;
  }

  /* Pulse Animation */
  @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,182,217,0.7); }
      50% { box-shadow: 0 0 0 10px rgba(255,182,217,0); }
  }

  .btn-custom {
      animation: pulse 2s infinite;
  }
  /* Grid Item styling */
  
  /* Container jo image ko square rakhega */
  .project-box {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1; /* Sabhi images ko square banayega */
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      overflow: hidden;
      display: block;
  }

  /* Overlay effect (Jo text dikhata hai) */
  .filter-grid {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Halka dark effect */
      color: white;
      opacity: 0;
      transition: 0.4s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      text-decoration: none !important;
  }

  .project-box:hover .filter-grid {
      opacity: 1;
  }

  .project_link {
      color: white;
      text-decoration: none;
  }
  
  .project_link:hover {
      color: #f8f9fa;
  }
  /* Testimonial Slider Styles */
  .testimonial-section {
      background: linear-gradient(135deg, #FFE5EC 0%, #E6D7F0 100%);
  }

  
  .header-text h2 {
      font-size: 2.5rem;
      margin-bottom: 5px;
  }

  .header-text p {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 40px;
  }

  .swiper {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
  }

  .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 60%; /* Center slide width */
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      opacity: 0.5; /* Side slides fade */
  }

  /* Focused Slide */
  .swiper-slide-active {
      opacity: 1;
      transform: scale(1.1); /* Zoom effect for active slide */
  }

  .testimonial-card {
      background: #fff;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      width: 90%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .testimonial-card p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #444;
      font-style: italic;
  }

  .footer-caption {
      margin-top: 30px;
      font-size: 1.3rem;
      font-weight: bold;
  }
  .testimonial-card {
      background: white;
      border-radius: 15px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      min-height: 350px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      scale: 0.85;
      opacity: 0.6;
      transition: all 0.4s cubic-bezier(0.1, 0.5, 0.2, 1);
      position: relative;
      border-top: 5px solid var(--pastel-pink);
  }

  .swiper-slide-active .testimonial-card {
      scale: 1;
      opacity: 1;
      box-shadow: 0 15px 40px rgba(255,182,217,0.3);
      border-top: 5px solid #8E7AB5;
  }

  .swiper-slide-next .testimonial-card,
  .swiper-slide-prev .testimonial-card {
      scale: 0.85;
      opacity: 0.6;
  }

  .testimonial-card .stars {
      color: #FFD700;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      letter-spacing: 5px;
  }

  .testimonial-card .testimonial-text {
      color: #666;
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-style: italic;
  }

  .testimonial-card .client-info {
      border-top: 2px solid #f0f0f0;
      padding-top: 1.5rem;
  }

  .testimonial-card .client-name {
      color: var(--dark-text);
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 0.3rem;
  }

  .testimonial-card .client-title {
      color: var(--pastel-pink);
      font-weight: 600;
      font-size: 0.9rem;
  }
   .swiper-pagination {
      bottom: 10px;
  }

  .swiper-pagination-bullet {
      background: #8E7AB5;
      opacity: 0.5;
      width: 10px;
      height: 10px;
      transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
      background: #8E7AB5;
      opacity: 1;
      width: 30px;
      border-radius: 5px;
  }
  /* Mobile Responsive */
  @media (max-width: 768px) {
      .swiper-slide {
          width: 85%;
      }
      .testimonial-card p {
          font-size: 1rem;
      }
  }
  .purple-title {
      color: #8E7AB5 !important;
  }
  .purple-title.section-title::after {
      background: linear-gradient(90deg, #8E7AB5, var(--pastel-purple));
  }
  /* Full Screen Loader Wrapper */
  #loader-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* Subtle pastel background to make balloons pop */
      background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
          background: linear-gradient(135deg, #FFF8DC 0%, #FFE5EC 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  }

  .balloon-container {
      display: flex;
      gap: 20px;
      margin-bottom: 25px;
  }

  .balloon {
      width: 45px;
      height: 55px;
      border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
      position: relative;
      box-shadow: inset -5px -5px 10px rgba(0,0,0,0.05);
      animation: float-up 1.8s ease-in-out infinite;
  }

  /* Triangle at bottom */
  .balloon::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 17px;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
  }

  /* Colors from your new Logo */
  .b-purple { background-color: #a37eb8; animation-delay: 0s; } /* Purple shade */
  .b-purple::after { border-bottom: 10px solid #a37eb8; }

  .b-gold { background-color: #d4b47d; animation-delay: 0.3s; }   /* Gold/Tan shade */
  .b-gold::after { border-bottom: 10px solid #d4b47d; }

  .b-pink { background-color: #f2a2c0; animation-delay: 0.6s; }   /* Pink shade */
  .b-pink::after { border-bottom: 10px solid #f2a2c0; }

  .b-white { background-color: #f8f1f1; animation-delay: 0.9s; }  /* Off-white shade */
  .b-white::after { border-bottom: 10px solid #f8f1f1; }

  /* Floating Animation */
  @keyframes float-up {
      0%, 100% { transform: translateY(0) rotate(-3deg); }
      50% { transform: translateY(-25px) rotate(3deg); }
  }

  .loading-text {
      font-family: 'Playfair Display', serif;
      color: #a37eb8; /* Using the purple from logo */
      letter-spacing: 4px;
      font-weight: 700;
      font-size: 1.1rem;
      margin-top: 10px;
      animation: text-glow 1.8s infinite;
  }

  @keyframes text-glow {
      0%, 100% { opacity: 0.4; transform: scale(0.98); }
      50% { opacity: 1; transform: scale(1); }
  }

  /* Hide Class */
  .loader-hidden {
      opacity: 0;
      visibility: hidden;
  }  