:root {

    /* Main Theme Colors */
    --gold: #D4A76A;
    --gold-light: #E5C58C;
    --gold-dim: #B8863B;

    /* Dark Red Backgrounds */
    --dark: #1A0604;
    --dark2: #2A0604;
    --dark3: #4A0903;

    /* Cream Background */
    --cream: #FAF3EC;
    --cream2: #F3E7DB;

    /* Text */
    --text-light: #FFF5EB;
    --text-muted: #D8B38A;

    /* White */
    --white: #FFFFFF;

    /* Borders */
    --border: rgba(212,167,106,0.25);

    /* Extra Reds */
    --red-main: #9D1808;
    --red-dark: #6E0B02;
    --red-bright: #B30000;
}

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Crimson Pro', Georgia, serif;
    background: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--dark2); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }


  /* ===== HERO ===== */
  .hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #1C1206 100%);
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: 64px;
  }

  .hero-bg-wheel {
    position: absolute;
    right: -80px; top: 50%;left: 50%;
    transform: translateY(-50%,-50%);
    width: 600px; height: 600px;
    opacity: 0.5;
    animation: slowSpin 80s linear infinite;
  }

  @keyframes slowSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
  }



  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 40px 40px;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 60px;
  }

  .hero-tagline {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    color: #D4A017;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }

  .hero-title-gold {
    color: #D4A017;
    display: block;
  }

  .hero-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }

  .hero-stats {
    display: flex; gap: 32px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: #D4A017;
    display: block;
  }

  .stat-label {
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
  }

  .stat-divider {
    width: 1px;
    background: var(--border);
  }

  .hero-ctas {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
  }

  .btn-primary {
    background: linear-gradient(135deg,#C00000,#7A0000);
    color:#ffffff;
    padding: 14px 28px;
    border: none; border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  }

  .btn-outline {
    background: white;
    color: black;
    padding: 13px 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: black;
    background: green;
  }

  .hero-image-side {
    position: relative;
    display: flex; justify-content: center;
    opacity: 0;
    animation: fadeLeft 1s ease 0.5s forwards;
  }

  .hero-image-ring {
    width: 350px; height: 30px;top: 50%;left: 50%;
    border-radius: 50%;
    transform:translate(-50%,-50%); 
    border: 1px solid rgba(201,168,76,0.3);
    position: absolute;
    display: flex; align-items: center; justify-content: center;
    margin: auto;
  }

  .hero-image-ring::before {
    content: '';
    position: absolute; inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
  }

  .hero-image-ring::after {
    content: '';
    position: absolute; inset: 24px;
    border-radius: 50%;
    border: 1px dashed rgba(201,168,76,0.1);
    animation: slowSpin 30s linear infinite;
  }

  .hero-pandit-placeholder{
    width: 1000px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pandit-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

  .hero-zodiac-badge {
    position: absolute;
    bottom: -20px; right: 20px;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 80px; height: 80px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-align: center;
  }

  .hero-zodiac-badge .big { font-size: 22px; display: block; margin-bottom: 2px; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
  }

  /* ===== SECTION COMMONS ===== */
  section { padding: 90px 40px; }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4a017;
    text-align: center;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin-bottom: 16px;
  }

  .section-ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-bottom: 50px;
  }

  .section-ornament::before,
  .section-ornament::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--gold));
  }

  .section-ornament::after {
    background: linear-gradient(to left, transparent, var(--gold));
  }

  .ornament-icon { color: var(--gold); font-size: 14px; }

  /* ===== SERVICES ===== */
  .services-section {
    background: var(--cream);
  }

  .services-section .section-title { color: var(--dark); }
  .services-section .section-label { color: var(--gold-dim); }
  .services-section .ornament-icon { color: var(--gold-dim); }
  .services-section .section-ornament::before { background: linear-gradient(to right, transparent, var(--gold-dim)); }
  .services-section .section-ornament::after { background: linear-gradient(to left, transparent, var(--gold-dim)); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .service-card {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.15);
    border-color: var(--gold);
  }

  .service-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
    color: var(--gold-dim);
  }

  .service-name {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }

  .service-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
  }

  .view-all-wrap { text-align: center; }

  .btn-view-all {
    display: inline-flex; align-items: center; gap: 8px;
    background: #d20b0b;
    color: #FFFFFF;
    border: 1.5px solid var(--dark);
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-view-all:hover {
    background: var(--dark);
    color: var(--gold);
  }

  /* ===== ABOUT ===== */
  .about-section {
    background: var(--dark2);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-image {
    position: relative;
  }

  .about-single-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
  .about-image-frame {
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--dark3), var(--dark));
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 120px;
    overflow: hidden;
    position: relative;
  }

  .about-image-frame::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  }

  .play-overlay {
    position: absolute;
    width: 64px; height: 64px;
    background: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.3s;
    color: var(--dark);
  }

  .about-video{
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 25px;
    display: block;
}
.about-image-frame{
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(212,167,106,0.25);
    background: #111;
}
.pandit-name{
    text-align: center;
    margin-top: 18px;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color:white;
    letter-spacing: 1px;
}

