 

 
 
 body {
            font-family: 'Prompt', sans-serif;
        }
        .hero-section {
            background: linear-gradient(135deg, #103369 0%, #03539C 100%);
            color: white;
            padding: 80px 0;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: #0078d4;
            margin-bottom: 1rem;
        }
        .card-feature {
            transition: transform 0.3s;
            height: 100%;
           /* border: none;*/
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
			border-color: #FDB731 !important; /* Teams Color */
        }
        .teams-badge {
            background-color: #FDB731; /* Teams Color */
            color: white;
            font-size: 0.8rem;
            padding: 4px 8px;
            border-radius: 4px;
        }
/* Floating Contact Button Styles */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.contact-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

.fab-main {
    background: var(--bs-primary);
    color: white;
    font-size: 1.5rem;
box-shadow:0px 0px 10px rgba(0, 0, 0, 0.3);

}

.fab-main:hover {
    transform: scale(1.1);
    background:  var(--bs-secondary);
}

.fab-item {
    width: 50px;
    height: 50px;
    background: white;
    color: #333;
    font-size: 1.2rem;
}

.fab-item:hover {
    background: #f8f9fa;
}
header .fa
	{
		color: #F3A529;
	}
/* Specific Colors for brands */
.btn-line { background: #00B900;  color:#FFF;}
.btn-line:hover { background: #FFF;  color:#00B900;}
.btn-phone { color: var(--bs-primary); }
.text-red{color : var(--bs-red);}
.btn-linex{ background: #4DC764;}