/* Global Theme */
body {
    font-family: 'Arial', sans-serif;
    background-color: #F8F9FA; /* Light Neutral Background */
    color: #222222; /* Dark Gray Text */
}

/* Navbar */
.navbar {
    background-color: #006666 !important; /* Teal */
}

.navbar .nav-link {
    color: white !important;
}

.navbar .nav-link:hover {
    color: #33A6A6 !important; /* Lighter teal on hover */
}

/* Hero Section with Background Image */
.hero-section {
    background: url('../images/wrroots.jpg') center/cover no-repeat; /* Ensure correct image path */
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
}

/* Buttons */
.btn-primary {
    background-color: #006666;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #004D4D; /* Darker teal */
}

/* Card Styling */
.card {
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    background-color: white;
    border: none;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    color: #004D4D; /* Darker Teal */
}

/* Panel Image Content */
.panel-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.panel-text {
    max-width: 600px;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .panel-content {
        flex-direction: row;
        align-items: center;
    }
}

/* Footer */
footer {
    background-color: #222222;
    color: white;
    text-align: center;
    padding: 15px 0;
}


