    :root {
      --bg-primary: #000;
      --text-primary: #fff;
      --text-secondary: #ccc;
      --accent-glow: rgba(255, 255, 255, 0.8);
    }

    * {
      scroll-behavior: smooth;
    }

body {
  overflow-x: hidden;
}

    /* Main section wrapper */
    .ammavari-product-section {
      padding: 4rem 0 1rem;
      position: relative;
      z-index: 1;
    }

    /* Glass morphism effect for cards */
    .ammavari-glass-card {
      background: rgba(15, 15, 15, 0.7);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 1.8rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ammavari-glass-card:hover {
      border-color: rgba(255, 255, 255, 0.25);
      box-shadow: 0 15px 40px rgba(255, 255, 255, 0.08);
      transform: translateY(-3px);
    }

    /* Left image card with overlay effects */
    .ammavari-image-card {
      border-radius: 1.8rem;
      overflow: hidden;
      position: relative;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
      transition: all 0.5s ease;
      cursor: pointer;
    }

    .ammavari-image-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
      z-index: 2;
      pointer-events: none;
      transition: opacity 0.4s;
    }

    .ammavari-image-card:hover::before {
      opacity: 0;
    }

    .ammavari-image-card img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
      filter: brightness(0.9);
    }

    .ammavari-image-card:hover img {
      transform: scale(1.08);
      filter: brightness(1.15) contrast(1.05);
    }

    .ammavari-image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      z-index: 3;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s ease;
    }

    .ammavari-image-card:hover .ammavari-image-overlay {
      opacity: 1;
      transform: translateY(0);
    }

    .ammavari-image-overlay span {
      color: #fff;
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* Content block enhancements */
    .ammavari-content-block {
      background: rgba(18, 18, 18, 0.75);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      border-radius: 1.8rem;
      padding: 2.5rem 2rem;
      margin-top: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .ammavari-content-block::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .ammavari-content-block:hover {
      background: rgba(25, 25, 25, 0.8);
      border-color: rgba(255, 255, 255, 0.25);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    }

    /* Typing animation heading */
    .ammavari-heading {
      font-weight: 800;
      font-size: 2.2rem;
      letter-spacing: -0.5px;
      color: #fff;
      border-left: 5px solid #fff;
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .ammavari-heading .cursor-blink {
      display: inline-block;
      width: 3px;
      height: 2.2rem;
      background: #fff;
      margin-left: 4px;
      animation: blink 0.8s infinite;
      vertical-align: middle;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }

    /* Description text */
    .ammavari-description {
      color: #d0d0d0;
      line-height: 1.8;
      font-size: 1rem;
      margin-bottom: 0.7rem;
      transition: color 0.3s;
    }

    /* Feature list with icons */
    .ammavari-feature-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 1.5rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
      gap: 0.7rem;
    }

    .ammavari-feature-list li {
      padding: 0.6rem 1rem;
      color: #ccc;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 2.5rem;
      transition: all 0.3s ease;
      border: 1px solid transparent;
      font-size: 0.9rem;
    }

    .ammavari-feature-list li i {
      color: #fff;
      font-size: 0.9rem;
      width: 20px;
      text-align: center;
      transition: transform 0.3s;
    }

    .ammavari-feature-list li:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateX(8px);
      box-shadow: 0 5px 15px rgba(255,255,255,0.1);
    }

    .ammavari-feature-list li:hover i {
      transform: scale(1.2);
    }

    /* Badge pills */
    .ammavari-badge-pill {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 3rem;
      padding: 0.5rem 1.4rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin: 0.3rem;
      font-size: 0.85rem;
      color: #e0e0e0;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255,255,255,0.1);
      transition: all 0.35s;
      cursor: default;
    }

    .ammavari-badge-pill i {
      font-size: 0.8rem;
    }

    .ammavari-badge-pill:hover {
      background: #fff;
      color: #000;
      font-weight: 600;
      border-color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255,255,255,0.2);
    }

    /* Why choose us card */
    .ammavari-why-card {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 1.5rem;
      padding: 1.5rem;
      margin-top: 2rem;
      border: 1px solid rgba(255,255,255,0.08);
      transition: 0.3s;
    }

    .ammavari-why-card:hover {
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.2);
    }

    /* Sidebar product list */
    .ammavari-sidebar {
      background: rgba(12, 12, 12, 0.8);
      backdrop-filter: blur(35px);
      -webkit-backdrop-filter: blur(35px);
      border-radius: 2.5rem;
      padding: 2.5rem 2rem;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
      height: fit-content;
      position: sticky;
      top: 2.5rem;
      transition: all 0.5s ease;
    }

    .ammavari-sidebar:hover {
      border-color: rgba(255, 255, 255, 0.35);
      box-shadow: 0 35px 70px rgba(255, 255, 255, 0.12);
    }

    .ammavari-sidebar-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2.2rem;
      text-align: center;
      letter-spacing: 2px;
      color: #fff;
      position: relative;
      text-transform: uppercase;
    }

    .ammavari-sidebar-title::after {
      content: '';
      display: block;
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, transparent, #fff, transparent);
      margin: 0.9rem auto 0;
      border-radius: 2px;
    }

    /* Sidebar counter */
    .ammavari-sidebar-counter {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 0.9rem;
      color: #aaa;
      background: rgba(255,255,255,0.05);
      padding: 0.5rem;
      border-radius: 2rem;
    }

    .ammavari-sidebar-counter span {
      font-weight: 700;
      color: #fff;
      font-size: 1.2rem;
    }

    /* Product items with enhanced hover */
    .ammavari-product-item {
      display: flex;
      align-items: center;
      padding: 1rem 1.4rem;
      margin-bottom: 0.8rem;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 3.5rem;
      color: #ccc;
      font-weight: 500;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: 1px solid transparent;
      backdrop-filter: blur(4px);
      position: relative;
      overflow: hidden;
    }

    .ammavari-product-item::before {
      content: '';
      position: absolute;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      transition: left 0.5s;
    }

    .ammavari-product-item:hover::before {
      left: 100%;
    }

    .ammavari-product-item:hover {
      background: #fff;
      color: #000;
      transform: translateX(15px);
      border-color: #fff;
      box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
      font-weight: 600;
      padding-left: 2rem;
    }

    .ammavari-product-icon {
      margin-right: 1rem;
      font-size: 1.3rem;
      width: 28px;
      text-align: center;
      color: #fff;
      transition: all 0.3s;
    }

    .ammavari-product-item:hover .ammavari-product-icon {
      color: #000;
      transform: rotate(10deg) scale(1.2);
    }

    .ammavari-product-arrow {
      margin-left: auto;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s;
      color: #000;
      font-size: 0.9rem;
    }

    .ammavari-product-item:hover .ammavari-product-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* Floating scroll indicator */
    .ammavari-scroll-indicator {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(15px);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.2);
      cursor: pointer;
      z-index: 99;
      transition: all 0.4s;
      animation: float 3s ease-in-out infinite;
    }

    .ammavari-scroll-indicator:hover {
      background: #fff;
      color: #000;
      border-color: #fff;
      box-shadow: 0 10px 25px rgba(255,255,255,0.3);
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* Responsive tweaks */
    @media (max-width: 992px) {
      .ammavari-sidebar {
        position: static;
        margin-top: 3rem;
      }
      .ammavari-heading {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 576px) {
      .ammavari-product-section {
        padding: 2.5rem 0.8rem 1rem;
      }
      .ammavari-feature-list {
        grid-template-columns: 1fr;
      }
    }
.ammavari-product-link{
    text-decoration: none;
}

.active-product{
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    transform: translateX(8px);
}

.active-product .ammavari-product-arrow{
    transform: translateX(5px);
}

.ammavari-product-item{
    transition: 0.4s ease;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 576px) {
   .ammavari-sidebar {
    position: static;
    margin-top: 0rem;
   }
  .ammavari-why-card{
margin-top: 1rem;
  }
  .ammavari-feature-list li {
  padding: 0.6rem 0.5rem;
  }
.ammavari-description {
  color: #d0d0d0;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}


.ammavari-content-block {


  padding: 1.7rem 1.7rem;
}
  .ammavari-heading {
    font-size: 1.5rem;
  }

  }
  
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 576px) {
  .ammavari-sidebar-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  }
  .jj{
    margin-top: 25px !important;
  }

  .ammavari-sidebar {
    position: static;
    margin-top: 0rem;

    /* Scrollbar styles */
    max-height: 420px;   /* adjust height */
    overflow-y: auto;
    overflow-x: hidden;

    /* Smooth scrolling */
    scroll-behavior: smooth;
  }

  /* Optional custom scrollbar */
  .ammavari-sidebar::-webkit-scrollbar {
    width: 6px;
  }

  .ammavari-sidebar::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
  }

  .ammavari-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
  }

  .ammavari-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
  }

}

  
      /* ========== call,whatsapp,youtube icons styles ========== */
    :root {
      --whatsapp-green: #25D366;
      --whatsapp-dark: #128C7E;
      --call-blue: #0d6efd;
      --call-purple: #6610f2;
      --shadow-color: rgba(0, 0, 0, 0.15);
    }

    /* ========== ENHANCED CONTAINER ========== */
    .ultimate-contact-container {
      position: fixed;
      bottom: 174px;
      right: 30px;
      z-index: 1050;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
      filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    }

    /* ========== SHARED ICON BASE ========== */
    .ultimate-icon-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      text-decoration: none;
      position: relative;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      cursor: pointer;
      overflow: visible;
      -webkit-tap-highlight-color: transparent;
    }

    .ultimate-icon-link i {
      font-size: 20px;
      position: relative;
      z-index: 3;
      transition: all 0.4s ease;
    }

    /* ========== WHATSAPP – ULTIMATE GLASS NEON MORPH ========== */
    .whatsapp-ultimate-morph {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 2.5px solid rgba(37, 211, 102, 0.6);
      color: var(--whatsapp-green);
      box-shadow: 
        0 0 30px rgba(37, 211, 102, 0.4),
        0 0 60px rgba(37, 211, 102, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
      animation: morphGlow 3s infinite alternate, floatingWp 3s ease-in-out infinite;
    }

    /* Animated gradient ring */
    .whatsapp-ultimate-morph::before {
      content: "";
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, 
        var(--whatsapp-green), 
        #34D399, 
        var(--whatsapp-dark), 
        #6EE7B7, 
        var(--whatsapp-green));
      filter: blur(12px);
      opacity: 0.7;
      z-index: 0;
      animation: rotateGradient 5s linear infinite;
    }

    /* Inner light reflection */
    .whatsapp-ultimate-morph::after {
      content: "";
      position: absolute;
      top: 8px;
      left: 15px;
      width: 18px;
      height: 18px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 50%;
      filter: blur(4px);
      z-index: 2;
      animation: shimmerMove 2.5s ease-in-out infinite;
    }

    .whatsapp-ultimate-morph:hover {
      background: var(--whatsapp-green);
      color: white;
      border-color: white;
      box-shadow: 
        0 0 50px rgba(37, 211, 102, 0.8),
        0 0 100px rgba(37, 211, 102, 0.5),
        0 20px 40px rgba(0,0,0,0.3);
      transform: translateY(-8px) scale(1.12) rotate(5deg);
      animation: none;
    }

    .whatsapp-ultimate-morph:hover i {
      transform: scale(1.15) rotate(-10deg);
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    }

    /* ========== CALL – ULTIMATE COSMIC DIAMOND ========== */
    .call-ultimate-cosmic {
background: linear-gradient(135deg, #002555, #003a7a, #004fa0);
color: white;
border: 2.5px solid rgba(255, 255, 255, 0.5);
box-shadow: 
  0 0 35px rgba(0, 37, 85, 0.6),
  0 0 70px rgba(0, 58, 122, 0.3),
  inset 0 0 30px rgba(255, 255, 255, 0.2);
      position: relative;
      animation: cosmicPulse 2.8s ease-in-out infinite, floatingCall 3.2s ease-in-out infinite 0.5s;
    }

    /* Star particles */
    .call-ultimate-cosmic .star-particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: white;
      border-radius: 50%;
      z-index: 1;
      animation: twinkle 1.5s infinite alternate;
      box-shadow: 0 0 8px white;
    }

    .call-ultimate-cosmic .star-particle:nth-child(1) { top: 12px; left: 18px; animation-delay: 0s; }
    .call-ultimate-cosmic .star-particle:nth-child(2) { top: 40px; left: 12px; animation-delay: 0.4s; width: 3px; height: 3px; }
    .call-ultimate-cosmic .star-particle:nth-child(3) { top: 15px; right: 16px; animation-delay: 0.8s; width: 3.5px; height: 3.5px; }
    .call-ultimate-cosmic .star-particle:nth-child(4) { bottom: 14px; right: 18px; animation-delay: 1.2s; }

    /* Ripple overlay */
    .call-ultimate-cosmic::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 1;
    }

    .call-ultimate-cosmic:hover::after {
      opacity: 1;
    }

    .call-ultimate-cosmic:hover {
      background: linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
      border-color: #ffffff;
      box-shadow: 
        0 0 60px rgba(99, 102, 241, 0.9),
        0 0 100px rgba(139, 92, 246, 0.6),
        0 25px 50px rgba(0,0,0,0.4);
      transform: translateY(-8px) scale(1.12) rotate(-5deg);
    }

    .call-ultimate-cosmic:hover i {
      animation: ringUltimate 0.6s ease-in-out;
      text-shadow: 0 0 20px white;
    }

    /* ========== PULSE RINGS (OUTER) ========== */
    .pulse-ring {
      position: absolute;
      border-radius: 50%;
      border: 2px solid;
      opacity: 0;
      z-index: 0;
      animation: pulseRingOut 2s ease-out infinite;
    }

    .whatsapp-ultimate-morph .pulse-ring {
      border-color: rgba(37, 211, 102, 0.6);
      width: 100%;
      height: 100%;
      animation-delay: 0s;
    }

    .whatsapp-ultimate-morph .pulse-ring:nth-child(2) {
      animation-delay: 0.7s;
    }

    .call-ultimate-cosmic .pulse-ring {
      border-color: rgba(139, 92, 246, 0.6);
      width: 100%;
      height: 100%;
      animation-delay: 0s;
    }

    .call-ultimate-cosmic .pulse-ring:nth-child(2) {
      animation-delay: 0.7s;
    }

    /* ========== STATUS INDICATOR DOT ========== */
    .status-dot {
      position: absolute;
      bottom: 4px;
      right: 4px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2.5px solid white;
      z-index: 5;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .status-dot.online {
      background: #22c55e;
      animation: onlinePulse 2s infinite;
    }

    .status-dot.available {
      background: #3b82f6;
      animation: onlinePulse 2.5s infinite 0.3s;
    }

    /* ========== PREMIUM TOOLTIP ========== */
    .ultimate-tooltip {
      position: absolute;
      right: 78px;
      background: rgba(15, 15, 25, 0.95);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      color: white;
      padding: 10px 20px;
      border-radius: 40px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transform: translateX(12px);
      transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
      box-shadow: 0 8px 25px rgba(0,0,0,0.5);
      pointer-events: none;
      z-index: 20;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .ultimate-tooltip::before {
      content: "";
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 12px;
      height: 12px;
      background: rgba(15, 15, 25, 0.95);
      border-right: 1px solid rgba(255,255,255,0.2);
      border-top: 1px solid rgba(255,255,255,0.2);
    }

    .ultimate-icon-link:hover .ultimate-tooltip {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }

    /* ========== NOTIFICATION BADGE WITH COUNT ========== */
    .notification-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      min-width: 24px;
      height: 24px;
      background: #ff3b30;
      border: 2.5px solid white;
      border-radius: 20px;
      z-index: 6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: white;
      box-shadow: 0 4px 12px rgba(255, 59, 48, 0.5);
      animation: badgeBounce 2s infinite;
      padding: 0 7px;
    }

    /* ========== ANIMATIONS KEYFRAMES ========== */
    @keyframes morphGlow {
      0% { box-shadow: 0 0 30px rgba(37, 211, 102, 0.4), 0 0 60px rgba(37, 211, 102, 0.2), inset 0 0 20px rgba(255,255,255,0.3); }
      100% { box-shadow: 0 0 45px rgba(37, 211, 102, 0.7), 0 0 80px rgba(37, 211, 102, 0.4), inset 0 0 30px rgba(255,255,255,0.5); }
    }

    @keyframes rotateGradient {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes shimmerMove {
      0%, 100% { transform: translate(0, 0); opacity: 0.5; }
      50% { transform: translate(5px, 5px); opacity: 0.9; }
    }

    @keyframes floatingWp {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    @keyframes floatingCall {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-7px); }
    }

    @keyframes cosmicPulse {
      0%, 100% { box-shadow: 0 0 35px rgba(99, 102, 241, 0.6), 0 0 70px rgba(139, 92, 246, 0.3), inset 0 0 30px rgba(255,255,255,0.2); }
      50% { box-shadow: 0 0 55px rgba(99, 102, 241, 0.9), 0 0 90px rgba(139, 92, 246, 0.5), inset 0 0 40px rgba(255,255,255,0.3); }
    }

    @keyframes ringUltimate {
      0% { transform: rotate(0) scale(1); }
      15% { transform: rotate(20deg) scale(1.1); }
      30% { transform: rotate(-15deg) scale(1.15); }
      45% { transform: rotate(10deg) scale(1.1); }
      60% { transform: rotate(-5deg) scale(1.05); }
      100% { transform: rotate(0) scale(1); }
    }

    @keyframes pulseRingOut {
      0% { transform: scale(0.9); opacity: 0.8; }
      100% { transform: scale(1.8); opacity: 0; }
    }

    @keyframes twinkle {
      0% { opacity: 0.4; transform: scale(1); }
      100% { opacity: 1; transform: scale(1.8); }
    }

    @keyframes onlinePulse {
      0%, 100% { box-shadow: 0 0 6px currentColor; }
      50% { box-shadow: 0 0 16px currentColor, 0 0 24px currentColor; }
    }

    @keyframes badgeBounce {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

    /* ========== RESPONSIVE DESIGN ========== */
    @media screen and (max-width: 768px) {
      .ultimate-contact-container {
        bottom: 130px;
        right: 18px;
        gap: 20px;
      }
      .ultimate-icon-link {
        width: 56px;
        height: 56px;
      }
      .ultimate-icon-link i {
        font-size: 24px;
      }
      .ultimate-tooltip {
        right: 70px;
        font-size: 11px;
        padding: 8px 16px;
      }
      .notification-badge {
        min-width: 20px;
        height: 20px;
        font-size: 10px;
        top: -6px;
        right: -6px;
      }
    }

    @media screen and (max-width: 576px) {
      .ultimate-contact-container {
        bottom: 180px;
        right: 14px;
        gap: 16px;
      }
      .ultimate-icon-link {
        width: 50px;
        height: 50px;
      }
      .ultimate-icon-link i {
        font-size: 21px;
      }
      .ultimate-tooltip {
        right: 62px;
        font-size: 10px;
        padding: 6px 12px;
      }
      .status-dot {
        width: 10px;
        height: 10px;
        bottom: 2px;
        right: 2px;
      }
    }

    @media (pointer: coarse) {
      .ultimate-tooltip {
        display: none;
      }
    }


    /* ========== YOUTUBE – ULTIMATE CINEMATIC GLOW ========== */
.youtube-ultimate-glow {
  background: linear-gradient(135deg, #ff0000, #cc0000, #ff3b30);
  color: #ffffff;
  border: 2.5px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 0 35px rgba(255, 0, 0, 0.6),
    0 0 70px rgba(255, 59, 48, 0.35),
    inset 0 0 25px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: visible;
  animation: youtubePulse 3s ease-in-out infinite,
             floatingYoutube 3.5s ease-in-out infinite;
}

/* Rotating glow ring */
.youtube-ultimate-glow::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #ff0000,
    #ff4d4d,
    #ff1a1a,
    #ff6666,
    #ff0000
  );
  filter: blur(12px);
  opacity: 0.75;
  z-index: 0;
  animation: rotateYoutubeRing 6s linear infinite;
}

/* Shine reflection */
.youtube-ultimate-glow::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 14px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.75);
  border-radius: 50%;
  filter: blur(4px);
  z-index: 2;
  animation: youtubeShine 2.8s ease-in-out infinite;
}

