/* General Styling */
body {
    font-family: Arial, sans-serif; /* Default font */
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Light background */
}

/* Welcome Section Styling */
.welcome-section {
    text-align: center; /* Center-align text */
    color: #fe7600; /* Bright orange text color */
    font-family: Arial, sans-serif; /* Consistent font family */
    font-size: 1.2rem; /* Slightly larger font size */
    padding: 20px;
    margin: 0 auto; /* Center the section horizontally */
}


/* Navbar Background */
.navbar {
    background-color: #48647c; /* Dark blue-gray */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
	padding-right: 315px !important;; /* Adjust this value to move the entire navbar to the left */ 
}

/* Navbar Brand Styling */
.navbar .navbar-brand {
    font-weight: bold;
    color: #e76000; /* Bright orange font color */
    font-size: 1.5rem; /* Adjust brand size */
    text-transform: uppercase;
    padding-left: 10px; /* Add left padding */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition for hover effects */
}

/* Navbar Brand Hover Effect */
.navbar .navbar-brand:hover {
    color: #b9988f; /* Highlight color on hover */
    background-color: transparent; /* No background to maintain style */
}


/* Navbar Links Styling */
.navbar .nav-link {
    color: #e76000; /* Bright orange font color */
    font-size: 1rem;
    text-transform: capitalize;
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Navbar Link Hover Effect */
.navbar .nav-link:hover {
    color: #ffffff; /* Change to white on hover */
    background-color: #b9988f; /* Light tan for hover effect */
    border-radius: 4px; /* Rounded corners on hover */
}

/* Active Nav Link Styling */
.nav-item.active .nav-link {
    font-weight: bold;
    color: #ffffff !important; /* Highlight active link */
    background-color: #e76000 !important; /* Bright orange background */
    border-radius: 4px;
}

/* Main Content Styling */
main {
    text-align: center; /* Center-align main content */
    color: #e76000; /* Bright orange font color */
    font-family: Arial, sans-serif; /* Consistent font family */
    font-size: 1.2rem; /* Slightly larger font size */
    padding: 20px;
    padding-bottom: 60px; /* Add space for fixed footer */
}

/* Hero Section Styling */
.hero-section {
    color: #e76000; /* Set font color to bright orange */
    text-align: center; /* Center-align text */
    font-family: Arial, sans-serif; /* Ensure consistent font family */
    padding: 20px;
    margin: 0 auto; /* Center the section horizontally */
}

/* Hero Section Image Styling */
.hero-section .hero-image {
    height: 400px; /* Set height to 500px */
    width: auto; /* Maintain proportional width */
    display: block; /* Ensure the image is displayed as a block element */
    margin: 0 auto; /* Center the image */
}


/* Footer Styling */
footer {
    background-color: #48647c; /* Match navbar color */
    color: #ffffff; /* White text for contrast */
    padding: 10px 0;
    text-align: center;
    left: 0; /* Align to the left edge */
    bottom: 0; /* Align to the bottom edge */
    width: 100%; /* Span the full width of the page */
    z-index: 1000; /* Ensure it stays above other content */
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    font-size: 0.875rem; /* Smaller font size */
}

/* Claims Section Styling */
.claims-section {
    text-align: left; /* Align text to the left */
    margin: 0 auto; /* Center the section horizontally */
    padding: 20px;
    max-width: 800px; /* Limit the width for readability */
    background-color: #ffffff; /* White background for contrast */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px; /* Rounded corners */
    font-size: 1rem; /* Standard font size */
    color: #333333; /* Dark text for readability */
}

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    list-style-type: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    color: #e76000; /* Bright orange */
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #e76000;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background-color: #e76000; /* Bright orange */
    color: #ffffff; /* White text */
}


/* Footer Links */
footer a {
    color: #d1c0ac; /* Link color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 0.875rem; /* Match footer font size */
}

footer a:hover {
    color: #ffffff; /* Highlight links on hover */
    text-decoration: underline;
}
