:root {
    --primary-color: #d35400;
    --secondary-color: #f39c12;
    --dark-color: #333;
    --light-color: #f8f9fa;
}

.error {
    color: red;
}

/* Preloader */
.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-preloader .loader img.circle {
    width: 100px;
    height: auto;
    animation: spin 2s linear infinite;
}

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

/* Body */
body {
    font-family: 'Lora', serif;
    overflow-x: hidden;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #EEE4D3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 10px;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 80px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    position: relative; /* needed for ::after underline */
    color: black;
    font-weight: 500;
    margin: 0 5px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none; /* make sure no default underline */
}

.navbar-nav .nav-link:hover {
    color: #14934E;
    text-transform: uppercase;
}

/* underline effect */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; /* a little below text */
    width: 100%;
    height: 2px;
    background-color: #14934E;
    transform: scaleX(0) translateY(5px); /* fade-up effect */
    transform-origin: left;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1) translateY(0);
    opacity: 1;
}
.navbar-nav .nav-link {
    position: relative;
    color: black;
    font-weight: 500;
    margin: 0 5px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #14934E; /* keep green on active */
    text-transform: uppercase;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #14934E;
    transform: scaleX(0) translateY(5px);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1) translateY(0);
    opacity: 1;
}


.social-icons a {
    color: var(--dark-color);
    font-size: 18px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #14934E;
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(211, 84, 0, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #EEE4D3;
    color: #000;
    padding: 40px 20px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 8px;
}

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

.footer-links a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #14934E;
    padding-left: 5px;
}

.footer-social a {
    color: #000;
    font-size: 18px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #14934E;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 100px 0 140px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
   
    margin-top: 80px;
}

.breadcrumb-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Responsive Styles */

/* Large desktop */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3rem; }
}

/* Desktop / Laptop */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.5rem; }
    .about-content, .values-content { margin-top: 50px; }
}

/* Tablet */
@media (max-width: 768px) {
    .navbar-brand img { height: 35px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .contact-form { padding: 20px; }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-section { height: 80vh; }
    .social-icons a { margin-left: 10px; font-size: 16px; }
    .process-step { padding: 20px; }
    .contact-form { padding: 15px; }
    .form-control { padding: 12px; }
    .btn-primary { padding: 10px 20px; font-size: 0.9rem; }
    .breadcrumb-section h1 { font-size: 1.8rem; }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .hero-section { height: 60vh; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content p { font-size: 0.9rem; }
    .breadcrumb-section h1 { font-size: 1.5rem; }
    .navbar-nav .nav-link { font-size: 0.8rem; margin: 0 3px; }
    .social-icons a { font-size: 14px; margin-left: 8px; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: #14934E; /* optional: match brand color */
}
body, p, span, li, a {
    font-family: 'Montserrat', sans-serif;
    color: #333; /* optional: nicer than pure black */
}

/* Navigation, Buttons */
.navbar, .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.section-title {
    font-family: 'Lora', serif;
}
