/* public/style.css */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --clr-bg: red;
    --clr-neon: red;
    --clr-white: #fefbff;
    --clr-black: black;
    --clr-gray-light: #f1f1f1;
    --clr-gray-medium: #f3f5f7;
    --clr-gray-dark: #f2ecee;
    --clr-gray-text: #7e7e7e;
    --clr-dark-gray: #2E2E2E;
    --clr-red: #C62A2A;
    --clr-red-light: #FBE1E0;
    --clr-red-nav:#D74242;
    --clr-shadow: rgba(252, 56, 56, 0.4);
    --clr-social-facebook: #FF6969;
    --clr-social-twitter: #C80036;
    --clr-social-instagram: #A91D3A;
    --clr-social-google: #DD4B39;
    --primary-color: #fefbff;
    --card-color: #f2ecee;
    --skeleton-gradient: linear-gradient(90deg, #f9d4d2 0%, #f0e7e7 40px, #f9d4d2 80px);}

* {
    box-sizing: border-box;
}

body {
    opacity: 0;
    transition: opacity 500ms ease-out;
    font-family: "Space Grotesk", sans-serif !important;
    background-color: #fefbff !important;
}


.navbar {
    transition: background-color 1s ease !important;
    font-size: 20px;
    font-weight: 700;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.86) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px !important;
    transition: all 1s ease !important;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--clr-red-nav) !important;
    border-radius: 25px;
    padding-left: 2px;
    padding-right: 2px;
    transition: all 0.5s ease-out;
    background: var(--clr-red-light);
}

 .navbar-light .navbar-nav .nav-link:hover {
    color: rgb(0 0 0);
    border-radius: 10px;
    background: var(--clr-red-light);
}
.fullscreen-image-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#content {
    margin-top: -4rem;
    padding-top: 5rem;
}

.landing-page {
    text-align: left;
    margin-top: 50px;
}

.landing-page h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.landing-page p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.landing-page img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    --background-color: var(--clr-white);
    --default-color: var(--clr-white);
    --heading-color: var(--clr-white);
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 160px 0 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero p {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: var(--clr-black);
    text-align: center;
    font-weight: 400;
    font-style: oblique;
}

.hero .btn-get-started {
    color: var(--clr-black);
    font-weight: 400;
    font-size: 15px;
    display: inline-block;
    padding: 8px 30px;
    margin: 30px 0 0 0;
    transition: 0.5s;
    text-transform: uppercase;
    border: 2px solid color-mix(in srgb, var(--clr-black), transparent 20%);
    border-radius: 25px;
}

.hero .btn-get-started:hover {
    color: var(--clr-white);
    background: var(--clr-red);
    border-color: var(--clr-white);
}

.navbar-nav {
    background-color: var(--clr-gray-dark);
    border-radius: 25px;
    padding: 5px;
    margin: 5px;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 57px;
    }

    .hero p {
        font-size: 25px;
    }
}

.landing-button {
    display: inline-block;
    padding: 0.5em 1.7em;
    margin: 0 0.1em 0.1em 0;
    border: 0.16em solid var(--clr-black);
    border-radius: 2em;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: var(--clr-black);
    text-shadow: 0 0.04em 0.04em rgba(255, 255, 255, 0.253);
    text-align: center;
    background-color: #f2ecee54;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.2s;
}

.landing-button:hover {
    color: var(--clr-black);
    background-color: var(--clr-white);
}

