﻿:root {
    --primary-blue: #1f3c88; /* Deep corporate blue */
    --secondary-blue: #00a8cc; /* Cyan/teal accent */
    --dark: #222831; /* Dark text */
    --light-bg: #f5f7fa; /* Soft background */
    --white: #ffffff;
}
.text-primary {
    color: var(--secondary-blue) !important;
}
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
/* Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    padding: 15px 18px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    /* Pulse Animation */
    .whatsapp-float::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: rgba(37,211,102,0.4);
        animation: pulse 2s infinite;
        top: 0;
        left: 0;
        z-index: -1;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Popup */
.wa-popup {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 260px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: none;
    z-index: 999;
    overflow: hidden;
}

/* Header */
.wa-header {
    background: #25D366;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

/* Body */
.wa-body {
    padding: 15px;
    font-size: 14px;
}

/* Footer */
.wa-footer a {
    display: block;
    text-align: center;
    padding: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 2px solid var(--secondary-blue);
    transition: 0.3s;
}
.navbar-brand img{
    height:60px;
}

.hero {
    background: linear-gradient(45deg, rgba(31,60,136,0.95), rgba(0,168,204,0.85)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.service-card {
    border: none;
    border-radius: 15px;
    transition: 0.4s;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
}
    .btn-primary:hover {
        background: linear-gradient(45deg, var(--secondary-blue), var(--primary-blue));
    }