/* Floating Navbar */
.floating-nav {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 25px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: 0.3s;
}

/* Scroll effect */
.floating-nav.scrolled {
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.18);
}

/* Container */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo img {
    height: 35px;
    width: auto;
    cursor: pointer;
}

/* Contact Button */
.contact-btn {
    background: #0078ff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #005fcc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-logo img {
        height: 30px;
    }

    .contact-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 20px 0;
    letter-spacing: 0.5px;
}

/* VARIABLES */
:root{
  --hero-height: clamp(320px, 40vh, 640px);
}

/* MAIN HERO BOX */
.hero {
  width: 100%;
  margin-top: 20px;
}

.hero-inner{
  position: relative;
  height: var(--hero-height);
  border-radius: 12px;
  overflow: hidden;
  max-height: 300xp;
  background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

/* DARK GRADIENT OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.3);
}

/* CENTERED TEXT + COIN */
.hero-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 1px;
  width: 97%;
}

/* TITLE */
.title{
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

/* COIN + TEXT ROW */
.coin-row{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 40px;
  margin-top: 10px;
  backdrop-filter: blur(4px);
}

/* COIN ANIMATION */
.coin{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 1.5s ease-in-out infinite;
}

.coin-svg{
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.4));
}

/* TEXT NEXT TO COIN */
.small{
  font-size: 12px;
  opacity: 0.9;
  text-transform: uppercase;
}

.action{
  font-size: 16px;
  font-weight: 700;
}

/* KEYFRAME FLOAT */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}
.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: #77e190;
    color: white;
    font-size: 26px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s;
    
    /* NEW: Pulse Glow + Bounce Animation */
    animation: phoneBounce 2.2s ease-in-out infinite,
               phoneGlow 2s ease-in-out infinite;
}

/* Hover Effect */
.floating-phone:hover {
    transform: scale(1.15);
    background: #1f8a39;
}

/* Bounce Animation */
@keyframes phoneBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Glow Animation */
@keyframes phoneGlow {
    0%   { box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); }
    50%  { box-shadow: 0 0 18px rgba(40,167,69,0.9); }
    100% { box-shadow: 0 0 8px rgba(40,167,69,0.5); }
}
