
: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;
}

/* Hero Section */
.page-hero {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('Bamyan.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;
}
}

/* About Section */
.about-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%);
}

.about-img {
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
}

.about-img img {
width: 100%;
height: auto;
transition: transform 0.5s;
}

.about-img:hover img {
transform: scale(1.05);
}

.stat-box {
text-align: center;
padding: 2rem;
background-color: #f8f9fa;
border-radius: 10px;
transition: transform 0.3s;
}

.stat-box:hover {
transform: translateY(-10px);
box-shadow: var(--shadow);
}

.stat-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.stat-text {
font-size: 1.1rem;
font-weight: 600;
}

/* Values Section */
.values-section {
padding: 100px 0;
background-color: #f8f9fa;
}

.value-card {
text-align: center;
padding: 2.5rem 1.5rem;
background-color: white;
border-radius: 10px;
box-shadow: var(--shadow);
height: 100%;
transition: transform 0.3s;
}

.value-card:hover {
transform: translateY(-10px);
}

.value-icon {
width: 80px;
height: 80px;
background-color: var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}

.value-icon i {
font-size: 2rem;
color: white;
}

/* Team Section */
.team-section {
padding: 100px 0;
}

.team-member {
text-align: center;
margin-bottom: 30px;
}

.member-img {
width: 200px;
height: 200px;
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;
transition: transform 0.5s;
}

.member-img:hover img {
transform: scale(1.1);
}

.member-name {
font-size: 1.3rem;
margin-bottom: 0.5rem;
}

.member-position {
color: var(--primary-color);
font-weight: 600;
margin-bottom: 1rem;
}

.member-social a {
display: inline-block;
width: 36px;
height: 36px;
background-color: #f8f9fa;
border-radius: 50%;
text-align: center;
line-height: 36px;
margin: 0 5px;
color: var(--dark-color);
transition: all 0.3s;
}

.member-social a:hover {
background-color: var(--primary-color);
color: white;
transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
padding: 100px 0;
background: linear-gradient(rgba(30, 107, 82, 0.9), rgba(30, 107, 82, 0.9)), url('modque.jpg');
background-size: cover;
background-position: center;
color: white;
text-align: center;
}

.cta-section h2 {
color: white;
}

.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
padding: 0.8rem 2rem;
font-weight: 600;
transition: all 0.3s;
}

.btn-primary:hover {
background-color: #15573d;
border-color: #15573d;
transform: translateY(-3px);
box-shadow: var(--shadow);
}

.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;
}