.title {
    text-transform: uppercase;
    display: block;
    font-size: 55px;
    color: #4a4a4a;
    font-weight: bold;
    text-align: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.light {
    background: var(--clr-gray-medium);
}

a, a:hover {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.pageHeaderTitle {
    margin: 2rem 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
}

.image-style {
    flex-shrink: 0;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.sectionbox {
    border-radius: 20px;
    height: auto;
    padding: 25px;
    background-color: var(--clr-gray-dark);
    margin: 20px;
}

.sectionbox .content {
    background-color: var(--clr-gray-dark) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 25px;
}

.sectionbox p {
    margin: 10px 0 20px;
}

.btn-primary {
    color: var(--clr-red) !important;
    background-color: var(--clr-red-light) !important;
    border-color: var(--clr-red) !important;
    border-radius: 25px !important;
}

.btn-primary:hover {
    background-color: var(--clr-red) !important;
    color: var(--clr-white) !important;
    border-radius: 15px !important;
    transition: all 0.3s;
}

.card-img {
    border-radius: 25px !important;
}


.card {
    border-radius: 25px !important;
    background-color: var(--card-color) !important;
    border: none !important;
}

.card-img, .card-img-bottom, .card-img-top {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70% !important;
}

.card-hoverable:hover{
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out !important;
    z-index: 4;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: var(--clr-red-light) !important;
    color: red;
}


ul {
    margin: 0;
    padding: 0;
}

.footer-section {
    border-radius: 25px;
    background: var(--clr-gray-dark);
    position: relative;
}

.single-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 10px 0;
}

.single-cta i {
    color: var(--clr-red);
    font-size: 24px;
    margin-top: 0;
    margin-right: 8px;
    float: none;
    display: flex;
    align-items: center;
}

.cta-heading-icon {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-cta-heading {
    font-size: 1rem !important;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--clr-black);
}

.footer-cta-content {
    width: 100%;
    margin-top: 0.3rem;
    display: block;
}

.cta-text {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text h4 {
    color: var(--clr-black);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--clr-gray-text);
    line-height: 28px;
}

.footer-social-icon span {
    color: var(--clr-black);
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: var(--clr-white);
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: var(--clr-social-facebook);
}

.twitter-bg {
    background: var(--clr-social-twitter);
}

.instagram-bg {
    background: var(--clr-social-instagram);
}

.google-bg {
    background: var(--clr-social-google);
}

.scoopit-bg {
    background: #2e7d32;
}

.thinglink-bg {
    background: #000000;
}

.linkedin-bg {
    background: #0077b5;
}

.pinterest-bg {
    background: #bd081c;
}

.tumblr-bg {
    background: #35465c;
}

.footer-widget-heading h3 {
    color: var(--clr-black);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--clr-red);
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: var(--clr-red);
}

.footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: var(--clr-dark-gray);
    border: 1px solid var(--clr-dark-gray);
    color: var(--clr-white);
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: var(--clr-red);
    padding: 13px 20px;
    border: 1px solid var(--clr-red);
    top: 0;
}

.subscribe-form button i {
    color: var(--clr-white);
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: var(--clr-white);
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: var(--clr-red);
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: var(--clr-red);
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

.guide-card {
    position: relative;
    margin: 15px;
    background: var(--clr-gray-dark);
    padding: 30px 25px 30px;
    border-radius: 25px;
    transition: all 0.3s;
}

.guide-card__item {
    display: flex;
    align-items: center;
}

.guide-card__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    transform: translateX(-80px);
    overflow: hidden;
    border: 2px solid var(--clr-gray-dark);
}

.guide-card__img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.guide-card__img img {
    width: 100%;
    background-color: var(--clr-white);
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    border-radius: 20px;
    transition: all 0.3s;
}

.guide-card__content > * {
    transform: translateY(25px);
    transition: all 0.4s;
}

.guide-card__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.guide-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
}

.guide-card__text {
    color: #4e4a67;
    margin-bottom: 30px;
    line-height: 1.5em;
}

.guide-card__button {
    display: inline-flex;
    background-image: linear-gradient(147deg, var(--clr-black) 0%, var(--clr-black) 74%);
    padding: 15px 35px;
    margin-bottom: 30px;
    border-radius: 50px;
    color: var(--clr-white);
    box-shadow: 0px 3px 10px var(--clr-shadow);
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
}

