/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Inter:wght@400;500&display=swap');

:root {
    --primary-color: #007bff; /* Blue for the button */
    --secondary-color: #212529; /* Charcoal */
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.split-screen {
    display: flex;
    min-height: 90vh;
}

.split-screen .left, .split-screen .right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.split-screen .left {
    background-color: var(--light-gray);
    /* Placeholder for the image */
}

.split-screen .right {
    flex-direction: column;
    align-items: flex-start;
}

.btn-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3; /* Darker Blue */
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .split-screen {
        flex-direction: column;
        min-height: auto;
    }

    .split-screen .left, .split-screen .right {
        width: 100%;
        min-height: 50vh;
        text-align: center;
        align-items: center;
    }

    .split-screen .right {
        align-items: center;
    }
}

/* 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: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

/* Custom Accent Color */
.btn-accent {
    background-color: #003366;
    color: var(--white);
}

.btn-accent:hover {
    background-color: #002244; /* Darker shade for hover */
    color: var(--white);
}

/* Navbar Link Hover */
.navbar-nav .nav-link:hover {
    color: #003366 !important;
}