.youtube-ultimate-glow:hover {
  background: linear-gradient(135deg, #ff1a1a, #ff4d4d, #ff0000);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow:
    0 0 60px rgba(255, 0, 0, 0.9),
    0 0 100px rgba(255, 59, 48, 0.6),
    0 25px 50px rgba(0,0,0,0.4);
  transform: translateY(-8px) scale(1.12) rotate(5deg);
}

.youtube-ultimate-glow:hover i {
  transform: scale(1.15);
  text-shadow: 0 0 18px rgba(255,255,255,0.9);
}

/* Pulse rings */
.youtube-ultimate-glow .pulse-ring {
  border-color: rgba(255, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.youtube-ultimate-glow .pulse-ring:nth-child(2) {
  animation-delay: 0.7s;
}

/* Status dot */
.youtube-ultimate-glow .status-dot.online {
  background: #ff0000;
  animation: youtubeStatusPulse 2s infinite;
}




/* ========== YOUTUBE ANIMATIONS ========== */

@keyframes youtubePulse {
  0%, 100% {
    box-shadow:
      0 0 35px rgba(255, 0, 0, 0.6),
      0 0 70px rgba(255, 59, 48, 0.35),
      inset 0 0 25px rgba(255,255,255,0.2);
  }
  50% {
    box-shadow:
      0 0 55px rgba(255, 0, 0, 0.95),
      0 0 90px rgba(255, 59, 48, 0.55),
      inset 0 0 35px rgba(255,255,255,0.3);
  }
}

@keyframes floatingYoutube {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes rotateYoutubeRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes youtubeShine {
  0%, 100% {
    transform: translate(0,0);
    opacity: 0.5;
  }
  50% {
    transform: translate(6px,6px);
    opacity: 1;
  }
}

@keyframes youtubeStatusPulse {
  0%, 100% {
    box-shadow: 0 0 6px #ff0000;
  }
  50% {
    box-shadow:
      0 0 16px #ff0000,
      0 0 24px #ff4d4d;
  }
}








/* ========== FACEBOOK – ULTIMATE GLASS NEON MORPH ========== */
.facebook-ultimate-morph {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2.5px solid rgba(24, 119, 242, 0.6);
  color: var(--facebook-blue);
  box-shadow:
    0 0 30px rgba(24, 119, 242, 0.4),
    0 0 60px rgba(24, 119, 242, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
  animation: morphGlow 3s infinite alternate,
             floatingWp 3s ease-in-out infinite;
}

/* Animated gradient ring */
.facebook-ultimate-morph::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--facebook-blue),
    #60A5FA,
    var(--facebook-dark),
    #93C5FD,
    var(--facebook-blue)
  );
  filter: blur(12px);
  opacity: 0.7;
  z-index: 0;
  animation: rotateGradient 5s linear infinite;
}

/* Inner light reflection */
.facebook-ultimate-morph::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 15px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  filter: blur(4px);
  z-index: 2;
  animation: shimmerMove 2.5s ease-in-out infinite;
}

.facebook-ultimate-morph:hover {
  background: var(--facebook-blue);
  color: #fff;
  border-color: #fff;
  box-shadow:
    0 0 50px rgba(24, 119, 242, 0.8),
    0 0 100px rgba(24, 119, 242, 0.5),
    0 20px 40px rgba(0,0,0,0.3);
  transform: translateY(-8px) scale(1.12) rotate(5deg);
  animation: none;
}

.facebook-ultimate-morph:hover i {
  transform: scale(1.15) rotate(-10deg);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* ========== INSTAGRAM – ULTIMATE GLASS NEON MORPH ========== */
.instagram-ultimate-morph {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2.5px solid rgba(225,48,108,0.6);
  color: var(--instagram-pink);
  box-shadow:
    0 0 30px rgba(225,48,108,0.4),
    0 0 60px rgba(131,58,180,0.25),
    inset 0 0 20px rgba(255,255,255,0.3);
  animation: morphGlow 3s infinite alternate,
             floatingWp 3s ease-in-out infinite;
}

/* Animated Instagram Gradient Ring */
.instagram-ultimate-morph::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--instagram-purple),
    var(--instagram-pink),
    var(--instagram-orange),
    var(--instagram-yellow),
    var(--instagram-purple)
  );
  filter: blur(12px);
  opacity: 0.8;
  z-index: 0;
  animation: rotateGradient 5s linear infinite;
}

/* Inner Light Reflection */
.instagram-ultimate-morph::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 15px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  filter: blur(4px);
  z-index: 2;
  animation: shimmerMove 2.5s ease-in-out infinite;
}

.instagram-ultimate-morph:hover {
  background: linear-gradient(
    135deg,
    #833AB4,
    #E1306C,
    #F77737
  );
  color: #fff;
  border-color: #fff;
  box-shadow:
    0 0 50px rgba(225,48,108,0.8),
    0 0 100px rgba(131,58,180,0.5),
    0 20px 40px rgba(0,0,0,0.3);
  transform: translateY(-8px) scale(1.12) rotate(5deg);
  animation: none;
}

.instagram-ultimate-morph:hover i {
  transform: scale(1.15) rotate(-10deg);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}