:root {
        --accent-color: #23BABF;
        --bs-dark: #072c46;
     }
    .offer_box {
      background: #ffffff;
      border-radius: 20px;
      padding: 30px;
      transition: 0.3s;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      height: 100%;
      border: 2px solid #f5f5f5;
    }
    .offer_box:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    .offer_icon {
      font-size: 45px;
      color: var(--accent-color);
      margin-bottom: 15px;
    }
    /* Why Choose Us Custom Design */
.why_choose_custom {
  background-color: #d7f3ee;
  border-radius: 0;
}

.why_image_wrap img {
  max-width: 100%;
  border-radius: 25px;
  animation: floatImg 3s ease-in-out infinite;
}

/* Floating image effect */
@keyframes floatImg {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.why_content {
  padding: 20px;
}

.why_title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--bs-dark);
}

.why_list {
  list-style: none;
  padding: 0;
}

.why_list li {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 500;
}

.why_list i {
  color: var(--accent-color);
  margin-right: 10px;
}

.why_btn {
  margin-top: 20px;
  background: var(--accent-color);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
}

.why_btn:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.hero-title {
            font-size: 45px;      
            line-height: 60px;    
            margin-bottom: 16px;  
            letter-spacing: -1px; 
            font-weight: 600; 
               
        }
 .hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    font-family: 'Axiforma Medium';
    margin-bottom: 30px;
    opacity: 0.9;
}
 
.hero-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
            
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }




  
