/* assets/css/style.css */

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
  }
  
  .hero {
    background: linear-gradient(to right, #e50914, #ff4b2b);
  }
  
  .navbar-brand img {
    height: 40px;
    width: auto;
  }
  
  footer a {
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  }
  
  footer a:hover {
    background-color: #ff4b2b;
    color: #fff !important;
    transform: translateY(-1px);
  }
  
  
  body, html {
    height: 100%;
    margin: 0;
    overflow-y: auto;
  }

  
  .page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .content-wrap {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .text-hero {
    color: linear-gradient(to right, #e50914, #ff4b2b);
  }

  .navbar-nav .nav-link {
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active:hover {
    background-color: #ff4b2b;
    color: #fff !important;
    transform: translateY(-2px);
  }
    
.btn-hero {
    background-color: #e50914;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(229, 9, 20, 0.2);
  }
  
  .btn-hero:hover {
    background-color: #ff4b2b; 
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 15px rgba(255, 75, 43, 0.3);
  }

  .btn-sendsms {
    background-color: #e50914;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(229, 9, 20, 0.2);
  }
  
  .btn-sendsms:hover {
    background-color: #ff4b2b;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 15px rgba(255, 75, 43, 0.3);
  }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0; 
}

 /* Gmail-style Email Button */
.btn-email {
  background-color: #fff;
  color: #444; 
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.btn-email:hover {
  background-color: #fce8e6; 
  border-color: #f28b82;    
  color: #222;             
  transform: scale(1.02);
}

/* Telegram Button */
.btn-telegram {
  background-color: #0088cc; 
  color: #fff;
  border: none;
}

.btn-telegram:hover {
  background-color: #007ab8;
  color: #fff;
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn-play-badge {
  display: inline-block;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(229, 9, 20, 0.2);
}

.btn-play-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 75, 43, 0.3);
}

.btn-play-badge img {
  height: 60px;
  width: auto;
  display: block;
  border-radius: 8px;
}



  


  
  
  