:root {
    --blue-bahari: #0077b6;
    --teal-health: #0ea5e9;
    --dark-cool: #1e293b;
    --light-bg: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-cool);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Base Styles */
p {
    line-height: 1.7;
}

.text-muted {
    color: #64748b !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--blue-bahari);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #023e8a;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 2px solid var(--blue-bahari);
    color: var(--blue-bahari);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--blue-bahari);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Cards & Sections */
.bg-light-section {
    background-color: #f1f5f9;
}

.service-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Custom Stunning Image Wrapper */
.img-stunning {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

.img-stunning img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card:hover .img-stunning img {
    transform: scale(1.05);
}

/* Form Styles */
.form-control:focus, .form-select:focus {
    border-color: var(--teal-health);
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.15);
}

/* Floating Animations */
.d-flex.position-fixed a {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.d-flex.position-fixed a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}