html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #ffffff !important;
    background-image: none !important;
}

/* Prevent content hiding under fixed navbar */
.page-content {
    padding-top: 0;
    flex: 1;
    background-color: #ffffff !important;
    background-image: none !important;
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar .nav-link {
    color: #333 !important;
    margin-left: 10px;
    font-weight: 500;
    transition: 0.3s;
    border-radius: 999px;
    padding: 6px 16px;
    border: 1px solid transparent;
}

.navbar .nav-link:hover {
    border-color: rgba(255,255,255,0.5);
}

.navbar .nav-link.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white !important;
}

/* HERO SECTION */
.hero-section {
    min-height: 90vh;
    background: #ffffff !important;
    background-image: none !important;
    display: flex;
    align-items: center;
    padding-top: 110px;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0b3e91;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
}

/* SECTIONS */
.section-padding {
    padding: 110px 0 50px 0;
}

.section-title {
    font-weight: 600;
    font-size: 2rem;
}

/* SERVICE CARD */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.why-icon {
    font-size: 2.5rem;
    color: #0d6efd;
}

.service-pill {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service-pill-icon {
    color: #0d6efd;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* FOOTER */
.footer-section {
    background: linear-gradient(135deg, #f0f7ff, #e1efff);
    color: #444;
    padding: 60px 0 20px 0;
    margin-top: auto;
    border-top: 1px solid rgba(13, 110, 253, 0.1);
}

.footer-section h5 {
    color: #0b3e91;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #0b3e91;
    padding-left: 5px;
}

hr {
    border-color: rgba(0, 0, 0, 0.08);
}

/* IMAGE HELPERS */
.object-fit-cover {
    object-fit: cover;
}

/* HERO IMAGE ANIMATION */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(13, 110, 253, 0.15));
}

.hero-image-sm {
    max-width: 65%;
    margin: 0 auto;
    display: block;
}

/* COMMITMENT CARDS (inside hero) */
.commitment-card {
    background: white;
    border-radius: 12px;
    padding: 16px 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(13,110,253,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(13,110,253,0.12);
}

.commitment-icon {
    font-size: 1.8rem;
    color: #0d6efd;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-btn-primary {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    background: #0d6efd;
    color: white;
    border: none;
}

.hero-btn-primary:hover {
    background: #0b5ed7;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
    color: white;
}

.hero-btn-outline {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background: transparent;
}

.hero-btn-outline:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-3px);
}

/* GLOBAL SECTION HEADERS */
.about-hero {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    margin-bottom: 2rem;
    text-align: center;
}

.about-badge {
    display: none;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #0b3e91; /* Muted Corporate Blue */
}

/* CUSTOM ALERTS */
.alert {
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.12) !important;
    color: #198754 !important;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.12) !important;
    color: #dc3545 !important;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert-info {
    background-color: rgba(13, 110, 253, 0.12) !important;
    color: #0d6efd !important;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-5px);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}