/* Merge buttons, cards, badges, accordions, banners, etc. */





/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
}

/* Primary Buttons */
.btn-primary {
    background-color: #017E80;
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background-color: #019A9E;
}

/* Secondary Buttons */
.btn-secondary {
    background-color: #F05A1A;
    color: #ffffff;
    border: none;
}

.btn-secondary:hover {
    background-color: #FC6900;
}

/* Outlined (Border) Buttons */
.btn-outline {
    background: transparent;
    border: 2px solid;
    padding: 10px 16px;
}

.btn-outline-primary {
    border-color: #017E80;
    color: #017E80;
}

.btn-outline-primary:hover {
    background-color: #017E80;
    color: #ffffff;
}

.btn-outline-secondary {
    border-color: #F05A1A;
    color: #F05A1A;
}

.btn-outline-secondary:hover {
    background-color: #F05A1A;
    color: #ffffff;
}

/* Circular Buttons */
.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #004854;
    color: #ffffff;
    border: none;
}

.btn-circle:hover {
    background-color: #017E80;
}



@media (max-width: 768px) {
    .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  line-height: 15px;
    }


}











/* ==========================
   CONTACT BADGE STYLES
   ========================== */
.contact-badge {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    gap: 10px;
    max-width: 220px;
}
.contact-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.contact-badge img {
    width: 24px;
    height: 24px;
}
.contact-badge span {
    font-size: 0.9rem;
}





/* Sidebar Widget */
.sidebar-widget {
    background-color: #2E1B56;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 320px;
}

.sidebar-widget .widget-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4A2A86;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background 0.3s ease-in-out;
}

.sidebar-widget .widget-link:hover {
    background-color: #5C3A9E;
}

.sidebar-widget .widget-link svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

/* Contact CTA */
.sidebar-widget .contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #ffffff;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-widget .contact-cta a {
    background-color: #017E80;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.3s ease-in-out;
}

.sidebar-widget .contact-cta a:hover {
    background-color: #019A9E;
}






/* ==========================
   CARD STYLES
   ========================== */
:root {
    --primary-color: #01B9BC; /* Teal */
    --secondary-color: #007E80; /* Dark Teal */
    --accent-color: #FC6900; /* Bright Orange */
    --text-color: #ffffff;
    --card-bg-dark: #004854;
    --card-bg-light: #F5F5F5;
}

/* General Card Styling */
.card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    color: var(--text-color);
}

/* packages Package Card */
.card-packages {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: left;
    padding: 20px;
}
.card-packages h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.card-packages p {
    font-size: 0.9rem;
    opacity: 0.8;
}
.card-packages .price {
    font-weight: bold;
    margin-top: 10px;
}
.card-packages .btn {
    background: var(--accent-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s ease;
}
.card-packages .btn:hover {
    background: #d45500;
}

/* profile Profile Card */
.card-profile {
    background: var(--card-bg-dark);
    text-align: center;
    position: relative;
    padding: 20px;
}
.card-profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.card-profile .title {
    font-size: 1.1rem;
    font-weight: bold;
}
.card-profile .badge {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 8px;
}




/* promocard Section */
.promocard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f4f1;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.promocard-content {
    max-width: 500px;
}
.promocard h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 12px;
}
.promocard p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
.promocard-buttons {
    display: flex;
    gap: 12px;
}
.promocard-button {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}
.promocard-button.learn {
    background: #007E80;
    color: white;
}
.promocard-button.learn:hover {
    background: #005a5c;
}
.promocard-button.contact {
    background: #6c5ce7;
    color: white;
}
.promocard-button.contact:hover {
    background: #5944c7;
}
.promocard-image img {
    max-width: 300px;
    border-radius: 12px;
}


.xs-with-img img{
    max-height: 154px;
    object-fit: cover;
}

.btn-weight-500 {
  font-weight: 500;
}









.notification.pink-column-notify {
  background: #f9dbdb;
  border-radius: 10px;
  border: 1px solid #d79d9d;
}



.notification {
  padding: 25px;
}
