/* ==========================================================================
   RAYMINDS IT - CORPORATE THEME
   ========================================================================== */

:root {
  /* Corporate Colors */
  --corp-blue: #4caf50;
  --corp-blue-dark: #388e3c;
  --corp-grey: #f7f9fa;
  --top-bar-bg: #333333;

  --text-main: #2A2A2A;
  --text-muted: #666666;
  --border-light: #E0E0E0;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.3s ease;
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFF;
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #222222;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--corp-blue);
  color: #FFFFFF;
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0 40px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item i {
  margin-right: 5px;
}

.top-bar-right a {
  color: #FFFFFF;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.top-bar-right a:hover {
  opacity: 1;
}

.callback-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.85rem;
}

/* ==========================================================================
   MAIN NAVBAR
   ========================================================================== */
.corp-navbar {
  background: #333;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.corp-logo {
  background: #333;
  padding: 15px 40px;
  margin: -15px 0 -15px -40px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0 40px;
}


.navbar-logo {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(-2px 2px 3px rgba(0, 0, 0, 0.8));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--corp-blue);
}

.nav-links a.active {
  color: var(--corp-blue);
  font-weight: 700;
  border-bottom: 2px solid var(--corp-blue);
  padding-bottom: 2px;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: #FFFFFF;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--corp-blue);
  color: #FFFFFF;
  border: 1px solid var(--corp-blue);
}

.btn-primary:hover {
  background: var(--corp-blue-dark);
  border-color: var(--corp-blue-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid #999999;
}

.btn-secondary:hover {
  background: #f0f0f0;
  border-color: #666;
}

.btn-block {
  display: block;
  width: 100%;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.text-blue {
  color: var(--corp-blue) !important;
}

.text-blue:hover {
  background-color: #f7f7f7 !important;
  border-color: transparent !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.corp-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

/* Dark left gradient overlay for text readability */
.corp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: -1;
}

.hero-content {
  width: 50%;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.hero-cta .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

/* Dots */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: var(--corp-blue);
}

/* ==========================================================================
   SECTIONS & CARDS
   ========================================================================== */
.corp-section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--corp-grey);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.corp-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-fast);
}

.corp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Icons */
.icon-circle {
  font-size: 2rem;
  margin-bottom: 15px;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--corp-blue);
  margin-bottom: 20px;
}

/* Stats */
.stats-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
}

.stat-box h3 {
  font-size: 2.5rem;
  color: var(--corp-blue);
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* Portfolio */
.portfolio-card {
  padding: 0;
  overflow: hidden;
}

.portfolio-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border-light);
}

.portfolio-full {
  grid-column: 1 / -1;
}

.portfolio-full .portfolio-img {
  height: 350px;
  background-position: top center;
}

.portfolio-info {
  padding: 25px;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.tags {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.tags span {
  font-size: 0.75rem;
  background: var(--corp-grey);
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  text-align: center;
  position: relative;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0;
  color: #222;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  text-align: left;
  margin: 25px 0;
}

.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--corp-blue);
}

.pricing-card.featured {
  background: var(--corp-blue);
  color: #FFFFFF;
  transform: scale(1.05);
}

.pricing-card.featured .price {
  color: #FFFFFF;
}

