body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    will-change: transform;
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    justify-content: center;
}


h1 {
    font-family: 'Nabla', sans-serif;
    font-weight: 400;

    background: linear-gradient(180deg, #ffffff, #faa2af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    -webkit-text-stroke: 0.8px #0a0a0a;

    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.tagline2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;

    background: linear-gradient(
        270deg,
        #ffdd00,
        #ff66cc,
        #ff1493,
        #ffd700,
        #ff66cc
    );

    background-size: 500% 500%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 3s linear infinite;

    margin-top: 1.5px;
}

.tagline2::before {
    content: attr(class); 
    position: absolute;
    top: 2px; 
    left: 2px; 
    z-index: -1;
    color: rgba(0,0,0,0.5); 
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes gradientMove {
    0% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.tagline {
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 2rem);
    margin: 0.2rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.85);
    color: #ffffff;
}

.rate {
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0.3rem 0;
    color: #ffffff;

    text-shadow:
        0 0 5px rgba(255, 215, 0, 0.7),  
        0 0 10px rgba(255, 223, 0, 0.5), 
        3px 3px 6px rgba(0,0,0,0.85);

    animation: pulseRate 1.5s ease-in-out infinite;
}

.last-updated {
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    margin: 0.2rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}


#bg-video {
    will-change: transform;
}



.calculator {
    background: rgba(0,0,0,0.6);
    padding: 25px 20px;
    border-radius: 12px;
    color: #fff;
    max-width: 380px;
    margin: 1rem auto 3rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}



.calculator h2 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    font-size: 1.5rem;
}

.calc-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.calc-row label {
    font-size: 1rem;
    text-align: left;
}


.calc-row input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    transition: 0.2s;
}

.calc-row input:focus {
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.6);
}

.calc-row button {
    width: 100%;
    padding: 10px 0;
    border-radius: 8px;
    border: none;
    background: #1abc9c;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}


.calc-row button:hover {
    background: #16a085;
}


.calc-result {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-top: 0.5rem;
    color: white;
}


.contact-bubbles {
    display: flex;
    justify-content: center;
    gap: 15px;
    grid-template-columns: repeat(2, 200px);
    margin: 2rem auto;
    flex-wrap: wrap;
}


.contact-bubble {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);

    flex: 1 1 calc(50% - 15px); 
    max-width: 200px;     
    text-align: center;  

}


.contact-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}


.contact-bubble.whatsapp { background: #25D366; }
.contact-bubble.tele { background: #0072C6; }
.contact-bubble.teams { background: #6264A7; }


.disclaimer {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ffffff; 
    text-align: center;
    margin: 1rem auto 2rem;
    line-height: 1.4;
    text-shadow:
        0 0 2px rgba(0,0,0,0.8),
        0 0 5px rgba(0,0,0,0.6);
}

.disclaimer p {
    margin: 0.2rem 0;
}

.footer {
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.75;
    margin-bottom: 1rem;

    text-shadow:
        0 0 3px rgba(0,0,0,0.6), 
        0 0 6px rgba(0,0,0,0.4);
}

.contact-icon {
    width: 20px; 
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}



.content {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInContainer 1s ease-out forwards;
}

.content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInItem 0.8s ease-out forwards;
}

.content > *:nth-child(1) { animation-delay: 0.2s; }
.content > *:nth-child(2) { animation-delay: 0.35s; }
.content > *:nth-child(3) { animation-delay: 0.5s; }
.content > *:nth-child(4) { animation-delay: 0.65s; }
.content > *:nth-child(5) { animation-delay: 0.8s; } 

@keyframes fadeInContainer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calculator {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    animation: fadeInCalculator 1s ease-out forwards;
    animation-delay: 0.9s; 
    transition: transform 0.3s ease;
}

.calculator:hover {
    transform: translateY(-3px);
}

@keyframes fadeInCalculator {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-bubbles {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInBubbles 1s ease-out forwards;
    animation-delay: 1.2s;
}

@keyframes fadeInBubbles {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.disclaimer {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInDisclaimer 1s ease-out forwards;
    animation-delay: 1.4s; 
}

@keyframes fadeInDisclaimer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#contact-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}


#contact-bubble {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E6B800, #FFD700);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), 0 0 8px rgba(255, 215, 0, 0.6); 
  transition: transform 0.2s, box-shadow 0.2s;
}

#contact-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.45), 0 0 12px rgba(255, 223, 0, 0.7);
}

#contact-popup {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: rgba(0,0,0,0.85);
  border-radius: 12px;
  padding: 15px 20px;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#contact-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#contact-popup .popup-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
}

#contact-popup a {
  display: flex;
  align-items: center;
  gap: 8px; 
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-icon {
  width: 20px;
  height: 20px;
}

#contact-popup a:hover {
  color: #FFD700; 
}

#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}


.toast {
  background: rgba(0, 0, 0, 0.55); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  min-width: 220px;

  border: 1px solid rgba(255, 215, 0, 0.6); 
  box-shadow: 
    0 0 10px rgba(255, 215, 0, 0.15),
    0 6px 18px rgba(0, 0, 0, 0.4);

  opacity: 0;
  transform: translateX(20px);
  animation: toastIn 0.4s ease forwards;
}

.toast small {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  opacity: 0.7;
  color: #fff;
}

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

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateX(30px);
  }
}

#nimbo-chat-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  font-family: 'Poppins', sans-serif;
}

#nimbo-chat-bubble {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E6B800, #FFD700);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), 0 0 10px rgba(255, 215, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

#nimbo-chat-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.45), 0 0 14px rgba(255, 223, 0, 0.7);
}

.message.user {
  background: linear-gradient(135deg, #E6B800, #FFD700);
  color: black;
  align-self: flex-end;
}

.message.bot {
  background: rgba(255,255,255,0.12);
  color: white;
  align-self: flex-start;
}

.chat-header {
  padding: 10px;
  background: linear-gradient(135deg, #E6B800, #FFD700);
  color: black;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}

#nimbo-chat-popup {
  position: absolute;
  bottom: 65px;
  left: 0;

  width: 360px;
  height: 520px;

  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);

  border-radius: 14px;
  display: none;
  flex-direction: column;

  overflow: hidden;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.5),
    0 0 10px rgba(255, 215, 0, 0.15);

  border: 1px solid rgba(255, 215, 0, 0.2);
}

.chat-header {
  padding: 10px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-weight: 600;
  text-align: center;
}

#nimbo-chat-box {
  flex: 1;
  padding: 10px;

  overflow-y: auto;

  display: flex;
  flex-direction: column;
  gap: 6px;

  font-size: 13px;
  color: white;
}

.chat-input {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.chat-input input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}

.chat-input button {
  padding: 8px 12px;
  border: none;
  background: #0072ff;
  color: white;
  cursor: pointer;
}

.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00ff6a;
  border-radius: 50%;
  margin-left: 6px;
  animation: pulse 1.2s infinite;
}

.online-text {
  font-size: 11px;
  margin-left: 4px;
  opacity: 0.8;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.message {
  padding: 8px 10px;
  border-radius: 10px;
  max-width: 85%;
  word-wrap: break-word;
  font-size: 13px;
  line-height: 1.3;
}

.dots span {
  animation: blink 1.4s infinite;
  font-weight: bold;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}
