/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background for contrast */
}

/* Navbar Styling */
.navbar-nav .nav-link {
    font-weight: bold;
    color: #333; /* Default color for navbar items */
}

.navbar-nav .nav-link:hover {
    color: #f39c12; /* Golden yellow on hover */
}

.navbar-toggler {
    background-color: #f39c12; /* Golden yellow for navbar toggle */
}

.navbar-brand .nav-logo {
    max-width: 150px; /* Adjust logo size */
}

/* Gradient Divider on Hover for Headings */
.cursor-effect {
    position: relative; /* Position relative for the pseudo-element */
    display: inline-block; /* Ensure the element is inline */
}

.cursor-effect::after {
    content: ""; /* Create a pseudo-element */
    display: block; /* Make it a block element */
    height: 4px; /* Height of the divider */
    width: 0; /* Start with zero width */
    background: linear-gradient(to right, #FFD700, #000); /* Gradient from golden yellow to black */
    transition: width 0.3s ease; /* Smooth transition for width */
    margin: 0 auto; /* Center the divider */
}

.cursor-effect:hover::after {
    width: 100%; /* Expand to full width on hover */
}

/* Card Styling */
.service-card {
    background-color: #ffffff; /* Light background */
    color: #333; /* Dark text for better contrast */
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Softer shadow */
    text-align: center;
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Stronger hover effect */
}

/* Font Awesome Icon Styling */
.service-icon {
    font-size: 3rem;
    color: #f5c518; /* Golden yellow */
    margin-bottom: 20px;
}

/* Service Title */
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700; /* Bolder text */
    color: #000; /* Bold black color */
}

/* Paragraph */
.service-card p {
    font-size: 1rem;
    color: #666; /* Darker text for readability */
    margin-bottom: 20px;
}

/* Service Link Styling */
.service-link {
    display: inline-block; /* Ensure the link behaves like a button */
    padding: 10px 20px; /* Add padding for consistent button size */
    background-color: #FFD700; /* Golden yellow background */
    color: #000; /* Text color */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.service-link:hover {
    background-color: #F4C430; /* Darker shade on hover */
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.section-divider {
    width: 50px;
    height: 4px;
    background-color: #f39c12;
    margin: 0 auto;
}

/* Additional Styles for Other Sections */
.bg-light {
    background-color: #f8f9fa !important; /* Light background for sections */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .card-body {
        padding: 20px;
    }

    .card-icon {
        font-size: 3rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 0.9rem;
    }
}