body {
  background-image: url("../images/background.jpeg");
  background-size: cover;
  background-position: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
}
.section-title{
    font-size: 50px;
    text-align: center;
    gap: 1rem;
    margin-bottom: 30px;
}

.custom-navbar {
  padding: 20px 60px;
  background-color: #000;
  text-align: center;
}
.custom-navbar .navbar-brand {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
.custom-navbar .navbar-nav {
  gap: 2rem;
}
.custom-navbar .nav-link {
  font-size: 25px;
  position: relative;
  color: #fff;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 0%;
  background-color: #f8f9fa;
  transition: width 0.4s ease;
}
.custom-navbar .nav-link:hover::after {
  width: 80%;
}
.navbar-nav .dropdown-toggle::after {
  display: none !important;
}
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; 
}
.dropdown-menu {
  background-color: #000;
  border: none;
  transition: all 0.3s ease;
  padding: 10px 0;
}
.dropdown-item {
  font-size: 25px;
  color: #aaa;
  padding: 8px 20px;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  color: #fbfbfb;
  background-color: transparent;
}
video {
  pointer-events: none;      
  user-select: none;           
  -webkit-user-drag: none;     
  object-fit: cover;           
}
.pricing-section h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
}
.pricing-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
}
.card {
      background: white;
      color: black;
      border-radius: 8px;
      overflow: hidden;
      width: 300px;
}
.card-header {
      padding: 20px;
      text-align: center;
}
.basic {
      background: linear-gradient(#d5f1e2, #308d91);
}
.standard {
      background: linear-gradient(#ffd099, #ff4d30);
}
.premium {
      background: linear-gradient(#dec9f4, #5230d5);
}
.card-header h3 {
      margin: 0;
      font-size: 1.5rem;
      font-weight: 600;
}
.card-header p {
      font-size: 2rem;
      margin: 10px 0 0;
      font-weight: bold;
}
.card ul {
      list-style: none;
      padding: 20px;
      margin: 0;
      font-size: 0.95rem;
}
.card ul li {
      margin: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      padding-bottom: 8px;
}
.price-btn{
      border-radius: 10px;
      height: 40px;
      width: 250px;
      background-color: #f8f9fa;
      color: #000;
      border-color: #000 ;
      transition: transform 0.3s;
}
.price-btn:hover{
       background-color: #000;
       color: #f8f9fa;
       border-color: rgb(2, 2, 2);
}
footer {
      background: #1a1a1a;
      padding: 50px 20px 30px;
      color: #dddddd;
}

    .step {
      margin: 30px 0;
      text-align: center;
    }

    .step-number {
      display: inline-block;
      background-color: #007BFF; /* Blue */
      color: white;
      font-size: 24px;
      font-weight: bold;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      margin-bottom: 10px;
    }

    .step-text {
      font-size: 18px;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }
footer h2{
  font-size: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}    
.footer-column{
        margin: 10px;
}
.footer-column h3 {
      margin-bottom: 15px;
      color: #fff;
}
.footer-column ul {
      list-style: none;
      padding: 0;
}
.footer-column ul li {
      margin-bottom: 10px;
}
.footer-column ul li a {
      text-decoration: none;
      color: #ccc;
      transition: color 0.2s;
}
.footer-column ul li a:hover {
      color: #fefefe;
}
.social-icons a {
      display: inline-block;
      margin-right: 10px;
      color: #ccc;
      font-size: 20px;
      transition: all 0.3s ease;
      margin-bottom: 10px;
}
.social-icons a:hover {
      transform: scale(1.1);
}
.footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 0.9rem;
      border-top: 1px solid #333;
      padding-top: 20px;
      color: #888;
}