

: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('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;
}
}

/* Services Overview */
.services-overview {
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%);
}

.overview-card {
text-align: center;
padding: 2.5rem 1.5rem;
border-radius: 10px;
height: 100%;
transition: all 0.3s;
border: 1px solid #eee;
}

.overview-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow);
border-color: transparent;
}

.overview-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;
}

.overview-icon i {
font-size: 2rem;
color: white;
}

/* Service Details */
.service-details {
padding: 100px 0;
background-color: #f8f9fa;
}

.service-card {
background-color: white;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
margin-bottom: 30px;
transition: transform 0.3s;
height: 100%;
}

.service-card:hover {
transform: translateY(-10px);
}

.service-img {
height: 250px;
overflow: hidden;
}

.service-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

.service-card:hover .service-img img {
transform: scale(1.1);
}

.service-content {
padding: 2rem;
}

.service-features {
list-style: none;
padding-left: 0;
margin-top: 1.5rem;
}

.service-features li {
margin-bottom: 0.8rem;
padding-left: 1.5rem;
position: relative;
}

.service-features li:before {
content: '\f00c';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
left: 0;
color: var(--primary-color);
}

.service-price {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
margin-top: 1rem;
}

/* Testimonials */
.testimonials-section {
padding: 100px 0;
}

.testimonial-card {
background-color: white;
padding: 2rem;
border-radius: 10px;
box-shadow: var(--shadow);
margin-bottom: 30px;
position: relative;
height: 100%;
}

.testimonial-card:before {
content: '\f10d';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
top: 20px;
right: 20px;
font-size: 2rem;
color: rgba(30, 107, 82, 0.1);
}

.testimonial-text {
font-style: italic;
margin-bottom: 1.5rem;
}

.testimonial-author {
display: flex;
align-items: center;
}

.author-img {
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
margin-right: 1rem;
}

.author-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

.author-info h5 {
margin-bottom: 0.2rem;
}

.author-info p {
color: #666;
margin-bottom: 0;
font-size: 0.9rem;
}

/* 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;
}

/* 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-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-outline-light {
padding: 0.8rem 2rem;
font-weight: 600;
transition: all 0.3s;
}

.btn-outline-light:hover {
background-color: rgba(255, 255, 255, 0.1);
transform: translateY(-3px);
}

/* 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;
}

/* Service Badge */
.service-badge {
position: absolute;
top: 20px;
right: 20px;
background-color: var(--secondary-color);
color: white;
padding: 0.3rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
}