:root {
    --brand-orange: #df7a00;
    --brand-dark-gray: #333;
    --brand-light-gray: #f0f0f0;
}
.blog-container {
    padding-right: 15px !important;
    padding-left: 15px !important;
}
/* Section specific styling for the background and overlay */
.latest-news-carousel-section {
    position: relative;
    padding: 80px 0; /* Adjust padding as needed */
    overflow: hidden; /* Important for background image positioning */
    background-color: #f8f9fa; /* Fallback */
    z-index: 1; /* Ensure it stays below anything globally fixed, but above its own content if needed */
}

/* Background image */
.latest-news-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://4295993.fs1.hubspotusercontent-na1.net/hubfs/4295993/newHomepage%20banner.jpg?auto=format&fit=crop'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* Adjust for desired visibility of the image */
    z-index: -1; /* Place behind content */
}

/* Custom section title styles */
.latest-news-carousel-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--brand-dark-gray);
    margin-bottom: 2.5rem;
}

.latest-news-carousel-section .section-title .text-orange {
    color: var(--brand-orange);
}

/* News Card Styling */
.news-card {
    padding: 25px;
    margin: 0;
    height: 310px; /* Ensure consistent height for cards */
    display: flex;
    flex-direction: column;
    /* justify-content: space-between;  Distribute content nicely */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

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

.news-title p {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    height: 80px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
}

.news-title a {
    color: var(--brand-orange);
    text-decoration: none;
}

.news-title p:hover {
    text-decoration: underline;
    color: var(--brand-orange);
}

.news-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.news-summary p{
  font-family: museo_sans300,sans-serif !important; 
  color: #635e5c !important;
  font-size:16px !important; 
  text-align: left !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  flex-grow: 1;
  min-height: 0;
}

/* Owl Carousel Navigation (Arrows) */
.latest-news-carousel-section .owl-nav button.owl-prev,
.latest-news-carousel-section .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-orange) !important;
    width: 45px;
    height: 45px;
    line-height: 30px !important; 
    transition: all 0.3s ease;
    outline: none !important; /* Remove focus outline */
}

.latest-news-carousel-section .owl-nav button.owl-prev:hover,
.latest-news-carousel-section .owl-nav button.owl-next:hover {
    color: #d16b14 !important;
}
.right {
    right: 15px !important;
}
.latest-news-carousel-section .owl-nav button.owl-prev {
    left: -20px; /* Adjust as needed */
}

.latest-news-carousel-section .owl-nav button.owl-next {
    right: -20px; /* Adjust as needed */
}
/* Hide dots if not desired */
.latest-news-carousel-section .owl-dots {
    display: none;
}

/* "See all blogs" button styling */
.see-all-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.see-all-link:hover {
    color: #d97d2d;
    text-decoration: none;
    border-bottom-color: #d97d2d;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .latest-news-carousel-section {
        padding: 50px 0;
    }
    .latest-news-carousel-section .section-title {
        text-align: center !important;
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .news-card {
        min-height: 220px; /* Adjust for smaller screens */
        padding: 20px;
        margin: 5px; /* Less margin on smaller screens */
    }
    .news-title {
        font-size: 1.1rem;
    }
    .news-summary {
        font-size: 0.95rem;
    }
    /* Adjust arrow positioning for mobile if they go off screen */
    .latest-news-carousel-section .owl-nav button.owl-prev {
        left: 5px;
    }
    .latest-news-carousel-section .owl-nav button.owl-next {
        right: 5px;
    }
}

/* Further adjust for very small screens if needed */
@media (max-width: 575.98px) {
    .latest-news-carousel-section .owl-nav button.owl-prev,
    .latest-news-carousel-section .owl-nav button.owl-next {
        font-size: 1.5rem !important;
        width: 35px;
        height: 35px;
        line-height: 20px !important;
        top: 40%; /* Move up slightly to prevent overlap with button */
    }
    .news-card {
        min-height: 200px;
    }
}

{#.upcoming-events-section {
    padding: 4rem 0;
    background-color: #f8f9fa; 
}

.section-title {
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.section-title .text-orange {
    color: #df7a00;
}
.see-all-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.see-all-link:hover {
    color: #d97d2d;
    text-decoration: none;
    border-bottom-color: #d97d2d;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1180px !important;
    }
}
@media (max-width: 991.98px) {
    .container {
        padding-right: 15px !important;
        padding-left: 5px !important;
    }
  .section-title {
    padding: 0 5px;
  }
}

.testimonials{
  background-color: #fff;
	position: relative;
	padding-top: 50px;
  margin-bottom: 0 !important;
	&:after{
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 30%;
		background-color: #fff;
	}
}
.owl-carousel .owl-dot{
  display: none;
} 
.owl-carousel {
    -webkit-tap-highlight-color: #df7900;
    text-align: center;
}
#customers-testimonials .item-details{
  font-family: museo_sans500,sans-serif !important;
  font-size: 1.3rem;
  font-weight: 800;
	text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: 70px;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  }
.blog-post-summary p{
  font-family: museo_sans300,sans-serif !important; 
  color: #635e5c !important;
  font-size:16px !important; 
  text-align:justify !important;
  margin-top: -39px !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: 70px;
  -webkit-line-clamp: 6; 
  -webkit-box-orient: vertical;
}
.item-details{
	background-color: transparent !important;
}
.item-details p a{
  color: #df7a00;
  font-size: 1.099rem;
  line-height: 0 !important;
}
.item-details p a:hover{
  color: #df7900 !important;
  text-decoration: none !important;
}
.owl-carousel .owl-nav [class*='owl-'] {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.owl-carousel .owl-nav [class*='owl-'].disabled:hover {
  background-color: #D6D6D6;
}
.owl-carousel {
  position: relative;
}
{#.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  width: 50px;
  height: 50px;
	line-height: 50px;
	border-radius: 50%;
  position: absolute;
  top: 30%;
	font-size: 3.5em;
  background: #fff;
  color: #df7900;
	border: 1px solid #df7900;
	text-align: center;
}
.owl-carousel .owl-prev {
  left: -70px;
}
.owl-carousel .owl-next {
  right: -70px;
}#}
{#
/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    transform: translateY(-50%);
    font-size: 3.5em; 
    color: #e87817;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    transition: color 0.3s ease;
}
.blogArrow {
  top: 30% !important;
}

.carousel-arrow:hover {
    color: #d16b14;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}
.owl-carousel .owl-stage-outer {
    margin: 0 40px !important;
}
.hs-embed-wrapper{
  display: none !important;
}
.myHide{
  display: none !important;
}
.owl-dots {
    margin-top: 0 !important; 
    margin-bottom: 0 !important; 
    display: none !important;
}
.owl-theme .owl-nav {
    margin-top: 0 !important; 
    margin-bottom: 0 !important; 
}

.see-all-container {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 30px;
}#}