.pricing-card.featured .pricing-features li i {
  color: #FFFFFF;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* ==========================================================================
   TECH STACKS SECTION
   ========================================================================== */
.tech-stacks-section {
  background-color: var(--corp-grey);
  color: var(--text-main);
  padding: 80px 0 100px;
}

.tech-header {
  text-align: center;
  margin-bottom: 50px;
}

.tech-header h2 {
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tech-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.tech-card {
  color: #222;
  width: calc(25% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  transition: transform 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
}

.tech-card i {
  font-size: 55px;
  margin-bottom: 15px;
}

.tech-card span {
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

/* Contact Section Styles */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-col-right {
  display: flex;
  flex-direction: column;
}

.contact-form-container {
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--corp-blue);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(37, 169, 224, 0.1);
}

.error-text {
  display: block;
  color: #ea4335;
  font-size: 0.85rem;
  margin-top: 5px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  height: 0;
}

.error-text.visible {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin-top: 8px;
}

.form-group input.input-error,
.form-group textarea.input-error {
  border-color: #ea4335;
  background-color: #fffbfa;
}

.form-group input.input-error:focus,
.form-group textarea.input-error:focus {
  box-shadow: 0 0 0 3px rgba(234, 67, 53, 0.1);
}

/* Removed obsolete .contact-info-grid */

.info-card-horizontal {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 25px;
  gap: 20px;
}

.icon-box {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #222;
}

.info-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PRICING iPHONE MOCKUP
   ========================================================================== */
.pricing-devices-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.iphone-frame {
  width: 320px;
  height: 650px;
  background: #111;
  border-radius: 50px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 0 0 2px #d1d1d6;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.iphone-frame.featured-device {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(40, 116, 240, 0.25), inset 0 0 0 2px #d1d1d6;
  z-index: 5;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background: #f0f0f5;
  border-radius: 38px;
  overflow-y: auto;
  position: relative;
  padding: 40px 15px 30px;
  /* hide scrollbar */
  scrollbar-width: none;
}

.iphone-screen::-webkit-scrollbar {
  display: none;
}

.dynamic-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.ios-home-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: #111;
  border-radius: 10px;
  margin: 20px auto 0;
}

/* ==========================================================================
   RESPONSIVE & MOBILE REORDERING
   ========================================================================== */
/* Main Wrapper configured as Flex to support order manipulation */
.content-wrapper {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1100px) {
  .corp-hero::before {
    width: 70%;
  }

  .hero-content {
    width: 60%;
  }
}

@media (max-width: 991px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .contact-info-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-split {
    grid-template-columns: 1fr;
  }

  .top-bar-left {
    display: none;
  }
}

@media (max-width: 768px) {

  /* Flexbox Vertical Reordering Logic for Mobile Views only */
  #home {
    order: 1;
  }

  /* Driven By Innovation — position 2, right after Home */
  #about {
    order: 2;
  }

  #services {
    order: 3;
  }

  #portfolio {
    order: 4;
  }

  #pricing {
    order: 5;
    margin-top: 0;
    padding-top: 40px;
  }

  #tech-stacks {
    order: 6;
  }

  #contact {
    order: 7;
  }

  /* Adjust Components for Mobile */
  .top-bar {
    display: none;
  }

  /* Hide entire top bar on small mobile if needed, or keep right side */

  .nav-container,
  .top-bar-container {
    padding: 0 20px !important;
  }

  .corp-navbar {
    background: #333;
  }

  .nav-toggle {
    color: #FFFFFF;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: auto;
    padding: 20px 0;
    background: #333;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 15px;
    transition: var(--transition-fast);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .corp-hero {
    height: auto;
    padding: 80px 0;
  }

  .corp-hero::before {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    justify-content: center;
  }

  .pricing-grid,
  .pricing-devices-grid,
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-row,
  .contact-form-split {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  /* Services / About: single column on mobile */
  .card-grid-4,
  .card-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* Portfolio grid: single column on small screens */
  .card-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .tech-card {
    width: calc(50% - 20px);
  }

  .pricing-devices-grid {
    flex-direction: column;
    text-align: center;
  }

  .iphone-frame.featured-device {
    transform: scale(1);
  }

  .iphone-frame {
    width: 290px;
    height: 580px;
  }

  .stats-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 10px;
    text-align: center;
  }

  .stat-box {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 400px) {
  .iphone-frame {
    width: 270px;
    height: 530px;
  }

  .iphone-screen {
    padding: 30px 10px 20px;
  }

  .iphone-screen .price {
    font-size: 2rem !important;
  }

  .iphone-screen .pricing-features {
    margin-top: 20px !important;
  }

  .tech-card {
    width: calc(50% - 20px);
  }
}

/* ==========================================================================
   LOADING OVERLAY & TOASTER
   ========================================================================== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(37, 169, 224, 0.2);
  border-top: 4px solid var(--corp-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--corp-blue);
}

.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 300px;
  transform: translateX(120%);
  animation: toastSlideIn 0.5s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.hiding {
  animation: toastSlideOut 0.5s forwards ease-in-out;
}

@keyframes toastSlideIn {
  from {
    transform: translateX(120%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

.toast-icon {
  font-size: 1.5rem;
}

.toast.success {
  border-left: 5px solid #34a853;
}

.toast.success .toast-icon {
  color: #34a853;
}

.toast.error {
  border-left: 5px solid #ea4335;
}

.toast.error .toast-icon {
  color: #ea4335;
}

.toast-content h4 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: #222;
}

.toast-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MOBILE FOOTER CONTACT
   ========================================================================== */
.mobile-footer-contact {
  display: none;
  margin-bottom: 20px;
}

.mobile-footer-contact p {
  margin: 8px 0;
  color: var(--text-main);
  font-size: 0.95rem;
}

.mobile-footer-contact i {
  color: var(--corp-blue);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .mobile-footer-contact {
    display: block;
  }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.corp-footer {
  background-color: #ffffff;
  color: #000000;
  padding: 40px 0 30px;
}

.corp-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.corp-footer .mobile-footer-contact {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.corp-footer .mobile-footer-contact p {
  color: #000000;
}

.corp-footer .mobile-footer-contact i {
  color: var(--corp-blue);
}

.whatsapp-btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background-color: #25D366;
  /* WhatsApp Green */
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.whatsapp-btn-full i {
  color: #ffffff !important;
  font-size: 1.3rem;
  margin-right: 0 !important;
}

.whatsapp-btn-full:hover {
  background-color: #20bd5a;
  transform: translateY(-2px);
}

/* ==========================================================================
   LIVE INDICATOR
   ========================================================================== */
.live-indicator-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background-color: #25D366;
  /* Green */
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-green 1.5s infinite;
}

.live-text {
  color: #25D366;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Status Variants */
.live-dot.development {
  background-color: #fbbc05;
  /* Yellow */
  box-shadow: 0 0 0 0 rgba(251, 188, 5, 0.7);
  animation: pulse-yellow 1.5s infinite;
}

.live-text.development {
  color: #fbbc05;
}

@keyframes pulse-yellow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(251, 188, 5, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(251, 188, 5, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(251, 188, 5, 0);
  }
}

.live-dot.beta {
  background-color: #4285f4;
  /* Blue */
  box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.7);
  animation: pulse-blue 1.5s infinite;
}

.live-text.beta {
  color: #4285f4;
}

@keyframes pulse-blue {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(66, 133, 244, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(66, 133, 244, 0);
  }
}