body {
    margin: 0;
    padding: 0;
    font-family: 'lato', sans-serif;
}

::selection {
    background-color: #565656;
    color: #fff;
}

/* Navbar Styling */
.navbar {
    background-color: rgba(0, 0, 0, 0.3) !important;
    font-size: 17px;
    line-height: 18px;
    font-weight: 400;
    height: 100px;
    z-index: 10;
}
.navbar-right i:hover{
    color: #B01933;
}
.navbar-right i{
    font-size: 20px;
}

.nav-link {
    text-transform: uppercase;
    color: white !important;

}

.logo {
    height: 196px;
    width: 200px;
    object-fit: cover;
    margin-top: 96px;
}

/* Medium screens (Tablets and smaller desktops) */
@media (max-width: 1024px) {
    .logo {
        height: 150px;
        width: 160px;
        margin-top: 0px;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .logo {
        height: 120px;
        width: 130px;
margin-top: 0px;
    }
}

/* Extra small screens (Very small mobile devices) */
@media (max-width: 480px) {
    .logo {
        height: 100px;
        width: 100px;
        margin-top: 0px;
    }
}
@media (max-width: 388px) {
    .logo {
        height: 80px;
        width: 80px;
        margin-top: 00px;
    }
}


/* Custom Button */
.btn-custom {
    color: #fff;
    background-color: #B01933;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'lato', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    width: max-content;
}

.btn-custom:hover {
    background-color: #630e1d;
    color: #fff;
}

/* Navbar Layout */
.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.sub-menu-wrap {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 260px;
    background: #565656;
    text-align: left;
    border-radius: 3px;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transform: translateY(10px);
}

.sub-menu-wrap li {
    padding: 5px 0px;
}

/* Ensure it appears below */
.nav-item:hover>.sub-menu-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Nested Dropdown (Sub-Menu Inner) */
.sub-menu-inner {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background: #565656;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transform: translateX(10px);
}

/* Show Sub-Menu Inner */
.sub-menu-wrap ul li:hover>.sub-menu-inner {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* Show submenu on hover */
.nav-item {
    position: relative;
}

.nav-item {
    color: white;
}

.nav-item:hover>.sub-menu-wrap {
    display: block;
}

/* Submenu Links */
.sub-menu-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-menu-wrap ul li {
    position: relative;

}

.sub-menu-wrap ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 10px;
    border-radius: 3px;
    padding-left: 20px;
}

.sub-menu-wrap ul li a:hover {
    background-color: #676766;
}


/* Show nested dropdown to the left of parent item */
.sub-menu-wrap ul li:hover>.sub-menu-inner {
    display: block;
}

/* Mega Menu */
.mega-menu {
    display: block;
    position: absolute;
    width: max-content;
    min-width: 300px;
    background: #565656;
    padding: 28px 20px;
    border-radius: 5px;
    z-index: 1000;
    top: 100%;
    /* Position below the parent */
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;

}

/* Show Mega Menu on Hover with Smooth Effect */
.has-megamenu {
    position: relative;
}

.has-megamenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* Mega Menu Title */
.mega-title {
    margin-bottom: 13px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
    padding-left: 10px;
    text-align: left;
}

/* Mega Menu Links */
.mega-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu ul li {
    padding: 0;
}

.mega-menu ul li a {
    display: block;
    padding: 10px 10px;
    background: none;
    color: #fff;
    text-decoration: none;
}

/* Hover Effect */
.mega-menu ul li a:hover {
    background-color: #676766;
}

/* Responsive Mega Menu for Mobile */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .has-megamenu.open .mega-menu {
        display: flex;
    }
}


/* Mobile Navigation */
/* Default styles for nav-small */
.nav-small {
    display: none;
    position: absolute;
    top: 100%;
    /* Position below the toggle icon */
    right: 10%;
    width: 300px;
    /* Match content width */
    background-color: #676766;
    text-align: center;
    z-index: 999;
    padding: 10px 0;
    border-radius: 5px;
}

/* Show nav-small when toggled */
.nav-small.show {
    display: block;
}

.nav-small ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-small .nav-item {
    padding: 10px;
    white-space: nowrap;
}

.nav-small .nav-link {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 15px;
}

.nav-small .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile-specific styles */
@media (max-width: 1200px) {
    .nav-large {
        display: none;
    }

    .navbar-toggler {
        display: block;
    }
}

/* hero section */
#carouselExampleControls img {
    object-fit: cover;
    min-height: 500px !important; 
}


.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-family: 'lora', sans-serif;
    font-style: italic;
    font-weight: 700;
    color: rgb(255, 255, 255);
    font-size: 72px;
    line-height: 78px;
}