.pandit-name::after{
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #D4A017;
    margin: 10px auto 0;
    border-radius: 20px;
}

.about-slider{
    position: relative;
    width: 100%;
    height: 100%;
}

.slide{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition: opacity 1s ease-in-out;

    z-index: 1;
}

.slide.active{
    opacity: 1;
    z-index: 2;
}
  .play-overlay:hover { transform: scale(1.1); }

  .about-gold-accent {
    position: absolute;
    top: -16px; left: -16px;
    width: 80px; height: 80px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    opacity: 0.3;
  }

  .about-content .section-title,
  .about-content .section-label { text-align: left; }
  .about-content .section-ornament { justify-content: flex-start; }
  .about-content .section-ornament::before { display: none; }

  .about-text {
    font-size: 17px;
    color: #D4A017;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .about-feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px;
    color: var(--text-light);
  }

  .about-feature-icon {
    color: var(--gold);
    font-size: 18px;
  }

  /* ===== PROCESS ===== */
  .process-section {
    background: var(--dark);
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
    opacity: 0.3;
  }

  .process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
  }

  .process-step-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--dark2);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s;
    color: var(--gold);
  }

  .process-step:hover .process-step-circle {
    border-color: var(--gold);
    background: rgba(201,168,76,0.1);
    transform: scale(1.1);
  }

  .process-step-num {
    position: absolute;
    top: -8px; right: -8px;
    width: 22px; height: 22px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
  }

  .process-step-label {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .process-step-title {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
  }

  /* ===== BRANCHES ===== */
  .branches-section {
    background: var(--cream);
  }

  .branches-section .section-title { color: #000000; }
  .branches-section .section-label { color: #000000; }
  .branches-section .ornament-icon { color: var(--gold-dim); }
  .branches-section .section-ornament::before { background: linear-gradient(to right, transparent, var(--gold-dim)); }
  .branches-section .section-ornament::after { background: linear-gradient(to left, transparent, var(--gold-dim)); }

  .branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .branch-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.2);
    transition: all 0.3s;
  }

  .branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  }

  .branch-image {
    height: 180px;
    background: linear-gradient(135deg, #3a2a14, #1a1208);
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
  }

  .branch-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: linear-gradient(135deg,#C00000,#7A0000);
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 1px;
  }

  .branch-info {
    padding: 24px;
  }

  .branch-city {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 6px;
  }

  .branch-city::before { content: '📍'; font-size: 14px; }

  .branch-address {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    display: flex; align-items: flex-start; gap: 6px;
    line-height: 1.5;
  }

  .branch-hours {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 6px;
  }

  .branch-actions {
    display: flex; gap: 10px;
  }

  .btn-small {
    flex: 1;
    padding: 9px 14px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
  }

  .btn-small-outline {
    border: 1.5px solid var(--dark);
    color: #ffffff;
    background: linear-gradient(135deg,#C00000,#7A0000);
  }

  .btn-small-outline:hover { background: black ; color: var(--gold); }

  .btn-small-dark {
    background: transparent;
    border: 1.5px solid var(--dark);
    color: black;
  }

  .btn-small-dark:hover { background: #34d74a; }

  /* ===== TESTIMONIALS ===== */
  .testimonials-section {
    background: var(--dark2);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    position: relative;
    transition: all 0.3s;
  }

  .testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
  }

  .testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px; left: 20px;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
  }

  .testimonial-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px;
  }

  .testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
    font-family: 'Cinzel', serif;
    border: 2px solid var(--gold);
    flex-shrink: 0;
  }

  .testimonial-name {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }

  .testimonial-stars { color: #d4a017; font-size: 20px; letter-spacing: 2px; }

  .testimonial-text {
    font-size: 15px;
    color: white;
    line-height: 1.7;
    font-style: italic;
  }

  /* ── CTA ── */
  .cta-section {
    position: relative;
    background: url(../static/images/bg3.png);
    padding: 64px 40px;
    text-align: center;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: url('') center/cover no-repeat;
    opacity: 0.15;
  }
  .cta-emblem-left, .cta-emblem-right {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    font-size: 120px;
    color: rgba(201,168,76,0.06);
    font-family: serif;
  }
  .cta-emblem-left { left: 40px; }
  .cta-emblem-right { right: 40px; }
  .cta-section .sub-label {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
  }
  .cta-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    position: relative;
  }
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
  }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid;
    transition: all .2s;
    text-decoration: none;
  }
  .cta-btn.primary { background: linear-gradient(135deg,#C00000,#7A0000); color: white; border-color: #D4A017; }
  .cta-btn.primary:hover { transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.5);border-color: #D4A017; }
  .cta-btn.outline-wa { background: white; color: black; border-color: transparent; }
  .cta-btn.outline-wa:hover { background: green;border-color: #D4A017; }
  .cta-btn.outline-call { background: white; color: black; border-color: transparent; }
  .cta-btn.outline-call:hover { background:green;border-color: #D4A017; }


/* ================= WHATSAPP FLOAT ================= */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  z-index: 999;
  text-decoration: none;
  transition: all .3s ease;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}

  /* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

   nav {
      padding: 0 20px;
   }

   /* =================================
      MOBILE NAVBAR FIX
   ================================= */

   .nav-links {

      position: fixed;

      top: 0;
      right: -100%;

      width: 280px;
      height: 100vh;

      background: #1A0604;

      display: flex;

      flex-direction: column;

      align-items: flex-start;

      justify-content: flex-start;

      gap: 0;

      padding-top: 90px;

      transition: .4s ease;

      z-index: 99999;
   }

   .nav-links.active {

      right: 0;
   }

   .nav-links li {

      width: 100%;

      list-style: none;
   }

   .nav-links li a {

      width: 100%;

      display: block;

      padding: 18px 28px;

      color: white;

      border-bottom:
      1px solid rgba(255,255,255,.08);
   }

   /* HERO */

   .hero-content {

      grid-template-columns: 1fr;

      gap: 40px;

      padding: 60px 20px;

      text-align: center;
   }

   section {

      padding: 60px 20px;
   }

   .services-grid {

      grid-template-columns: repeat(2,1fr);
   }

   .about-grid {

      grid-template-columns: 1fr;
   }

   .process-steps {

      grid-template-columns: 1fr;

      gap: 32px;
   }

   .process-steps::before {

      display: none;
   }

   .branches-grid {

      grid-template-columns: 1fr;
   }

   .testimonials-grid {

      grid-template-columns: 1fr;
   }

   .footer-grid {

      grid-template-columns: 1fr;
   }
}

/* =========================================
BRANCH IMAGE
========================================= */

.branch-img{

  width:100%;

  height:100%;

  object-fit:cover;

  border-radius:12px 12px 0 0;

  display:flex;

  background:#f8f5ef;

  object-position:top;
}

/* =========================================
REVIEWS BUTTON
========================================= */

.reviews-btn{

    text-align: center;

    margin-top: 40px;
}

.view-more-btn{

    display: inline-block;

    padding: 14px 34px;

    background: linear-gradient(135deg,#C00000,#7A0000);

    color: white;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    letter-spacing: 0.5px;

    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(255,120,0,0.3);
}

.view-more-btn:hover{

    transform: translateY(-3px);

    background: linear-gradient(135deg,#ff944d,#ff5e14);

    box-shadow: 0 8px 20px rgba(255,120,0,0.4);
}

/* =====================================================
HIDE HERO IMAGE & RINGS
ONLY MOBILE + TABLET
DESKTOP SAFE
===================================================== */

@media screen and (max-width:1024px){

    /* HERO IMAGE HIDE */

    .hero-image,
    .hero-image-wrap,
    .hero-img,
    .hero-right,
    .hero-photo,
    .hero-photo-frame,
    .hero-side-image,
    .hero-image-box,
    .hero-image-container,
    .hero-img-wrap,
    .hero-banner-image,
    .hero-image-side,
    .hero-pandit-placeholder,
    .hero-pandit-img,
    .hero-image-ring,
    .hero-zodiac-badge,
    .hero figure,
    .hero img{

        display:none !important;

        visibility:hidden !important;

        opacity:0 !important;

        width:0 !important;

        height:0 !important;

        max-width:0 !important;

        max-height:0 !important;

        overflow:hidden !important;
    }

    /* HERO RINGS / WHEEL HIDE */

    .hero-ring,
    .hero-bg-wheel,
    .hero-wheel,
    .hero-circle,
    .hero-circle-ring,
    .ring,
    .wheel,
    .circle-bg{

        display:none !important;

        visibility:hidden !important;

        opacity:0 !important;
    }

    /* HERO CONTENT */

    .hero-content{

        width:100% !important;

        max-width:100% !important;

        text-align:center !important;

        align-items:center !important;

        justify-content:center !important;

        margin:auto !important;

        grid-template-columns:1fr !important;
    }

    /* HERO FIX */

    .hero{

        display:flex !important;

        justify-content:center !important;

        align-items:center !important;

        text-align:center !important;
    }
}