/* Custom Styles */
:root {
    /* --primary-color: #ff6f61; Vibrant Coral */
    --secondary-color:#
    --dark-color: #333333;
    --light-color: #f9f9f9;
    --text-color: #212529;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
    color: white;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--secondary-color);
}

.header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-section {
    background:white;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: var(--primary-color);
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-section .btn {
    background-color: #ff6f61;
    color: #f9f9f9;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px #ff6f61;;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-color);
}

.btn-primary {
    background-color: #ff6f61;;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #212529;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}