.hero-content p {
    padding-top: 10px;
    font-size: 24px;
    font-family: 'lato', sans-serif;
    font-weight: 400;
    line-height: 34px;
    font-style: normal;
}

.hero-btn {
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    font-family: 'lato', sans-serif;
    font-weight: 400;
    line-height: 24px;
    font-style: normal;
    text-transform: uppercase;
    border: 1px solid #fff;
    background-color: transparent;
}

.hero-btn:hover {
    color: #B01933;
    border: 1px solid #B01933;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 60px;
        line-height: 66px;
    }

    .hero-content p {
        font-size: 20px;
        line-height: 30px;
    }

    .hero-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
        line-height: 54px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 28px;
    }

    .hero-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
        line-height: 29px;
    }

    .hero-content p {
        font-size: 12px;
        line-height: 8px;
    }

    .hero-btn {
        font-size: 9px;
        padding: 3px 5px;
    }
}

@media (max-width: 1024px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
}

.carousel {
    top: 0%;
}

.div-2 img {
    object-fit: cover;
}

.heading {
    font-family: "Lora", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    margin: 0%;
    padding: 0;
    color: rgb(51, 51, 51);
}

.small {
    color: #B01933 !important;
    font-size: 14px;
    text-transform: uppercase;
    margin: 10px 0;
}

.prg {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: rgb(119, 119, 119);

}

.card-content h1 {
    font-family: "Lora", serif;
    font-style: italic;
    font-size: 36px;
    font-weight: 700;
    margin-top: 0%;
    padding: 0;
    margin-bottom: 0%;

}

.cart-container {
    display: flex;
    flex-wrap: wrap;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b019324e;
    z-index: -1;
    transition: 0.5s;
}

.card {
    display: flex;
    position: relative;
    flex-direction: column;
    text-align: left;
    height: 336px;
    overflow: hidden;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);

}

.card-content {
    display: flex;
    margin-top: 200px;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    transition: 0.5s;
}

.read-button {
    display: none;
    color: white;
    margin: 0%;
    padding: 10px 20px;
    width: 40%;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    background-color: transparent;
    border: 1px solid white;
}

.card:hover .read-button {
    display: block;
}

.card:hover .card-content {
    margin-top: 150px;
    transform: 0.5;
}

.card:hover {
    z-index: 1;
}

.card-content span {
    border: 2px solid #CAC6C7;
    width: 20%;
    margin: 10px 0;
    margin: 0;
}

.card-content p {
    font-size: 18px;
    color: #CAC6C7;
}

/* box section */
.tital {
    font-family: "lora", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 48px;
    line-height: 60px;
    padding: 0;
    margin-bottom: 0%;
    text-align: center;
    margin-top: 0%;
}

.frame {
    width: 100%;

}

.frame img {
    width: 100%;
    object-fit: cover;
}

.main {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.box {
    padding: 0 10px;
}

.info-box {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.topic {
    font-family: "lora", serif;
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    margin-top: 0%;
    margin-bottom: 0%;
}

.topic:hover {
    color: #B01933;
}

.data {
    font-style: normal;
    font-size: 15px;
    font-weight: 400;
    margin-top: 0%;
    padding: 10px 0;
    margin-bottom: 0%;
    color: #8f8e8c;
}

.data span {
    color: #000;
}

.info {
    font-style: normal;
    display: flex;
    text-align: justify;
    font-weight: 400;
    line-height: 26px;
    color: #8f8e8c;
    font-size: 16px;
    padding-top: 10px;
    margin: 0;
    padding-bottom: 0%;
}

.icon-box hr {
    width: 100%;
    color: #8f8e8c;
}

.icon {
    padding: 10px;
    font-size: 18px;
}

.icon:hover {
    color: #B01933;
}

.more {
    margin: 0;
    text-transform: uppercase;
    color: #8f8e8c;
    font-size: 15px;
    font-weight: 900;
    border: 2px solid #8f8e8c;
    width: max-content;
    border-radius: 0;
    background-color: transparent;
}

.more:hover {
    color: #B01933;
    border-color: #B01933;
    background-color: transparent;
}

.window {
    height: auto;
}

.window_frame_1 {

    background: url(../img/bg1.jpg) no-repeat fixed center center/cover;
}

.num_window {
    display: flex;
    position: relative;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
    color: white;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    background-color: transparent;
}

h1.num {
    font-size: 52px;
    line-height: 52px;
    font-family: "Lora", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0%;
}

.place {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 28px;
    font-style: normal;
    padding-top: 0;
    margin-top: 0%;
}

.window_frame_2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
    position: relative;
}

.side_window_1 {
    display: flex;
    flex-direction: column;
    position: relative;
    height: auto;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    text-align: left;
    background: url(../img/IMG_2361_PhotoGrid.png) no-repeat center center/cover;
}

.data_tital {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}

.data_info {
    width: 320px;
}

.data_info p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    color: #555;
}

