:root {
    --primary-color: #2c5530;
    --secondary-color: #7ba05b;
    --accent-color: #f4a261;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-out;
}

/* Header Styles */
.navbar-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar-nav > li > a {
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav > li > a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.9), rgba(123, 160, 91, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="fabric" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="url(%23fabric)"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(244, 162, 97, 0.1));
    animation: shimmer 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-color), #e76f51);
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 162, 97, 0.6);
    color: white;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 162, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding: 30px;
    }
}

/* Utility Classes */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.text-accent {
    color: var(--accent-color);
}


.wrapper {
	height: auto !important;
	margin: 0 auto -100px; /* the bottom margin is the negative value of the footer's height */
    /* background: lightgray; */
    background-color: linear-gradient(135deg, rgba(44, 85, 48, 0.9), rgba(123, 160, 91, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="fabric" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="url(%23fabric)"/></svg>');
    
    position: relative;
    z-index: 0;
}
.extra-space-bottom {
    margin-bottom: 150px;
}

.wrapper:after {
    content: "";
    display: block;
    height: 0px;
}

.navbar {
    margin-bottom: 0px;
    list-style: none;
}

.navbar-fixed-bottom {
    background-color: green;
    color: #AAB7B8;
    z-index: 9;
    position: sticky;
}

#page-footer, .wrapper:after {
	height: 100px; /* '.push' must be the same height as 'footer' */
}

.bottom-float {
    float: left;
    display: inline;
}

.someshiz {
    padding-top: 10px;
}

.panel {
    word-wrap:break-word;
    word-break:keep-all;
}

.status-btn-group-mc {
    float: right !important;
}

.btn-secondary {
    position: relative;
    z-index: 2;  /* Higher than wrapper but won't affect other page elements */
}

.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s infinite linear;
}

.blacken {
    background: black;
    /* height: 5000px; */
    width: 100%;
}

.whiten {
    /* background: lightgray; */
    /* height: 5000px; */
    width: 100%;
    background-color: linear-gradient(135deg, rgba(44, 85, 48, 0.9), rgba(123, 160, 91, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="fabric" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="url(%23fabric)"/></svg>');
    ;
    color: #FFFFF0;
}

.noscroll {
    /* position: fixed; */
    overflow-y: hidden;
}

.masthead {
    display: table;
    width: 100%;
    height: auto;
    text-align: center;
    color: lightgrey;
}

.spacer {  margin-top: 40px; }

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}

.upper {
    text-transform: uppercase;
}

::-webkit-scrollbar {
    display: none;
}


author-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.author-info img {
    border-radius: 50%;
    margin-right: 20px;
    width: 100px;
    height: 100px;
}
.author-details {
    display: flex;
    flex-direction: column;
}
.author-details h3 {
    margin: 0;
}
.author-details p {
    margin: 5px 0 0 0;
    color: #777;
}
.date {
    text-align: right;
    color: #777;
}
.copyright {
    text-align: center;
    margin-top: 20px;
    color: #777;
}
.date {
    color: #7f8c8d;
    font-style: italic;
}
.summary {
    background-color: #f9f9f9;
    border-left: 4px solid #2980b9;
    padding: 10px;
    margin-bottom: 20px;
}
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}