:root {
    --primary-color: #8a1538;
    --secondary-color: #ffffff;
    --light-color: #f6f9fa;
    --dark-color: #343a40;
}

/* Modern font stack */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1rem;
}

.btn {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

body {
    /*font-family: "Open Sans", sans-serif;*/
    line-height: 1.6;
    font-weight: 400;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.text-success {
    color: var(--primary-color) !important;
}

.bg-success {
    background-color: var(--primary-color) !important;
}

.custom-navbar {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand,
.custom-navbar .navbar-toggler {
    color: var(--secondary-color) !important;
}

.custom-navbar .nav-link:hover {
    color: #fff !important;
    opacity: 0.8;
}

/* Custom outline button */
.btn-custom-outline {
    color: #fff;
    border-color: var(--primary-color);
    /*border-color: #6a102c;*/
    background-color: transparent;
}

.btn-custom-outline:hover {
    /*background-color: #6a102c;*/
    background-color: var(--primary-color);
    color: white;
}

/* Custom solid button */
.btn-custom-solid {
    background-color: #6a102c;
    border-color: #6a102c;
    color: white;
}

.btn-custom-solid:hover {
    background-color: #5a0d24;
    border-color: #5a0d24;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.hero-content {
    max-width: 600px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Features Section */
.feature-box {
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-card {
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Pricing Cards */
.pricing-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Contact Form */
.contact-form .form-control {
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-in;
}

.fade-in.visible {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        text-align: center;
    }

    .section-padding {
        padding: 50px 0;
    }
}

/*About us */
/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

/* Numbered Paragraphs */
.numbered-paragraph {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out;
}

.card.show .numbered-paragraph {
    opacity: 1;
    transform: translateX(0);
}

.numbered-paragraph:nth-child(1) {
    transition-delay: 0.2s;
}
.numbered-paragraph:nth-child(2) {
    transition-delay: 0.4s;
}
.numbered-paragraph:nth-child(3) {
    transition-delay: 0.6s;
}

.number {
    font-size: 24px;
    font-weight: bold;
    color: #0f5f53;
    margin-right: 15px;
    line-height: 1;
}

/* Mission Items */
.mission-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease-out;
}

.card.show .mission-item {
    opacity: 1;
    transform: translateX(0);
}

.mission-item:nth-child(1) {
    transition-delay: 0.2s;
}
.mission-item:nth-child(2) {
    transition-delay: 0.4s;
}
.mission-item:nth-child(3) {
    transition-delay: 0.6s;
}

.ff-image {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.ff-image:hover {
    transform: rotate(40deg);
}

/*pricing*/
.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.pricing-header {
    background-color: #198754;
    color: #fff;
}