.guide-card__button:hover {
    color: #989898;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .guide-card {
        min-height: unset !important;
        height: auto !important;
        margin: 20px auto !important;
        padding-bottom: 16px !important;
    }
    .guide-card__content {
        margin-top: 0 !important;
        padding: 0 !important;
    }
    .card-body {
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 576px) {
    .guide-card, .card {
        min-height: unset !important;
        height: auto !important;
        margin: 4px auto 4px auto !important;
        padding-bottom: 8px !important;
        padding-top: 8px !important;
    }
    .card-body {
        padding: 8px 4px !important;
    }
    .blog-list {
        margin-top: 0.2rem !important;
        margin-bottom: 1rem !important;
    }
    .pageHeaderTitle {
        margin-bottom: 0.5rem !important;
    }
    .card-title {
        margin-bottom: 0.3rem !important;
    }
    .mb-2 {
        margin-bottom: 0.4rem !important;
    }
    .blog-list .col-12:last-child .card {
        margin-bottom: 0 !important;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .guide-card__img {
        height: 270px;
    }
}

@media screen and (max-width: 992px) {
    .guide-card {
        height: auto;
    }
    .footer-cta-heading {
        font-size: 0.95rem !important;
    }
    .single-cta i {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .guide-card {
        min-height: unset !important;
        height: auto !important;
        margin: 20px auto !important;
        padding-bottom: 16px !important;
    }
    .guide-card__item {
        flex-direction: column;
    }
    .footer-cta-heading {
        font-size: 0.9rem !important;
    }
    .single-cta i {
        font-size: 18px;
    }
    .footer-cta-content {
        font-size: 0.95rem;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .guide-card {
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .guide-card__content {
        margin-top: 0 !important;
        padding: 0 !important;
    }
}

@media screen and (max-width: 576px) {
    .guide-card__content {
        padding: 0;
    }
    .footer-cta-content {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 576px) {
    .guide-card__button {
        width: 100%;
    }
}

.blog-list {
  margin-bottom: 3rem !important;
}

.card {
  word-break: break-word;
  overflow-wrap: break-word;
  height: auto !important;
}

.form-control:focus {
    border-color: var(--clr-red) !important;
    box-shadow: 0 0 0 .25rem rgba(253, 13, 13, 0.25) !important;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: var(--clr-red);
    border-color: var(--clr-social-google);
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px !important;
}

.page-item.active .page-link {

}

.page-item.active .page-link {
    color: var(--clr-red) !important;
    background-color: var(--clr-red-light) !important;
    border: none !important;
}

.page-link {
    color: var(--clr-red) !important;
    background-color: var(--clr-gray-dark) !important;
    border: none !important;
}

.page-link:focus {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
}

.product_img {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border: 1px solid #f2ecee;
}

.alert-success {
    color: var(--clr-red) !important;
    background-color: var(--clr-gray-light) !important;
    border-color: var(--clr-gray-light) !important;
    border-right: 25px !important;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}


.brand-flare {
    background-color: var(--clr-social-facebook);
    color: var(--primary-color);
    border-radius: 20px;
    width: auto;
    height: auto;
    margin: 2px;
    line-height: 2.3em;
    font-size: 14px;
    padding: 1px 8px;
    white-space: nowrap;
    overflow: hidden;
}

.showcase-image {
    -moz-border-radius-topleft: 25px !important;
    -moz-border-radius-topright: 25px !important;
    border-top-left-radius: 25px !important;
    border-top-right-radius: 25px !important;
}

.showcase-image-one {
    -moz-border-radius: 35px !important;
    border-radius: 35px !important;

}
.showcase-image-modal {
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 70% !important;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    font-weight: bolder;
    color: var(--clr-red-nav) !important;
    transition: all 0.5s ease-out !important;
    background: var(--clr-red-light) !important;
}
.nav-pills .nav-link {
    color: rgba(0, 0, 0, .55) !important;
    background: white !important;
    border: none !important;
}
.nav-pills .nav-link {
    border-radius: 0px !important;
}
.nav-pills .nav-item:first-child .nav-link {
    border-top-left-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
}

.nav-pills .nav-item:last-child .nav-link {
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

.nav-link:focus, .nav-link:hover {
    color: black !important;
}
.tab-content {
    background-color: white !important;
    padding: 25px !important;
    border-radius: 25px !important;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    background-color: #a1a1a1;
    border-radius: 15px;
    margin: 15px;
    padding: 15px;
    height: 4rem !important;
}
.modal-content.custom-modal {
    border-radius: 1.3rem;
}

.form-select.custom:hover{
    border: 1px solid var(--clr-red);
}

.form-select.custom:focus{
    box-shadow: 0 0 0 .25rem rgb(243 54 42 / 24%);
    border: 1px solid var(--clr-red);
}
.no_result {
    width: 50% !important;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
}

.text-danger.font-weight-bold{
    font-weight: bolder;
}

.notes-highlight {
    background-color: #f9d4d2;
    color: red ;
    padding: 25px;
    margin: 25px;
    border-radius: 25px;
}

.data--loading {
    height: 252px;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 25px;
    background: var(--card-color);
}

.data--loading .loading-image {
    height: 190px;
    background-size: 250px;
    -webkit-animation: shine-loading-image 1s infinite ease-out;
    animation: shine-loading-image 1s infinite ease-out;
}

.data--loading .loading-content {
    background: var(--card-color);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data--loading .loading-content .loading-text-container {
    flex-basis: 100%;
}

.data--loading .loading-content .loading-main-text {
    height: 10px;
    width: 65%;
    margin-bottom: 10px;
    background-image: var(--skeleton-gradient);
    background-size: 250px;
    border-radius: 10px;
    -webkit-animation: shine-loading-container-items 1s infinite ease-out;
    animation: shine-loading-container-items 1s infinite ease-out;
}

.data--loading .loading-content .loading-sub-text {
    height: 10px;
    width: 50%;
    background-image: var(--skeleton-gradient);
    background-size: 250px;
    border-radius: 10px;
    -webkit-animation: shine-loading-container-items 1s infinite ease-out;
    animation: shine-loading-container-items 1s infinite ease-out;
}

.data--loading .loading-content .loading-btn {
    width: 60px;
    height: 25px;
    background-image: var(--skeleton-gradient);
    background-size: 250px;
    border-radius: 3px;
    -webkit-animation: shine-loading-container-items 1s infinite ease-in-out;
    animation: shine-loading-container-items 1s infinite ease-in-out;
}

@-webkit-keyframes shine-loading-image {
    0% {
        background-position: -32px;
    }
    40%, 100% {
        background-position: 208px;
    }
}

@keyframes shine-loading-image {
    0% {
        background-position: -32px;
    }
    40%, 100% {
        background-position: 208px;
    }
}

@-webkit-keyframes shine-loading-container-items {
    0% {
        background-position: -100px;
    }
    40%, 100% {
        background-position: 140px;
    }
}

@keyframes shine-loading-container-items {
    0% {
        background-position: -100px;
    }
    40%, 100% {
        background-position: 140px;
    }
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--bs-danger) !important;
}

.list-group-item.custom-list {
    background-color: var(--card-color);
    border:none;
    padding: 0px;
}

.accordion-button:not(.collapsed) {
    color: var(--clr-red) !important;
    background-color: var(--clr-red-light) !important;
}
.accordion-button:focus {
    border:none !important;
    box-shadow: none !important;
}

.accordion-button {
    background-color: var(--card-color) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}

.quick-search {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 35px;
    background-color: #f2eceeb8;
}

.form-select {
    border-radius: 15px !important;
}

.form-control {
    border-radius: 15px !important;
}

.btn-buy-on-amazon {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: var(--clr-white);
    background-color: var(--clr-red);
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-buy-on-amazon:hover {
    background-color: var(--clr-red-light);
    color: var(--clr-black);
}

/* Replace <%= product.cm_number %> with a valid identifier or dynamically generate this CSS */
#carousel-product-1 .carousel-inner img {
    max-height: 400px;
    object-fit: contain;
}
/* ensure long words wrap cleanly inside any card */
.card, 
.card .card-body {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* if you still have negative margins or special mobile padding in your guide-card styles, reset them: */
@media (max-width: 768px) {
  .guide-card__content {
    margin-top: 0 !important;
    padding: 0 !important;
  }
}
.card .btn {
  width: auto; /* don't let it stretch */
}

/* Prevent footer overlap by giving space at the bottom */
.blog-list {
  margin-bottom: 3rem; /* enough room before footer */
}

.card {
  word-break: break-word;
  overflow-wrap: break-word;
}

/*--------------------------------------------------------------
# Blog Horizontal Card Styles
--------------------------------------------------------------*/
.blog-horizontal-card {
    min-height: 180px;
    border-radius: 25px !important;
    background: var(--card-color) !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    transition: box-shadow 0.25s, transform 0.18s;
}

.blog-horizontal-card:hover {
    box-shadow: 0 8px 32px rgba(198,42,42,0.18), 0 2px 8px rgba(0,0,0,0.07);
    transform: translateY(-7px) scale(1.025);
    background: #fff6f6 !important;
    z-index: 2;
}

.blog-preview-img {
    width: 160px;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    background: #fff;
}

.blog-title-link {
    color: var(--clr-red-nav);
    font-weight: bold;
    transition: color 0.2s;
}
.blog-title-link:hover {
    color: var(--clr-red);
    text-decoration: underline;
}

.blog-horizontal-card p {
    color: var(--clr-black) !important;
}

@media (max-width: 768px) {
    .blog-horizontal-card {
        flex-direction: column;
        min-height: unset;
    }
    .blog-preview-img {
        width: 100%;
        height: 180px;
        border-radius: 25px 25px 0 0;
        object-fit: cover;
    }
}

/*--------------------------------------------------------------
# Footer Single Row Layout Styles
--------------------------------------------------------------*/
.footer-logo-img {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.footer-content .footer-logo {
    text-align: center;
    margin-bottom: 10px;
}
.footer-content .footer-social-icon {
    text-align: center;
    margin-bottom: 10px;
}
.footer-content .footer-text {
    text-align: center;
    font-size: 13px;
    color: var(--clr-gray-text);
    margin-bottom: 0;
}
.footer-content .single-cta {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 10px 0;
}
.footer-content .cta-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.footer-content .cta-text span, .footer-content .cta-text a {
    font-size: 0.95rem;
}
.footer-content .list-group-item.custom-list {
    padding: 0.2rem 0.5rem;
    font-size: 0.95rem;
    background: none;
}
.footer-content .list-group.custom-list-group {
    margin-bottom: 0;
}
@media (max-width: 991.98px) {
    .footer-content .row > div {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 1.5rem;
    }
    .footer-content .footer-logo-img {
        max-width: 90px;
    }
}
@media (max-width: 767.98px) {
    .footer-content .row > div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    .footer-content .footer-logo-img {
        max-width: 70px;
    }
    .footer-content .footer-text {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Promotional Carousel Styles
--------------------------------------------------------------*/
.promo-carousel-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 2rem auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    background: var(--card-color);
    padding-top: 1rem; /* Reduced space above caption box */
    padding-bottom: 2.5rem;
}
.promo-carousel {
    border-radius: 25px;
    overflow: hidden;
}
.promo-carousel-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    transition: filter 0.2s;
}
.promo-carousel-img:hover {
    filter: brightness(0.93) saturate(1.1);
}
.carousel-indicators [data-bs-target] {
    background-color: var(--clr-red) !important;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    opacity: 0.85;
    margin: 0 6px;
    border: 2px solid var(--clr-red) !important;
    transition: opacity 0.2s, background 0.2s;
}
.carousel-indicators .active {
    opacity: 1;
    background-color: #b71c1c !important;
    border-color: #b71c1c !important;
}
.promo-caption-box {
  background: rgba(251, 94, 94, 0.085); /* semi-transparent red, matches --clr-red */
  border-radius: 18px;
  padding: 1.2rem 1.5rem 0.7rem 1.5rem;
  max-width: 600px;
  margin-bottom: 3.5rem; /* Increased space below the box */
  box-shadow: 0 2px 12px rgba(198,42,42,0.07);
}
.promo-caption-title {
  color: var(--clr-red-nav);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px #fff8;
  text-transform: uppercase;
}
.promo-caption-desc {
  color: var(--clr-black);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0;
  text-shadow: 0 1px 2px #fff5;
}
@media (max-width: 768px) {
    .promo-caption-title {
      font-size: 1.3rem;
    }
    .promo-caption-desc {
      font-size: 1rem;
    }
    .promo-carousel-img {
        height: 180px;
    }
    .promo-carousel-section {
        max-width: 100%;
        border-radius: 15px;
        padding-top: 0.5rem; /* Reduced space above caption box on mobile */
        padding-bottom: 1.2rem;
    }
    .promo-caption-box {
      padding: 0.7rem 0.7rem 0.5rem 0.7rem;
      max-width: 98vw;
      margin-bottom: 2.2rem; /* More space below box on mobile */
    }
}

/*--------------------------------------------------------------
# About Section Styles
--------------------------------------------------------------*/
.about-section-heading {
    font-family: 'Space Grotesk', 'Roboto', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-red-nav);
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 2.2rem;
    margin-top: 2.5rem;
    text-shadow: 0 2px 8px #fff8, 0 0 2px #fff5;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff6f6 0%, #fbe1e0 100%);
    border-radius: 18px;
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
    box-shadow: 0 2px 12px rgba(198,42,42,0.07);
    display: block;
}

@media (max-width: 768px) {
    .about-section-heading {
        font-size: 1.3rem;
        padding: 0.5rem 0.2rem 0.3rem 0.2rem;
        margin-bottom: 1.2rem;
        margin-top: 1.2rem;
    }
}

/* Recommended image dimensions for promotional images: 1200x400px (landscape), JPG/PNG, under 500KB for best results. */
