
:root {
    --primary: #8B4513; 
    --secondary: #D2B48C; 
    --accent: #CD7F32; 
    --dark: #1A1A1A;
    --light: #F5F5F5;
    --success: #5cb85c;
    --danger: #d9534f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--accent);
}

header {
    background-color: var(--primary);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header {
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    text-align: center;
}

form {
    background: #ffffff;
    padding: 2rem;
    max-width: 500px;
    margin: auto;
    border-radius: 10px;
}

form input, form button {
    width: 100%;
    margin-top: 10px;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #07575b;
    color: white;
    cursor: pointer;
}
header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-style: italic;
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    margin-top: 3rem;
    margin-left: 5rem;
}

nav ul li {
    margin-right: 1.5rem;
    margin-left: 1rem;
}

nav ul li a {
    color: white;
    font-weight: 400;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary);
}

.register-btn a {
    background-color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
}

.register-btn a:hover {
    background-color: #b87333;
    color: white;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Image/naija\ mining.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Resources Section */
.resource-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-left: 4px solid var(--accent);
}

.download-btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #b87333;
}

/* Testimonials */
.testimonial-carousel {
    margin: 2rem 0;
}

.testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial .author {
    font-style: normal;
    font-weight: bold;
    margin-top: 0.5rem;
    color: var(--primary);
}

/* CTA Section */
#register-cta {
    text-align: center;
    padding: 3rem 0;
    margin: 2rem 0;
    background-color: var(--secondary);
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #6e3619;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    margin-right: 1rem;
}

.social-links img {
    width: 32px;
    height: 32px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-links img:hover {
    opacity: 1;
}

/* Auth Styles */
.auth-container {
    max-width: 600px;
    margin: 3rem auto;
}

.auth-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--dark);
    position: relative;
}

.tab-button.active {
    color: var(--primary);
    font-weight: bold;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
}

.auth-tab-content {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    margin-right: 0.5rem;
}

.forgot-password {
    text-align: right;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    nav ul {
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin-bottom: 0.5rem;
    }
}

footer {
    text-align: center;
}

form {
    background-color: #b87333;
}