:root {
    --bs-body-font-family: 'Inter', sans-serif;
    --bs-heading-font-family: 'Inter', sans-serif;
    --primary-color: #dc8e1a;
    --primary-hover-color: #dea043;
    --primary-bg-light: rgb(255, 246, 235);
}

/* Carousel Styles */
.carousel-fixed-height {
    height: 540px;
}

.carousel-fixed-height .carousel-inner,
.carousel-fixed-height .carousel-item,
.carousel-fixed-height .carousel-item img {
    height: 100%;
}

.carousel-fixed-height .carousel-item img {
    object-fit: cover;
}

/* Carousel Overlay */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
}

.carousel-caption-custom {
    top: 20px;
}

/* Typography */
h1, h2 {
    font-weight: 700;
}

/* Icons */
#custom-cards .bi {
    font-size: 1em;
}

.icon-lg,
.feature-icon-small {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-lg {
    width: 3.5rem;
    height: 3.5rem;
}

.feature-icon-small {
    width: 3rem;
    height: 3rem;
}

/* Custom Background and Text Colors */
.text-bg-primary {
    background-color: var(--primary-bg-light) !important;
}

.text-primary {
    color: rgb(237, 134, 58) !important;
}

/* Button Styles */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: var(--primary-hover-color);
    --bs-btn-hover-border-color: var(--primary-hover-color);
    --bs-btn-active-bg: var(--primary-hover-color);
    --bs-btn-active-border-color: var(--primary-hover-color);
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

/* Card Styles */
.card {
    border: none !important;
}

.card-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-gradient-overlay {
    position: relative;
    z-index: 1;
}

.card-gradient-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%);
    z-index: 2;
    border-radius: inherit;
}

.card-gradient-overlay .d-flex.flex-column {
    position: relative;
    z-index: 3;
}

/* Link Styles */
a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--primary-color);
}

/* Utilities */
.fill-primary {
    fill: #f5920c !important;
}

.opacity-2 {
    opacity: 0.2 !important;
}

.card .text-body-secondary {
    font-size: 0.9rem;
}

.bg-light.card-img.d-flex.align-items-center.justify-content-center .btn {
    position: static;
    transform: none;
}

/* Navbar */
.navbar-nav {
    font-weight: 500;
}
.carousel-caption{
 text-align:left;   
}
}