html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Mega Menu Panel */
/* Mega Menu Container */
@media (max-width: 768px) {
    .mega-menu

{
    flex-direction: column;
}

}
.mega-menu-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}

.mega-menu {
    position: absolute;
    top: 100%; /* display below parent */
    left: 0;
    width: 1000px; /* full viewport width */
    background: #fff;
    z-index: 999;
    display: flex;
    gap: 30px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Individual column */
.mega-menu-section {
    flex: 1;
    min-width: 150px;
}

/* Section titles */
.mega-menu-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

/* Links inside menu */
.mega-menu-items a {
    display: block;
    color: #333;
    padding: 6px 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .mega-menu-items a:hover {
        color: #258cfb;
    }

/* Optional: Light green background */
.bg-light-green {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 1rem;
    color: #163D05;
}

.txt1 {
    display: inline-block;
    animation: zoomText 2s infinite;
    color:coral;
}

@keyframes zoomText {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.30);
    }
}

@import url("https://fonts.googleapis.com/css?family=Nunito+Sans");

.section_b {
    width: 100%;
}

.container_b {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card {
    background: #f9f9f9;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

    .card h3 {
        margin-top: 0;
        font-size: 18px;
        color:white;
    }

    .card p {
        font-size: 14px;
        color: #555;
    }
.link {
    background: transparent;
    color: red;
    text-decoration: none;
    display: inline-block;
}

    .link:hover {
        color: darkred; /* Optional: darker on hover */
    }

.whatsapp_float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

    .whatsapp_float:hover {
        transform: scale(1.1);
    }

    .whatsapp_float img {
        width: 35px;
        height: 35px;
    }

/* Hide on Desktop if needed */
@media screen and (min-width: 768px) {
    .whatsapp_float {
        /* display: none; */ /* uncomment to hide on desktop */
    }
}
