/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #ff8c00;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Roboto', sans-serif;
    padding-top: 30px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center;
    background-size: cover;
    color: white;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Buttons */
.btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e67e00;
    border-color: #e67e00;
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .btn {
    animation: fadeIn 0.5s ease-out;
} 

/* Custom CSS */

/* home notice marquee */

@keyframes marqueeDown {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

        /* Floating Social Media & WhatsApp Button Styles */
        .floating-social {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1050;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .floating-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            color: #fff;
            font-size: 1.7rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.18);
            transition: transform 0.2s, box-shadow 0.2s;
            background: #343a40;
            text-decoration: none;
        }
        .floating-social a:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 18px rgba(0,0,0,0.22);
        }
        .floating-social .whatsapp {
            background: #25d366;
        }
        .floating-social .facebook {
            background: #1877f3;
        }
        .floating-social .twitter {
            background: #1da1f2;
        }
        .floating-social .instagram {
            background: #e4405f;
        }
        .floating-social .linkedin {
            background: #0077b5;
        }
        @media (max-width: 575.98px) {
            .floating-social {
                right: 12px;
                bottom: 12px;
                gap: 8px;
            }
            .floating-social a {
                width: 44px;
                height: 44px;
                font-size: 1.3rem;
            }
        }