.data_info_tital {
    font-family: "Lora", serif;
    font-size: 36px;
    line-height: 54px;
    font-weight: 700;
    font-style: italic;
    flex-direction: flex-start;
}

.time_frame {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.67);
    width: 94px;
    height: 110px;
    margin: 1px;
}

.big {
    font-family: "Lora", serif;
    color: #b01933;
    font-size: 48px;
    line-height: 30px;
    font-weight: 700;
    padding: 10px;
}

.small {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    text-transform: uppercase;

}

.icon_bar {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    color: #555;
    width: 300px;
}

.icon_bar button {
    background-color: transparent;
    border: 1px solid #555;
    font-size: 13px;
    line-height: 24px;
    font-weight: 400;
    padding: 8px 30px;
    text-transform: uppercase;
}

.icon_bar i {
    font-size: 20px;
}

.side_window_2 {
    display: flex;
    position: relative;
    flex-direction: column;
    float: right;
    height: auto;
    overflow: hidden;
    background-color: white;
    justify-content: center;
    padding: 15px;
}

#side_window_2_tital {
    font-family: "Lora", serif;
    font-size: 48px;
    line-height: 60px;
    font-weight: 400;
    font-style: italic;
}

.event {
    display: flex;
    padding: 10px;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: left;
}

.event_date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 94px;
    height: 110px;
    margin: 1px;
}

.d {
    font-family: "Lora", serif;
    font-size: 36px;
    font-weight: 700;
    color: #b01933;
    margin: 0;
    padding: 0;
}

.m {
    font-family: "Lora", serif;
    font-size: 18px;
    font-weight: 700;
    color: #b01933;
    margin: 0;
    padding: 0;
}

.t {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.event_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 306px;
}

.event_info_tital {
    font-family: "Lora", serif;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    margin: 0;
    padding: 0;
}

.event_info_dil {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    width: 306px;
    color: #555;
    margin: 0;
    padding: 0;
}

.icon_bar_2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    gap: 10px;
    color: #555;
    width: 150px;

}

@media (max-width: 1103px) {
    .icon_bar_2 {
        flex-direction: row;
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .icon_bar_2 {
        flex-direction: column;
    }
}

@media (max-width: 551px) {
    .icon_bar_2 {
        flex-direction: row;
    }
}

.icon_bar_2 button {
    background-color: transparent;
    border: 1px solid #555;
    font-size: 13px;
    line-height: 24px;
    font-weight: 400;
    padding: 8px 30px;
    text-transform: uppercase;
}

.icon_list_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #555;
    justify-content: space-evenly;
    width: 100%;
    font-size: 20px;
}

.window i:hover {
    color: #b01933;
}

.icon_bar_2 button:hover,
.icon_bar button:hover {
    color: #b01933;
    border-color: #b01933;
}

/* review section */
.review {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 600px;
    width: 100%;
}

.review i {
    font-size: 100px;
    color: #B01933;
    ;
    line-height: 30px;
}

.review p {
    font-size: 30px;
    font-family: 'lora', sans-serif;
    font-style: italic;
    font-weight: 300;
    line-height: 42px;
    max-width: 690px;
    text-align: center;
    justify-content: center;
    margin: 45px 0 30px 0;
}

.name {
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 28px;
}

.role {
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    color: #bbb;
    line-height: 22px;
}

.carousel-indicators button {
    background-color: #b01932b2;
}

.carousel-indicators .active {
    background-color: #B01933;
}

/* Section Styling */
.people {
    text-align: center;
    margin: 50px 0;
    margin-left: auto;
    margin-right: auto;
}

.people p {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: #B01933;
    ;
    line-height: 26px;
    margin: 0%;
}

.people h1 {
    font-family: "lora", serif;
    font-size: 48px;
    font-weight: 400;
    color: #000;
    line-height: 60px;
    margin: 0;
}

/* Image Box */
.img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1.28;
    /* Maintains 430x335px ratio */
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.img-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(176, 25, 50, 0.4);
    z-index: -1;

}

.img-box:hover::after {
    opacity: 0.6;
    z-index: 1;
}

.img-box h2 {
    font-family: 'Lora', sans-serif;
    font-size: 30px;
    font-weight: 700;
    z-index: 2;
}

.img-box span {
    font-size: 16px;
    font-weight: 400;
    z-index: 2;
}

.img-box h2:hover {
    text-decoration: underline;
}

/* book section */
.book {

    display: flex;
    justify-content: flex-start;
    align-items: left;
}

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

