body {
    font-family: 'Inter', sans-serif;
    color: #343a40;
    /* Dark gray for text */
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #212529;
    /* Even darker for headings */
}

/* Navbar Styling */
.navbar {
    background-color: #0d2a45 !important;
    /* Dark blue from the image reference */
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fb9d05;
    /* Green highlight on hover/active */
}

.text-primary {
    color: #fb9d05 !important;
}

/* Button Styling */
.btn-primary {
    background-color: #fb9d05;
    /* Green primary button */
    border-color: #fb9d05;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    /* Slightly rounded corners */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover,
.btn-primary.active {
    background-color: #c07a0b !important;
    /* Darker green on hover */
    border-color: #c07a0b !important;
}

.btn-outline-primary {
    color: #fb9d05;
    border-color: #fb9d05;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background-color: #fb9d05 !important;
    color: #ffffff;
    border-color: #fb9d05 !important;
}

/* Hero Banner */
.hero-banner {
    background-image: linear-gradient(rgba(13, 42, 69, 0.4), rgba(13, 42, 69, 0.4)), url('assets/banner.png');
    /* Placeholder image */
    background-size: cover;
    background-position: center;
    padding: 10rem 0;
    color: #ffffff;
    text-align: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-banner p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    color: #e0e0e0;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #212529;
    position: relative;
    /* For underline */
    display: inline-block;
    /* For underline to wrap content */
    width: 100%;
    /* Take full width of parent to center */
}

/* Underline for headings */
.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    /* Small underline width */
    height: 4px;
    background-color: #fb9d05;
    /* Green underline */
    margin: 1rem auto 0 auto;
    /* Center the underline */
    border-radius: 2px;
}

/* Specific alignment for section headings in columns */
.section-heading.text-start::after {
    margin-left: 0;
    /* Align underline to the left */
}


/* About Us Section */
.about-us img {
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Cards */
.service-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1.5rem 1.5rem;
    background-color: #ffffff;
    height: 100%;
    /* Ensure all cards have same height */
    display: flex;
    /* For flex layout inside card */
    flex-direction: column;
    /* Stack content vertically */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.service-card .card-img-top {
    width: 100%;
    height: 200px;
    /* Fixed height for service card images */
    object-fit: cover;
    border-radius: 0.8rem;
    /* Match card border radius */
    margin-bottom: 1.5rem;
}

.service-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #212529;
}

.service-card .card-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Allow text to grow and push button down */
}

/* Why Choose Us */
.why-choose-us .feature-item {
    margin-bottom: 2rem;
}

.why-choose-us .feature-item i {
    font-size: 2.5rem;
    color: #fb9d05;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.why-choose-us .feature-item h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #5a6268;
    margin-bottom: 1rem;
}

.testimonial-card .blockquote-footer {
    color: #7b848c;
    font-size: 0.9rem;
}

.testimonial-card .blockquote-footer cite {
    font-weight: 500;
    color: #343a40;
}

/* Blog Cards */
.blog-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    height: 100%;
    overflow: hidden;
    /* Ensures image corners are rounded */
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    object-fit: cover;
    height: 200px;
    /* Fixed height for blog images */
    width: 100%;
}

.blog-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #212529;
}

.blog-card .card-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* Call to Action (CTA) Section */
.cta-section {
    background-color: #0d2a45;
    /* Dark blue background */
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Footer */
.footer {
    background-color: #0a1f30;
    /* Even darker blue for footer */
    color: #cccccc;
    padding: 4rem 0;
    font-size: 0.95rem;
}

.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer .list-unstyled li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
    display: block;
    /* Make links block level for better spacing */
}

.footer .list-unstyled li a:hover {
    color: #fb9d05;
    /* Green on hover */
}

.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.footer li a {
    transition: 0.5s ease;
}

.footer li a:hover {
    color: #fb9d05 !important;
}

.footer i {
    margin-right: 0.8rem;
    transition: 0.3s ease;
}

.footer i:hover {
    color: #fb9d05;
}

.breadcrumb-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    color: #fff !important;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #fff;
}

.about-cards {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 12px;
    background-color: #fff;
    cursor: pointer;
}

.about-cards:hover {
    background-color: #fb9d05;
    color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-cards:hover p,
.about-cards:hover i {
    color: #fff !important;
}

.service-card {
    /* transition: all 0.3s ease-in-out; */
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #fb9d05;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fb9d05;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: 0.3s;
}

.service-card:hover .icon-circle {
    background: #fff;
    color: #fb9d05;
    border: 2px solid #fb9d05;
}