/* Global styles */

:root {
    --primary-color: #f39c12;
    --primary-hover: #e67e22;
    --dark-bg: #2c3e50;
    --light-text: #ecf0f1;
    --dark-text: #222;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    position: relative;
}

/* Common button styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover {
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
    }

/* Common card styles */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

/* Form controls */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
}

/* Text colors */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Utility classes */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .brand-title {
        font-size: 1rem;
    }

    .brand-contact {
        font-size: 0.7rem;
    }

    .brand-logo {
        height: 30px;
    }
}




/* _Layout.cshtml.css */

/* Layout-specific styles */

/* Page Container Structure */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrap {
    flex: 1;
    /* Fills the space between header and footer */
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50; /* Dark Slate Gray */
    padding: 1rem 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo / Branding */
.navbar-brand {
    gap: 0;
}

.brand-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFA726;
}

.brand-contact {
    font-size: 0.75rem;
    color: #fff;
}

/* Navigation Links */
.nav-link {
    color: #ecf0f1 !important; /* Light Gray */
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #f39c12 !important; /* Orange on hover */
    }

    /* Active link */
    .nav-link.active {
        border-bottom: 2px solid #f39c12;
        color: #f39c12 !important;
    }

/* Login Button */
.login-btn {
    background-color: #f39c12;
    color: #fff;
    border: none;
    padding: 7px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .login-btn:hover {
        background-color: #e67e22;
    }

/* WhatsApp Ticker */
.ticker-container {
    width: 100%;
    height: 50px;
    overflow: hidden;
    position: relative;
    background: #f39c12;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
}

.ticker-text {
    position: relative; /* Changed from absolute to relative for removing the animation */
    white-space: nowrap;
    font-size: 18px;
    opacity: 1; /* Always visible */
    /* Remove transform properties to keep it centered */
}

.ticker-text.active {
    /* animation: tickerMove 25s linear forwards; */
    opacity: 1;
}

.ticker-container:hover .ticker-text.active {
    animation-play-state: paused;
}

@keyframes tickerMove {
    from {
        transform: translateX(600%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Modal Styling */
.modal-custom-size {
    max-width: 400px;
}


.whatsapp-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

    .whatsapp-link :hover {
        color: #006400; /* Darker green on hover */
        text-decoration: underline;
    }

.whatsapp-icon {
    vertical-align: middle;
    margin-right: 8px;
}

/* Footer */
footer {
    padding: 1.5rem 0;
    background-color: #2c3e50;
    color: #ecf0f1;
}



