:root {
    --primary-color: #7E1416;
    --secondary-color: #7F8233;
    --accent-color: #d4af37;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*.navbar {
    background-color: var(--primary-color);
}

.navbar-brand img {
    height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.9);
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: var(--accent-color);
        transform: translateY(-2px);
    }*/

.navbar {
    background-color: var(--primary-color);
    min-height: 85px; /* Fixed navbar height */
    padding: 10px 0;
    transition: all 0.3s;
}

.navbar-brand {
    /*height: 100px;  Height for the logo container */
    padding: 0; /* Remove default padding */
    display: flex;
    align-items: center;
}

    .navbar-brand img {
        height: 100%; /* Logo will take full height of navbar-brand */
        max-height: 100px; /* Maximum logo height */
        width: auto; /* Maintain aspect ratio */
        object-fit: contain; /* Ensure logo fits properly */
        transition: all 0.3s;
    }

/* When navbar is scrolled */
.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

    .navbar.scrolled .navbar-brand img {
        max-height: 70px; /* Adjust logo size when scrolled if needed */
    }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.9);
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: var(--accent-color);
        transform: translateY(-2px);
    }

/* Ensure navbar items are vertically centered */
.navbar-collapse {
    align-items: center;
}

/* Adjust for mobile view */
@media (max-width: 991.98px) {
    .navbar-brand img {
        max-height: 60px; /* Smaller logo on mobile */
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    position: relative;
}

    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(126, 20, 22, 0.7), rgba(127, 130, 51, 0.6));
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    border: 2px solid white;
    background: transparent;
}

    .carousel-indicators button.active {
        background: var(--accent-color);
        border-color: var(--accent-color);
    }

/* Feature Boxes */
.feature-box {
    border-radius: 15px;
    padding: 40px 25px;
    margin-bottom: 30px;
    transition: all 0.4s;
    height: 100%;
    border: none;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

    .feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    }

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.0);
    color: var(--primary-color);
}

/* Membership Plans Special Styling */
.membership-box {
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-color);
}

    .membership-box::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .membership-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

        .membership-box:hover::after {
            transform: scaleX(1);
        }

.membership-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.membership-box:hover .membership-icon {
    color: var(--secondary-color);
    transform: rotateY(180deg);
}

.membership-duration {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .membership-duration::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: var(--secondary-color);
    }

.section-title {
    position: relative;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    }

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 25px;
}

    .btn-primary:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        transform: translateY(-2px);
    }

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 25px;
}

    .btn-accent:hover {
        background-color: #c9a227;
        border-color: #c9a227;
        color: white;
        transform: translateY(-2px);
    }

/* Other existing styles... */




/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-links h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

    .footer-links ul li {
        margin-bottom: 10px;
    }

        .footer-links ul li a {
            color: rgba(255,255,255,.7);
            text-decoration: none;
            transition: all 0.3s;
        }

            .footer-links ul li a:hover {
                color: var(--accent-color);
                padding-left: 5px;
            }

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 8px;
    transition: all 0.3s;
}

    .social-icons a:hover {
        background: var(--accent-color);
        transform: translateY(-3px);
    }

.copyright {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.5);
    font-size: 0.9rem;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--accent-color);
}


/*.navbar-brand img {
    height: 40px;
    padding: 5px 0;
  
}
*/
/*
.navbar {
    padding: 10px 0;
    transition: all 0.3s;
}

    .navbar.scrolled {
        padding: 5px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }*/