/* Font Face Declarations */
@font-face {
    font-family: 'Sinkin Sans';
    src: url('../../web fonts/sinkinsans_400regular_macroman/SinkinSans-400Regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sinkin Sans';
    src: url('../../web fonts/sinkinsans_600semibold_macroman/SinkinSans-600SemiBold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sinkin Sans';
    src: url('../../web fonts/sinkinsans_700bold_macroman/SinkinSans-700Bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* General Styles */
:root {
    --primary-color: #1B3B72;
    --secondary-color: #6c757d;
    --primary-green: #A9CB58;
    --dark-text: #74736F;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --menu-bg-color: #293B5D;
}

body {
    font-family: 'Sinkin Sans', 'Arial', sans-serif;
    line-height: 2;
    color: var(--dark-text);
}

/* Header Styles */
h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.875rem;
}

h5 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h6 {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.625rem;
}

.blue-text {
    color: var(--primary-color);
}

.green-text {
    color: var(--primary-green);
}

.red-text {
    color: #D9534F;
}

/* Default bold text styling */
strong, b {
    color: var(--primary-color);
    font-weight: 700;
}

.wp-caption-text {
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

/* WordPress Image Alignment Styles */
.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
    max-width: 50%;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
    max-width: 50%;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
    text-align: center;
}

.alignnone {
    margin: 1rem 0;
}

/* Responsive image alignment */
@media (max-width: 768px) {
    .alignleft,
    .alignright {
        float: none;
        margin: 1rem auto;
        display: block;
        max-width: 100%;
    }
}

/* Image sizing */
.wp-caption {
    max-width: 100%;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
}

a {
    color: var(--dark-text);
    font-weight: 600;
}

/* Page Styles */

body.page .site-main {
    background-image: url('../images/graphic_back.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: auto;
}
body.page .site-main article {
    padding: 3rem 0 0 0;
}

/* Remove padding from front page */
body.home .site-main {
    padding: 0;
}

.page-header {
    margin-bottom: 1.5rem;
}

.site-header {
    padding: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.header-logo {
    max-height: 60px;
    width: auto;
    padding: 0.7rem 0;
}

.menu-container {
    background-color: var(--menu-bg-color);
    width: 30%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-container .container {
    width: 100%;
    padding: 0 1rem;
}

.menu-container .navbar {
    padding: 0;
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    margin: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='56' height='40' viewBox='0 0 56 40'%3e%3crect x='6' y='6' width='44' height='5' fill='%23B1CA69'/%3e%3crect x='6' y='18' width='44' height='5' fill='%23B1CA69'/%3e%3crect x='6' y='30' width='44' height='5' fill='%23B1CA69'/%3e%3c/svg%3e");
    width: 2.5em;
    height: 2em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--menu-bg-color);
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.navbar-collapse.show {
    display: block;
}

.navbar-nav {
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

@media (max-width: 991.98px) {
    .menu-container {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .navbar-collapse {
        position: absolute;
        width: 100%;
    }
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--primary-color);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    min-height: 600px;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    background: rgba(27, 59, 114, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(27, 59, 114, 1);
    transform: scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.hero-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .hero-carousel-indicators {
        bottom: 20px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    background-color:#fff; 
    padding: 20px
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color:var(--primary-color);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-section .btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {

    transform: translateY(-2px);
}

.hero-section .btn-contact {
    background-color: #152d5a;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-color: #152d5a;
    color: #fff;
}

.hero-section .btn-contact:hover {
    background-color: #152d5a;
    border-color: #152d5a;
    transform: translateY(-2px);
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Services Bar Section */
.services-bar {
    background-color: rgb(102, 101, 105);
    padding: 0.4rem 0;
    color: white;
}

.services-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-bar-item {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.services-bar-item:first-child,
.services-bar-item:last-child {
    color: #B0CA68;
}

.services-bar-item:not(:last-child) {
    /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
}

@media (max-width: 767.98px) {
    .services-bar .container {
        flex-direction: column;
    }
    
    .services-bar-item {
        padding: 1rem 0;
    }
    
    .services-bar-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.service-card {
    padding: 2rem;
    text-align: center;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-size: 3rem;
}

.service-icon img {
    max-width: 150px;
    height: auto;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
    padding: 0;
    position: relative;
}

.testimonials-header {
    background-color: #2F3E5C;
    padding: 3rem 0;
    text-align: center;
}

.testimonials-title {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.testimonials-carousel {
    position: relative;
    overflow: visible; /* Allow content to show */
    width: 100%;
    background-color: #fff;
    padding: 3rem 0;
    min-height: auto; /* Allow dynamic height based on content */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden; /* Hide inactive slides completely */
}

.testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; /* Show active slide */
    position: relative; /* Allow it to contribute to height */
}

.testimonial-content {
    padding: 1rem 0;
    min-height: auto; /* Allow content to determine height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 0rem;
    font-style: italic;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    flex: 1;
    min-width: 200px;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 1rem;
    color: var(--dark-text);
    margin: 0;
    font-weight: 500;
}

.company-logo {
    flex-shrink: 0;
    max-width: 100%;
}

.logo-img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.btn-more-info {
    background-color: #2F3E5C;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-more-info:hover {
    background-color: #1B3B72;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.testimonials-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.testimonials-prev,
.testimonials-next {
    position: absolute;
    background: rgba(47, 62, 92, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: rgba(47, 62, 92, 1);
    transform: scale(1.1);
}

.testimonials-prev {
    left: 20px;
}

.testimonials-next {
    right: 20px;
}

.testimonials-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.testimonials-indicator {
    width: 12px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #2F3E5C;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-indicator.active {
    background: #2F3E5C;
}

.testimonials-indicator:hover {
    background: rgba(47, 62, 92, 0.5);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {

    .testimonial-author {
        margin-bottom: 1.5rem;
    }
    .testimonials-title {
        font-size: 1.5rem;
    }
    
    .testimonials-carousel {
        padding: 3rem 0; /* Vertical padding */
        min-height: auto; /* Allow dynamic height based on content */
    }
    
    .testimonials-carousel .container {
        padding-left: 4rem; /* Add left padding for prev arrow */
        padding-right: 4rem; /* Add right padding for next arrow */
    }
    
    .testimonial-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .testimonial-content {
        padding: 1rem 0; /* Add vertical padding to content */
        min-height: auto; /* Allow content to determine height */
    }
    
    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .author-info {
        min-width: auto;
    }
    
    .company-logo {
        max-width: 100%;
    }
    
    .logo-img {
        max-height: 50px;
    }
    
    .testimonials-prev,
    .testimonials-next {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-prev {
        left: 10px;
    }
    
    .testimonials-next {
        right: 10px;
    }
    
    .testimonials-carousel-indicators {
        bottom: 15px;
    }
}

/* Testimonials Page Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.testimonial-card .testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-style: italic;
    border: none;
    padding: 0;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial-card .author-info {
    flex: 1;
    min-width: 200px;
}

.testimonial-card .author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-card .author-title {
    font-size: 1rem;
    color: var(--dark-text);
    margin: 0;
    font-weight: 500;
}

.testimonial-card .company-logo {
    flex-shrink: 0;
    max-width: 100%;
}

.testimonial-card .logo-img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.no-testimonials {
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    color: var(--dark-text);
}

/* Responsive adjustments for testimonials page */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card .testimonial-quote {
        font-size: 1rem;
    }
    
    .testimonial-card .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .testimonial-card .author-info {
        min-width: auto;
    }
    
    .testimonial-card .company-logo {
        max-width: 120px;
    }
    
    .testimonial-card .logo-img {
        max-height: 50px;
    }
}

/* Contact Section */
.contact-form label{
    font-weight: normal !important;
    color:#fff !important;
    margin: 0!important;
}

.contact-form input,
.contact-form textarea{
   margin-bottom: 1rem !important;
}

.contact-section button{
    background-color:var(--menu-bg-color) !important;
}

.wpforms-submit {
    background-color: #152d5a !important;
} 

.contact-section .wpforms-container .wpforms-field {
    padding: 0 !important;
}

.contact-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    background-image: url('../images/contact_back.jpg');
    background-size: cover;
    background-position: center;
}

.contact-section .row {
    justify-content: flex-start !important;
}

.contact-form {
    max-width: 85%;
    margin: 0;
}

.contact-section-title {
    font-size: 1.8rem;
    color: #fff;
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    background-color: var(--primary-green);
    color: #fff;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-height: 120px;
    width: auto;
}

.site-footer address {
    font-style: normal;
    line-height: 1.8;
}

.site-footer h5 {
    color: #fff !important;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
        /* Add background image for mobile only */
        background-image: url('../images/graphic_back.png');
        background-position: top right;
        background-repeat: no-repeat;
        background-size: auto;
    }
    
    /* Remove background images from hero slides on mobile */
    .hero-slide {
        background-image: none !important;
    }
    
    /* Remove the white overlay on mobile */
    .hero-slide::before {
        display: none;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-section .btn-primary,
    .hero-section .btn-contact {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .services-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    /* Add more padding to content areas on mobile */
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hero-content {
        padding: 1rem 1.5rem;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
      /*  padding: 2rem; */
    }
}

/* Image Block Section */
.image-block-section {
    width: 100%;
    padding: 0;
    background-color:var(--primary-green);
    background-image: url("../images/graphic_back.png");
    background-repeat: no-repeat;
    background-position: calc(0px - 30px) calc(100% + 80px);
}

.image-block-grid {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px; /* Fixed height instead of aspect ratio */
}

.image-block-left {
    flex: 1.5;
    height: 100%;
    overflow: hidden;
}

.image-block-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.image-block-left img,
.image-block-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-block-left img {
    height: 100%;
}

.image-block-right img {
    height: 50%;
}

/* Image Block Overlays */
.image-block-left,
.image-block-right {
    position: relative;
}

.image-block-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    padding: 15px 25px;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 10;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.image-block-left .image-block-overlay {
    color: black;
    bottom: 20px;
    left: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-block-grid {
        flex-direction: column;
        height: auto;
    }
    
    .image-block-left img,
    .image-block-right img {
        height: auto;
    }
}

.btn-secondary {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    padding: 1.1rem 2.75rem !important;
    font-size: 1.4rem !important;
    transition: all 0.3s ease !important;
    color: #fff !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    height: auto !important;
}

.btn-secondary:hover {
    background-color: #8fb847;
    border-color: #8fb847;
    transform: translateY(-2px);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
textarea {
    border: 1px solid var(--primary-color) !important;
    box-shadow: none;
    color: var(--dark-text) !important;
    border-radius: 0 !important;
}

/* Page Content Background Image */
.page-content {
    background-position: bottom right, 0 -60px;
    background-repeat: no-repeat;
    background-size: 400px auto;
    position: relative;
}


/* Page Featured Image - Position image at bottom of div */
.page-featured-image {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

/* Make right sidebar match height of left content */
.col-lg-4.d-none.d-lg-block {
    display: flex !important;
    align-items: stretch;
}

.page-featured-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
}


/* List Styling */
ul li:not(.nav-item):not(.menu-item) {
    list-style-image: url('../images/bullet.jpg');
    list-style-type: none;
    margin-bottom: 1rem;
}

ol li:not(.nav-item):not(.menu-item) {
    list-style-image: url('../images/bullet.jpg');
    list-style-type: none;
    margin-bottom: 1rem;
}

/* Exclude navigation menus specifically */
.navbar-nav li,
.navbar-nav ul li,
.menu li,
.nav-menu li {
    list-style-image: none !important;
    list-style-type: none !important;
    margin-bottom: 0 !important;
}

/* Page Content Spacing */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child,
.page-content h4:first-child,
.page-content h5:first-child,
.page-content h6:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
} 

.page .col-md-8{
    background-color: rgba(255, 255, 255, 0.47);
}

@media (max-width: 768px) {
    .page .col-md-8{
        background-color: rgba(255, 255, 255, 0.88) !important;
    }
}

/* Unified Page Navigation Styles */
.unified-page-navigation {
    padding: 0 0 2rem 0;
    margin-top: 3rem;
}

.unified-page-navigation .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.unified-page-navigation .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.unified-page-navigation .nav-info {
    flex: 1;
    text-align: center;
}

.unified-page-navigation .nav-info small {
    font-size: 0.875rem;
    font-weight: 500;
}



/* Responsive adjustments for unified page navigation */
@media (max-width: 768px) {
    .unified-page-navigation .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .unified-page-navigation .nav-info {
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .unified-page-navigation .btn-outline-primary {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
} 