
:root {
--primary-color: #1e6b52;
--secondary-color: #d4af37;
--dark-color: #2c3e50;
--light-color: #f8f9fa;
--text-color: #333;
--shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Open Sans', sans-serif;
color: var(--text-color);
line-height: 1.6;
overflow-x: hidden;
padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
color: var(--dark-color);
}

/* Navbar Styles */
.navbar {
background-color: rgba(255, 255, 255, 0.95);
box-shadow: var(--shadow);
padding: 1rem 0;
transition: all 0.3s ease;
}

.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
color: var(--primary-color) !important;
}

.navbar-brand span {
color: var(--secondary-color);
}

.nav-link {
font-weight: 600;
color: var(--dark-color) !important;
margin: 0 10px;
transition: color 0.3s;
}

.nav-link:hover {
color: var(--primary-color) !important;
}

.nav-link.active {
color: var(--primary-color) !important;
position: relative;
}

.nav-link.active:after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 3px;
background-color: var(--primary-color);
}

.navbar-toggler {
border: none;
padding: 0;
}

.navbar-toggler:focus {
box-shadow: none;
}

/* Page Hero */
.page-hero {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('modque.jpg');
background-size: cover;
background-position: center;
padding: 120px 0 80px;
color: white;
text-align: center;
}

.page-hero h1 {
font-size: 3.5rem;
color: white;
margin-bottom: 1rem;
}

.page-hero p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto;
}

@media (max-width: 768px) {
.page-hero h1 {
font-size: 2.5rem;
}
}

/* Contact Section */
.contact-section {
padding: 100px 0;
}

.section-title {
position: relative;
margin-bottom: 3rem;
padding-bottom: 1rem;
}

.section-title:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 4px;
background-color: var(--secondary-color);
}

.section-title.text-center:after {
left: 50%;
transform: translateX(-50%);
}

/* Contact Info */
.contact-info-card {
background-color: white;
border-radius: 10px;
padding: 2.5rem;
box-shadow: var(--shadow);
height: 100%;
margin-bottom: 30px;
}

.contact-icon {
width: 70px;
height: 70px;
background-color: var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}

.contact-icon i {
font-size: 1.8rem;
color: white;
}

.contact-details h4 {
margin-bottom: 1rem;
}

.contact-details p {
margin-bottom: 0.5rem;
}

.contact-details a {
color: var(--text-color);
text-decoration: none;
transition: color 0.3s;
}

.contact-details a:hover {
color: var(--primary-color);
}

/* Contact Form */
.contact-form-card {
background-color: white;
border-radius: 10px;
padding: 2.5rem;
box-shadow: var(--shadow);
}

.form-control {
padding: 0.8rem 1rem;
border: 1px solid #ddd;
border-radius: 8px;
margin-bottom: 1.5rem;
transition: all 0.3s;
}

.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.25rem rgba(30, 107, 82, 0.25);
}

textarea.form-control {
min-height: 150px;
resize: vertical;
}

.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
padding: 0.8rem 2.5rem;
font-weight: 600;
transition: all 0.3s;
}

.btn-primary:hover {
background-color: #15573d;
border-color: #15573d;
transform: translateY(-3px);
box-shadow: var(--shadow);
}

/* Map Section */
.map-section {
padding: 0 0 100px;
}

.map-container {
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
height: 450px;
position: relative;
}

.map-placeholder {
background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('');
background-size: cover;
background-position: center;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.map-overlay {
background-color: rgba(30, 107, 82, 0.9);
color: white;
padding: 2rem;
border-radius: 10px;
text-align: center;
max-width: 400px;
}

/* FAQ Section */
.faq-section {
padding: 100px 0;
background-color: #f8f9fa;
}

.accordion-item {
border: none;
margin-bottom: 1rem;
border-radius: 10px !important;
overflow: hidden;
box-shadow: var(--shadow);
}

.accordion-button {
background-color: white;
font-weight: 600;
font-size: 1.1rem;
padding: 1.5rem;
border: none;
}

.accordion-button:not(.collapsed) {
background-color: var(--primary-color);
color: white;
box-shadow: none;
}

.accordion-button:focus {
box-shadow: none;
border-color: transparent;
}

.accordion-body {
padding: 1.5rem;
background-color: white;
}

/* Team Contacts */
.team-contact-section {
padding: 100px 0;
}

.team-member-contact {
text-align: center;
margin-bottom: 30px;
}

.member-img {
width: 150px;
height: 150px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto 1.5rem;
border: 5px solid #f8f9fa;
box-shadow: var(--shadow);
}

.member-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

.member-contact-info {
margin-top: 1rem;
}

.member-contact-info a {
display: block;
color: var(--text-color);
text-decoration: none;
margin-bottom: 0.5rem;
transition: color 0.3s;
}

.member-contact-info a:hover {
color: var(--primary-color);
}

/* CTA Section */
.cta-section {
padding: 100px 0;
background: linear-gradient(rgba(30, 107, 82, 0.9), rgba(30, 107, 82, 0.9)), url('Bamyan.jpg');
background-size: cover;
background-position: center;
color: white;
text-align: center;
}

.cta-section h2 {
color: white;
}

.btn-light {
padding: 0.8rem 2rem;
font-weight: 600;
transition: all 0.3s;
}

.btn-light:hover {
transform: translateY(-3px);
box-shadow: var(--shadow);
}

/* Footer */
.footer {
background-color: var(--dark-color);
color: white;
padding: 70px 0 30px;
}

.footer-logo {
font-size: 1.8rem;
font-weight: 700;
color: white;
margin-bottom: 1.5rem;
display: inline-block;
}

.footer-logo span {
color: var(--secondary-color);
}

.footer h5 {
color: white;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.8rem;
}

.footer h5:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background-color: var(--secondary-color);
}

.footer-links {
list-style: none;
padding-left: 0;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: #bbb;
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: white;
padding-left: 5px;
}

.social-icons a {
display: inline-block;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
text-align: center;
line-height: 40px;
margin-right: 10px;
color: white;
transition: all 0.3s;
}

.social-icons a:hover {
background-color: var(--primary-color);
transform: translateY(-5px);
}

.copyright {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
margin-top: 50px;
text-align: center;
color: #bbb;
font-size: 0.9rem;
}

/* Form Validation Styles */
.form-control.error {
border-color: #dc3545;
}

.form-control.success {
border-color: #198754;
}

.form-feedback {
font-size: 0.875rem;
margin-top: -1rem;
margin-bottom: 1rem;
}

.form-feedback.error {
color: #dc3545;
}

.form-feedback.success {
color: #198754;
}