.book-content p {
    max-width: 645px;
    font-family: "lora", serif;
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    color: #B01933;
}

.book-content span {
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    color: #777;
}

/* help section */
.help-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.help-sec {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 388px;
    color: #fff;
}

.help-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(255, 255, 255, 0.2);
}

.help-sec:hover {
    z-index: 1;
}

.help-sec h1 {
    font-size: 48px;
    font-weight: 900;
    font-family: "lora", serif;
    font-style: italic;
    margin: 0;
}

.help-sec p {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    max-width: 300px;
    margin: 10px 0;
    color: rgb(201, 201, 201);
}

.help-sec button {
    margin-top: 10px;
    padding: 10px 31px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

/* downloan section */
.download-sec {
    width: 100%;
}

.down-sec-1 {
    display: flex;
    position: relative;
    height: 513px;
}

.down-sec-2 {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: left;
    padding: 0 30px;
    justify-content: center;
}

.down-sec-2 h1 {
    font-size: 48px;
    font-weight: 400;
    font-family: "lora", serif;
    font-style: italic;
    margin: 0;
}

.down-sec-2 p {
    font-size: 18px;
    font-weight: 400;
    max-width: 450px;
    color: #777;
}

.app {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: left;
    margin-top: 20px;
    gap: 20px;
}

/* follow section */
.follow {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 331px;
    background-color: #f7f7f7;
}

.follow i {
    font-size: 50px;
    color: #B01933;
    margin: 0;
    text-align: center;
}

.follow h1 {
    font-size: 30px;
    font-weight: 400;
    font-family: "lora", serif;
    font-style: italic;
    margin: 0;
    padding: 0;
}

/* information section */
.link-sec {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.link-secs {
    display: flex;
    height: 272px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.link-secs p {
    font-size: 18px;
    font-weight: 400;
    color: #777;
    line-height: 28px;
    text-align: center;
    margin-top: 10px;
}

.link-secs i {
    font-size: 20px;
    color: #B01933;
}

/* newsletter section */
.newsletter {
    background-color: #f1f1f1;
    background-color: #A3172F;
    width: 100%;

}

.news-tital h1 {
    font-family: 'lora', serif;
    font-style: italic;
    font-size: 30px;
    text-align: center;
    font-weight: 400;
    color: #fff;
    margin: 0;
    padding: 0;
}

.news-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.news-icon i {
    font-size: 24px;
    color: #E4BAC1;
}

.news-icon i:hover {
    color: #fff;
}

.news-from {
    width: 100%;
}

#news-email {
    height: 56px;
    border: none;
    padding: 0 20px;
    font-size: 16px;
    color: #999;
    width: 80%;
    font-weight: 400;
}

#news-email::placeholder {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

#news-btn {
    background-color: #630E1D;
    color: #fff;
    width: 20%;
    height: 58px;
    border: none;
    font-size: 16px;
}

#news-btn:hover {
    background-color: #891328;
    border: 1px solid #fff;
}

/* footer section */
.fotter {
    display: flex;
    flex-direction: column;
}

.ftr-1 {
    background-color: #333;
    color: white;
    padding: 80px 0;
}

.ftr-nav {
    padding: 0 15px;
}

.ftr-nav-h1 {
    font-family: 'lora', serif;
    font-style: italic;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.ftr-nav-p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #999;
    padding: 10px 0;


}

.ftr-nav button {
    color: #ef2245;
    background-color: transparent;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid #ef2245;
    padding: 8px 30px;
}

.ftr-nav button:hover {
    background-color: #ef2245;
    color: white;
}

.ftr-list {
    display: flex;
    flex-direction: column;
    padding-left: 0px;
    margin-bottom: 0px;
}

.ftr-list li {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.ftr-list li:hover {
    text-decoration: underline;
    cursor: pointer;
}

.ftr-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    background-color: #3e3e3e;
    color: #999;
    font-size: 15px;
    font-weight: 400;
    height: 80px;
}

.ftr-2 span {
    color: white;
    font-weight: 700;
}

.backToTop {
    height: 45px;
    width: 45px;
    position: fixed;
    bottom: 30%;
    right: 30px;
    z-index: 999;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: #1111119a;
    color: white;
    cursor: pointer;
    border-radius: 10%;
    transition: all ease-in 0.3s;
}

/* Features Section Card Styling */
#features .card {
    background-color: white !important;
    border: 1px solid #eaeaea;
    color: #000 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

#features .card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

#features .card-body {
    padding: 1.5rem;
    color: #000;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#features .card-title {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

#features .card-text {
    color: #555;
    flex-grow: 1;
}

#features .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#features .card:hover .card-title,
#features .card:hover .card-text {
    color: #B01933 !important;
    transition: color 0.3s ease;
}