/* Custom CSS for Cheltenham Fundraiser Website - Horseno Style - Enhanced */

:root {
    --primary-color: #344e41;
    --secondary-color: #8b4513;
    --accent-color: #ff8c00;
    --text-dark: #000000;
    --text-light: #6b7280;
    --gradient-primary: linear-gradient(135deg, #344e41 0%, #588157 100%);
    --gradient-secondary: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    --gradient-accent: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --bs-accordion-border-radius: 15px;
}

/* Base Typography - Horseno Style */
body {
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #f3ecdc;
    margin: 0;
    padding: 0;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.8rem; font-weight: 700; }
h3 { font-size: 2.2rem; font-weight: 600; }
h4 { font-size: 1.8rem; font-weight: 600; }
h5 { font-size: 1.4rem; font-weight: 500; }
h6 { font-size: 1.2rem; font-weight: 500; }

/* Container improvements - Horseno Style */
.container {
    padding: 0 15px;
    max-width: 1200px;
}

.container-fluid {
    padding: 0 30px;
}

/* Top Bar - Horseno Style */
.top-bar {
    background-color: #588157;
    padding: 0.8rem 0;
    color: #f3ecdc;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-bar-slogan {
    color: #f3ecdc;
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-bar-email {
    color: #f3ecdc;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.top-bar-email:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.top-bar-email i {
    font-size: 1rem;
}

/* Navigation improvements - Horseno Style */
.navbar {
    box-shadow: var(--shadow-light);
    padding: 1.2rem 0 2.5rem;
    background: #f3ecdc !important;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d2d2d !important;
}

.logo {
    height: 100px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 0.2rem;
}

.brand-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #588157;
    font-family: "Poppins", sans-serif;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.8rem 1.2rem !important;
    margin: 0 0.3rem;
    border-radius: 0;
    color: #2d2d2d !important;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #588157 !important;
    background: transparent;
    transform: none;
}

.navbar-nav .nav-link.active {
    color: #588157 !important;
    font-weight: 600;
    background: transparent;
}

/* .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #588157;
    border-radius: 0;
} */

/* Contact button styling */
.navbar-nav .nav-link[href="/contact"] {
    background: #344e41 !important;
    color: white !important;
    border-radius: 0;
    padding: 0.8rem 1.5rem !important;
    margin-left: 1rem;
}

.navbar-nav .nav-link[href="/contact"]:hover {
    background: #2d5a27 !important;
    color: white !important;
}

.navbar-nav .nav-link[href="/contact"].active {
    background: #2d5a27 !important;
    color: white !important;
}

.navbar-nav .nav-link[href="/contact"].active::after {
    display: none;
}

/* Mobile navigation styling - all items styled like contact button */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        background: #344e41  !important;
        color: white !important;
        border-radius: 0;
        padding: 0.8rem 1.5rem !important;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .navbar-nav .nav-link:hover {
        background: #588157 !important;
        color: white !important;
        transform: none;
    }
    
    .navbar-nav .nav-link.active {
        background: #588157 !important;
        color: white !important;
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar-nav .nav-link[href="/contact"] {
        margin: 0.5rem 0;
        margin-left: 0;
    }
}

/* Hero Section - Enhanced Horseno Style */
.hero-section {
    background: linear-gradient(#344e41, rgba(88, 129, 87, 0.8)), url('images/fundmyclub-cheltenham.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 5rem 0;
    margin: 0 0 4rem 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-left {
    text-align: left;
    padding-right: 3rem;
}

.hero-right {
    /* min-height: 380px;
    max-width: 40%;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    background-color: #f3ecdc;
    border: 20px solid #f3ecdc; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	max-width: 540px;
	border: 20px solid #f3ecdc;
	transform: scale(1);
	filter: brightness(1);
}

.hero-image:hover {
	transform: scale(1.05);
	filter: brightness(1.1);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}



.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.2;
    z-index: -1;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-section h1 {
	font-size: 3.4rem;
	font-weight: 600;
	margin-bottom: 2rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.2;
	color: white;
	animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
	font-size: 1rem;
	margin-bottom: 2.5rem;
	font-weight: 400;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	opacity: 0.95;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1s ease-out 0.3s both;
}

/* Cards and Sections - Enhanced Horseno Style */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    margin-bottom: 2.5rem;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.card-body {
    padding: 2.5rem;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    padding: 2rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    font-size: 1.2rem;
}

/* Page Headers - Enhanced Horseno Style */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.page-header {
    background: linear-gradient(rgba(52, 78, 65, 0.8), rgba(88, 129, 87, 0.9)), url('images/fundmyclub-cheltenham.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 0;
    margin: 0 0 3rem 0;
    padding: 3rem 0;
    text-align: center;
    color: white;
    width: 100%;
}

.page-header h1 {
    color: white;
    font-size: 3.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 1s ease-out;
}


.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Section Styling - Horseno Style */
.section-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-title h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Text improvements */
.text-primary {
    color: var(--primary-color) !important;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Feature Cards - Enhanced Horseno Style */
.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.feature-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Buttons - Enhanced Horseno Style */
.btn {
    border-radius: 40px;
    font-weight: 600;
    padding: 1.2rem 3rem;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    border: none;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    box-shadow: var(--shadow-medium);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #588157 !important;
    color: white !important;
    border: none;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #4a6b4a !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: #fee074 !important;
    color: #2d2d2d !important;
    border: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #fdd94a !important;
    color: #2d2d2d !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-lg {
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
}

/* Feature Icons - Enhanced Horseno Style */
.feature-icon {
    font-size: 4.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    display: block;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-color);
}

/* Image Placeholders - Enhanced Horseno Style */
.img-placeholder {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.img-placeholder:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: var(--transition);
}

.img-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.img-placeholder > div {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Specific image backgrounds */
.hero-bg {
    background-image: url('images/fundmyclub-cheltenham.jpg');
}

.club-fundraiser-bg {
    background-image: url('images/club-fundraiser-cheltenham.jpg');
}

.horse-racing-bg {
    background-image: url('images/Horse-racing-prediction.jpg');
}

.cheltenham-predictions-bg {
    background-image: url('images/cheltenham-race-predictions.jpg');
}

.cheltenham-fundraiser-bg {
    background-image: url('images/cheltenham-fundraiser-for-clubs.jpg');
}

/* Page header backgrounds with faded overlay */
.page-header-bg {
    background: linear-gradient(rgba(52, 78, 65, 0.8), rgba(88, 129, 87, 0.9)), url('images/fundmyclub-cheltenham.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* FAQ Accordion - Enhanced Horseno Style */

.faqs-con {
	background-color: #d7d4c5;
	padding: 2rem;
	border-radius: 20px;
	margin-bottom: 2rem;
}

#help, #questions {
	background-color: #fff;
	padding: 30px;
	text-align: center;
    border-radius: 20px;
}

#help .help-header h4, #questions .q-header h4{
   margin-bottom: 30px;
}

.help-body a{
    color:#fff;
}

#help .btn{
    background-color: var(--primary-color);
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

.accordion-item {
    border: none;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.accordion-button {
    /* border-radius: 15px; */
    font-weight: 600;
    padding: 1.5rem;
    background: white;
    color: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: none !important;
    outline: none !important;
}

.accordion-button:not(.collapsed):focus,
.accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
    outline: none !important;
}

/* Contact Form - Enhanced Horseno Style */
.form-control, .form-select {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    padding: 1rem 1.2rem;
    transition: var(--transition);
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.15);
    transform: translateY(-3px);
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Footer - Enhanced Horseno Style */
footer {
    background: var(--gradient-primary);
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem 0;
}

/* Footer Brand Styling */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    footer .text-md-end {
        text-align: center !important;
        margin-top: 2rem;
    }
    
    footer .row {
        text-align: center;
    }
    
    footer .col-md-6 {
        text-align: center !important;
    }
    
    .footer-brand {
        justify-content: center;
    }
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	position: relative;
	left: -10px;
}

.footer-brand-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.2rem;
    font-family: "Unbounded", sans-serif;
}

.footer-brand-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Poppins", sans-serif;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/fundmyclub-cheltenham.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent-color) !important;
    text-decoration: none;
    transform: translateX(8px);
}

/* Mobile Responsiveness - Enhanced */
@media (max-width: 768px) {
    /* Ensure no horizontal scrolling */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    * {
        box-sizing: border-box;
    }
    .top-bar {
        padding: 0.6rem 0;
        text-align: center;
    }
    
    .top-bar .row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-bar .col-md-6 {
        width: 100%;
        text-align: center !important;
    }
    
    .top-bar-slogan {
        font-size: 0.85rem;
    }
    
    .top-bar-email {
        font-size: 0.85rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.8rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .card-body {
        padding: 2rem;
    }

    .about-inner {
        text-align: center;
    }

    .about-layout1 .content{
        padding-bottom:1rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 0;
    }
    
    .hero-section {
        padding: 3rem 1rem;
        margin: 0 0 4rem 0;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-left {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-right {
        min-height: 300px;
        max-width: 100%;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    /* Fix horizontal scrolling issues */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container-fluid {
        padding: 0 1rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .about-layout1 {
        padding: 0 1rem;
        width: 100%;
        overflow: hidden;
    }
    
    .features-section {
        padding: 2rem 1rem;
        margin: 3rem 0;
        width: 100%;
        overflow: hidden;
    }
    
    .page-header {
        margin: 0 0 3rem 0;
        width: 100%;
        overflow: hidden;
    }
    
    /* How It Works Page Mobile Optimizations */
    .step-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    /* FAQ Page Mobile Optimizations */
    .faqs-con {
        margin-left: 1em;
        margin-right: 1em;
        width: calc(100% - 2em);
        box-sizing: border-box;
    }
    
    .step-number {
        margin: 0 auto 1.5rem auto;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .step-content .row {
        flex-direction: column;
    }
    
    .step-content .col-md-6 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .step-content .img-placeholder {
        min-height: 200px;
        margin: 0 auto;
        max-width: 300px;
    }
    
    .step-content .list-unstyled {
        text-align: left;
        padding-left: 1rem;
    }
    
    .step-content .list-unstyled li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Timeline Mobile Optimizations */
    #timeline .col-md-3 {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    #timeline .bg-primary {
        width: 50px !important;
        height: 50px !important;
    }
    
    #timeline h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    #timeline p {
        font-size: 0.9rem;
    }
    
    /* How It Works Header Mobile */
    .how-header h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .time-header h3 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }
    
    /* Call to Action Mobile */
    .btn-lg {
        width: 100%;
        margin-bottom: 0.8rem;
    }
    
    .d-flex.flex-column.flex-md-row {
        flex-direction: column !important;
    }
    
    .d-flex.flex-column.flex-md-row .btn {
        width: 100%;
        margin-bottom: 0.8rem;
    }
}

/* Additional visual enhancements - Horseno Style */
.bg-light {
    background-color: #f3ecdc !important;
}

.list-unstyled li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.list-unstyled li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.list-unstyled li:last-child {
    border-bottom: none;
}

/* Animation Classes - Enhanced Horseno Style */
.fade-in {
    animation: fadeInUp 1s ease-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

.zoom-in {
    animation: zoomIn 1s ease-out;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideInLeft {
    from { 
        opacity: 0; 
        transform: translateX(-60px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(60px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes zoomIn {
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Step Process - Enhanced Horseno Style */
.step-number {
    background: #588157;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.8rem;
    margin-right: 2rem;
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
    transition: var(--transition);
}

.step-content:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    padding: 2.5rem;
    background: #d7d4c5;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Mobile step content layout */
@media (max-width: 768px) {
    .step-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-content .flex-grow-1 {
        width: 100%;
    }

    .faqs-con h2 {
        font-size: 2rem;
        text-align: center;
    }

    #questions h4, #help h4{
        font-size:1.5rem;
    }

    #questions .btn, #help .btn{
        padding: 1.2rem 1rem;
    }

    .ready-body {
        padding: 1rem;
    }

    .ready-body h3{
        font-size:1.8rem;
    }
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #588157;
    transform: scaleY(0);
    transition: var(--transition);
}

.step-content:hover::before {
    transform: scaleY(1);
}

.step-content:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.step-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.time-header {
	padding-top: 50px;
	text-align: center;
}

.how-header {
	padding-top: 50px;
}

/* Enhanced spacing and layout */
.section-padding {
    padding: 6rem 0;
}

.section-padding-sm {
    padding: 4rem 0;
}

.section-padding-lg {
    padding: 8rem 0;
}

/* Enhanced card variations */
.card-hover-lift {
    transition: var(--transition);
}

.card-hover-lift:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

/* Enhanced button variations */
.btn-outline-primary {
    background: transparent;
    border: 2px solid #588157;
    color: #588157;
    border-radius: 40px;
}

.btn-outline-primary:hover {
    background: #588157;
    color: white;
    transform: translateY(-3px);
}

/* Enhanced form styling */
.form-floating > .form-control,
.form-floating > .form-select {
    height: 4rem;
    padding: 1rem 1.2rem;
}

.form-floating > label {
    padding: 1rem 1.2rem;
    color: var(--text-light);
}

/* Enhanced navigation */
.navbar-toggler-container {
    display: none; /* Hidden by default */
    align-items: center;
    background: #588157;
    border-radius: 8px;
    padding: 0 1rem;
    gap: 0.5rem;
    margin: 0 auto;
    cursor: pointer;
    transition: var(--transition);
}

/* Show navbar toggler only on mobile */
@media (max-width: 991px) {
    .navbar-toggler-container {
        display: flex;
    }
}

.navbar-toggler-container:hover {
    background: #4a6b4a;
    transform: translateY(-1px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* X icon when menu is open */
.navbar-toggler-container[aria-expanded="true"] .navbar-toggler {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m6 6l18 18M6 24l18-18'/%3e%3c/svg%3e") !important;
}

.navbar-toggler-container[aria-expanded="true"] .navbar-toggler-text {
    content: "close";
}

.navbar-toggler-text {
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

/* Enhanced hero section */
.hero-section .btn {
    margin: 0rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero section specific button styles */
.btn-how-it-works,
.btn-get-started {
    /* Flexbox properties now inherited from .btn */
}

.btn-how-it-works {
    background: #588157 !important;
    color: white !important;
    border: none;
    transition: var(--transition);
}

.btn-how-it-works:hover {
    background: #4a6b4a !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-get-started {
    background: #fee074 !important;
    color: #2d2d2d !important;
    border: none;
    transition: var(--transition);
}

.btn-get-started:hover {
    background: #fdd94a !important;
    color: #2d2d2d !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.hero-section .btn i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.hero-section .btn:hover i {
    transform: translateX(3px);
}

/* All buttons with arrows */
.btn i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(3px);
}

/* Ensure all buttons have arrows and no other icons */
.btn:not(:has(i))::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.btn:not(:has(i)):hover::after {
    transform: translateX(3px);
}

/* Remove any existing icons that aren't arrows */
.btn i:not(.fa-arrow-right):not(.fa-arrow-left) {
    display: none;
}

/* Enhanced section titles */
.section-title .subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

/* Enhanced feature cards */
.feature-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    transition: var(--transition);
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-accent);
}

.feature-card .card-icon i {
    font-size: 2rem;
    color: white;
}

/* Enhanced testimonials */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

/* Enhanced counters */
.counter-item {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.counter-label {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Enhanced gallery */
.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Enhanced breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--accent-color);
    font-weight: bold;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Enhanced pagination */
.pagination .page-link {
    border: none;
    color: var(--primary-color);
    padding: 0.8rem 1.2rem;
    margin: 0 0.2rem;
    border-radius: 10px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

/* Enhanced alerts */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    font-weight: 500;
}

.alert-primary {
    background: var(--gradient-primary);
    color: white;
}

.alert-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.alert-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    color: white;
}

/* Enhanced badges */
.badge {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
}

.badge-primary {
    background: var(--gradient-primary);
}

.badge-secondary {
    background: var(--gradient-secondary);
}

.badge-accent {
    background: var(--gradient-accent);
}

/* Enhanced progress bars */
.progress {
    height: 0.8rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.progress-bar {
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* Enhanced tooltips */
.tooltip {
    font-family: "Poppins", sans-serif;
}

.tooltip-inner {
    background: var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

/* Enhanced popovers */
.popover {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.popover-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    font-weight: 600;
}

/* Enhanced modals */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-title {
    color: white;
    font-weight: 700;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Enhanced dropdowns */
.dropdown-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    padding: 1rem 0;
}

.dropdown-item {
    padding: 0.8rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

/* Enhanced tabs */
.nav-tabs {
    border: none;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.nav-tabs .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.nav-tabs .nav-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* Enhanced pills */
.nav-pills .nav-link {
    border-radius: 25px;
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: white;
}

.nav-pills .nav-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* Enhanced list groups */
.list-group-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    padding: 1.2rem 1.5rem;
    transition: var(--transition);
    background: white;
    box-shadow: var(--shadow-light);
}

.list-group-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.list-group-item.active {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

/* Enhanced tables */
.table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.table thead th {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.2rem;
    font-weight: 600;
}

.table tbody tr {
    transition: var(--transition);
}

.table tbody tr:hover {
    background: rgba(52, 78, 65, 0.05);
    transform: scale(1.01);
}

/* Enhanced figures */
.figure {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.figure:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.figure-caption {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    margin: 0;
}

/* Enhanced blockquotes */
.blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
}

.blockquote-footer {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

/* Enhanced code blocks */
.code-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
    overflow-x: auto;
}

/* Enhanced dividers */
.divider {
    height: 2px;
    background: var(--gradient-accent);
    margin: 3rem auto;
    width: 100px;
    border-radius: 1px;
}

.divider-lg {
    width: 200px;
    height: 3px;
}

.divider-sm {
    width: 50px;
    height: 1px;
}

/* Enhanced spacing utilities */
.mt-6 { margin-top: 4rem !important; }
.mb-6 { margin-bottom: 4rem !important; }
.pt-6 { padding-top: 4rem !important; }
.pb-6 { padding-bottom: 4rem !important; }

.mt-7 { margin-top: 5rem !important; }
.mb-7 { margin-bottom: 5rem !important; }
.pt-7 { padding-top: 5rem !important; }
.pb-7 { padding-bottom: 5rem !important; }

/* Enhanced text utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced border utilities */
.border-gradient {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}

.border-gradient-accent {
    border: 2px solid;
    border-image: var(--gradient-accent) 1;
}

/* Enhanced shadow utilities */
.shadow-custom {
    box-shadow: 0 10px 40px rgba(52, 78, 65, 0.15);
}

.shadow-custom-lg {
    box-shadow: 0 20px 60px rgba(52, 78, 65, 0.2);
}

/* Enhanced hover effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: var(--transition);
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Enhanced focus states */
.focus-lift:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Enhanced loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
}

/* Enhanced selection */
::selection {
    background: var(--accent-color);
    color: white;
}

::-moz-selection {
    background: var(--accent-color);
    color: white;
}

/* Enhanced focus outline */
*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* About Layout 1 Styles */
.about-layout1 {
    padding: 1rem 0 6rem;
    position: relative;
    width: 100%;
}

.about-layout1 .space {
    margin-bottom: 0;
}

.about-layout1 .gx-60 {
    --bs-gutter-x: 1rem;
}

.about-layout1 .g-5 {
    --bs-gutter-y: 3rem;
}

.about-layout1 .container-fluid {
    max-width: 100%;
    padding: 0 1rem;
    overflow: hidden;
}

/* Image Box Styles */
.img-box2 {
    position: relative;
    z-index: 1;
    height: 100%;
}

.text-box2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: rgba(52, 78, 65, 0.9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
}

.text-box2__text {
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.box-inner {
    position: relative;
    margin-top: 2rem;
}

.img1-box {
    margin-top:0
    margin-right: 2rem;
}

.img1 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    width: 100%;
    height: 400px;
}

.img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.img1:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.img1:hover img {
    transform: scale(1.1);
}

/* About Content Styles */
.about-content {
    padding-left: 0;
}

.sec-subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #588157;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.sec-subtitle img {
    height: 20px;
    margin: 0 0.5rem;
}

.sec-title {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.title-higlight {
    color: #588157 !important;
}

.about-text {
	font-size: 1.1rem;
	line-height: 1.5;
	color: var(--text-light);
	margin-bottom: 1rem;
}

/* About Box Styles */
.about-box {
    margin-bottom: 2rem;
}

.about-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
}

.about-video img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(52, 78, 65, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    z-index: 2;
}

.play-btn:hover {
    background: #588157;
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    font-size: 1.2rem;
    margin-left: 2px;
}

/* About List Styles */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-item {
    display: flex;
    align-items: start;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    color: var(--text-light);
}

.list-item .icon {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top:4px;
}

/* About Button Styles */
.about-inner {
    margin-top: 2rem;
}

.vs-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #588157 !important;
    color: white !important;
    padding: 1.2rem 3rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    border: none;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    gap: 0.5rem;
}

.vs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.vs-btn:hover::before {
    left: 100%;
}

.vs-btn:hover {
    background: #4a6b4a !important;
    color: white !important;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.vs-btn i {
    margin-left: 0.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.vs-btn:hover i {
    transform: translateX(3px);
}

/* Animation Classes */
.wow {
    visibility: hidden;
}

.wow-animated {
    visibility: visible;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    animation: fadeInUp 1s ease-out;
}

/* About Layout 1 Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar{
        padding: 1.2rem 0 1.5rem;
    }
    .about-layout1 {
        padding: 0 1rem 3rem;
    }
    
    .about-layout1 .container-fluid {
        padding: 0 1rem;
    }
    
    .about-content {
        padding: 1rem;
        text-align:center;
    }

    .sec-subtitle {
        letter-spacing: 1px;
    }
    
    .img1 {
        height: 300px;
    }
    
    .sec-title {
        font-size: 2.25rem;
        padding-left:15px;
    }
    
    .about-text {
        font-size: 1rem;
        padding-left:15px;
    }

    .about-list {
        line-height: 115%;
    }

    .about-layout1 .text-box2 {
        bottom: 0;
        top:revert;
        width: 100%;
        text-align: center;
        border-radius: 15px;
    }

    .about-layout1 .text-box2__text {
        width: 200px;
        display: inline-block;
    }

    #what-we-stand-for {
        padding: 4em 1em 3em;
        text-align: center;
    }

    #why {
        padding: 0 2em;
        text-align: center;
    }

    #why .why-header{
        margin-bottom:15px;
    }

    #why h5{
        margin-top:30px;
    }

    .how-header h2{
        font-size:2rem;
    }

    .step-number{
        margin-right:auto;
    }

    .brand-text {
        position: relative;
        left: -10px;
    }

}

/* Features Section Styles */
.features-section {
    background: linear-gradient(#344e41, rgba(88, 129, 87, 0.9));
    padding: 4rem 1rem 6rem;
    margin: 4rem 0;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
}

.features-section h2 {
    color:#fff;
}

.feature-column {
    background: #f3ecdc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    height: 100%;
}

.feature-column:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-column:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 2rem;
    background: #f3ecdc;
    border-radius: 0 0 20px 20px;
}

.feature-content h3 {
    color: #2d2d2d;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Unbounded", sans-serif;
}

.feature-content p {
    color: #2d2d2d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* Features Section Mobile Responsiveness */
@media (max-width: 768px) {
    .features-section {
        padding: 2rem;
        margin: 3rem 0;
    }

    .features-section + div{
        margin-top: 0 !important;
    }

    .features-section h2 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.1rem;
        font-weight: 300;
        line-height: 120%;
    }
    
    .feature-column {
        margin-bottom: 2rem;
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }

    footer .text-md-end {
        margin: 1rem 0;
    }
}

/* What We Stand For Section Custom Styling */
#what-we-stand-for {
    background: #588157 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4em 0;
}

#what-we-stand-for .card-header {
    background: #588157 !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 2rem 2rem 1rem 2rem !important;
}

#what-we-stand-for h3 {
    color: white !important;
    font-family: "Unbounded", sans-serif !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

#what-we-stand-for .card-body {
    background: #588157 !important;
    border-radius: 0 !important;
    padding: 1rem 2rem 2rem 2rem !important;
}

#what-we-stand-for .card-text {
    color: white !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
}

#what-we-stand-for h5 {
    color: white !important;
    font-family: "Unbounded", sans-serif !important;
    font-weight: 600 !important;
    margin-bottom: 0.8rem !important;
}

#what-we-stand-for .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

#what-we-stand-for .fa-2x {
    color: #fee074 !important;
    margin-bottom: 1rem !important;
}

/* Contact Boxes Styling */

.page-header.contact{
    padding-bottom:7rem;
}

#contact{
    margin-top:-100px;
}
.contact-box {
    background: white;
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border: none;
    transition: var(--transition);
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-icon i {
    color: #588157;
    background: #f3ecdc;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.contact-box:hover .contact-icon i {
    background: #588157;
    color: white;
    transform: scale(1.1);
}

.contact-box h3 {
    color: var(--primary-color);
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: "Poppins", sans-serif;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    background: #588157;
    color: white;
    padding: 1rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-family: "Poppins", sans-serif;
    box-shadow: var(--shadow-light);
}

.contact-link:hover {
    background: #4a6b4a;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-link i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-link:hover i {
    transform: translateX(3px);
}

/* Contact Boxes Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-box {
        margin: -30px 30px 30px;
        padding: 2rem 1.5rem;
    }
    
    .contact-box h3 {
        font-size: 1.3rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
    }
    
    .contact-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Enhanced print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .card:hover {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
