:root {
    --dark-green: #0A2722;
    --light-text: #9CA3AF;
    --accent-color: #BFA280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-green);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* TopBar */
.top-bar {
    background: var(--dark-green);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-green);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-green);
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.contact-btn {
    background: var(--dark-green);
    color: white;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #0d302a;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 100;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-green);
    transition: all 0.3s ease;
}

/* Hero section */
.hero {
    height: 80vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 39, 34, 0.7);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--light-text);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.explore-btn {
    border: 1px solid white;
    background: transparent;
    color: white;
    padding: 12px 32px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.explore-btn:hover {
    background: white;
    color: var(--dark-green);
}


/* About Us Section */
.categories-section {
    padding: 100px 0;
}

.categories-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: "+";
    color: var(--accent-color);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    line-height: 1.2;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.section-description {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 20px;
    background: #f5f5f5;
}

.category-label {
    color: var(--accent-color);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.category-title {
    font-family: 'Cinzel', serif;
    color: var(--dark-green);
    font-size: 20px;
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: white;
        flex-direction: column;
        padding: 80px 40px;
        transition: right 0.3s ease;
        z-index: 90;
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-info {
        justify-content: center;
    }

    .contact-info span {
        display: none;
    }

    .header-content {
        padding: 15px 0;
    }

    .logo {
        font-size: 20px;
    }

    .hero {
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .categories-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .categories-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}


 /* Counter Section Styles */
.usp-section {
background: var(--dark-green);
color: white;
padding: 100px 0;
background-image: linear-gradient(rgba(10, 39, 34, 0.95), rgba(10, 39, 34, 0.95)), url('assets/counter -bg.jpg');
background-size: cover;
background-position: center;
}

.usp-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.usp-text {
max-width: 500px;
}

.usp-text .section-subtitle {
color: var(--accent-color);
}

.usp-text .section-title {
color: white;
margin-bottom: 30px;
}

.usp-description {
color: var(--light-text);
line-height: 1.8;
margin-bottom: 40px;
}

.counter-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}

.counter-item {
text-align: left;
}

.counter-number {
font-family: 'Cinzel', serif;
font-size: 42px;
color: var(--accent-color);
margin-bottom: 10px;
}

.counter-label {
color: var(--light-text);
font-size: 14px;
line-height: 1.6;
}

.explore-btn.dark {
border-color: var(--accent-color);
color: var(--accent-color);
}

.explore-btn.dark:hover {
background: var(--accent-color);
color: var(--dark-green);
}

/* FAQ Section Styles */
.faq-section {
padding: 100px 0;
background: white;
}

.faq-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}

.faq-list {
margin-top: 40px;
}

.faq-item {
border-bottom: 1px solid #eee;
}

.faq-question {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
background: none;
border: none;
cursor: pointer;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
color: var(--dark-green);
text-align: left;
}

.faq-question:hover {
color: var(--accent-color);
}

.plus-icon {
min-width: 24px;
transition: transform 0.3s ease;
}

.faq-item.active .plus-icon {
transform: rotate(45deg);
}

.faq-answer {
padding: 0;
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
color: var(--light-text);
line-height: 1.6;
}

.faq-item.active .faq-answer {
padding: 0 0 20px;
max-height: 1000px;
}

.consultant-image {
width: 100%;
height: auto;
border-radius: 4px;
}

@media (max-width: 968px) {
.usp-content,
.faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
}

.counter-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.usp-text {
    max-width: 100%;
}
}

@media (max-width: 768px) {
.usp-section,
.faq-section {
    padding: 60px 0;
}

.counter-number {
    font-size: 36px;
}
}


/* footer */
.footer {
background: var(--dark-green);
color: var(--light-text);
padding: 80px 0 0;
background-image: linear-gradient(rgba(10, 39, 34, 0.97), rgba(10, 39, 34, 0.97)), url('assets/footer-image-bg.jpg');
background-size: cover;
background-position: center;
}

.footer-content {
display: grid;
grid-template-columns: 1.5fr 2fr 2fr;
gap: 60px;
padding-bottom: 60px;
}

.footer-brand {
max-width: 300px;
}

.footer-logo {

font-family: 'Cinzel', serif;
font-size: 24px;
font-weight: 600;
color: white;
text-decoration: none;
display: inline-block;
margin-bottom: 20px;
}

.footer-description {
line-height: 1.6;
margin-bottom: 30px;
font-size: 14px;
}

.social-links {
display: flex;
gap: 15px;
}

.social-link {
width: 40px;
height: 40px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
color: var(--light-text);
transition: all 0.3s ease;
}

.social-link:hover {
border-color: var(--accent-color);
color: var(--accent-color);
}

.footer-links,
.footer-contact {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}

.footer-heading {
color: white;
font-size: 14px;
font-weight: 500;
margin-bottom: 20px;
letter-spacing: 1px;
}

.footer-list {
list-style: none;
padding: 0;
margin: 0;
font-size: 14px;
}

.footer-list li {
margin-bottom: 12px;
}

.footer-list a {
color: var(--light-text);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-list a:hover {
color: var(--accent-color);
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 20px 0;
}

.footer-bottom-content {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
}

.footer-legal {
display: flex;
gap: 20px;
}

.footer-legal a {
color: var(--light-text);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-legal a:hover {
color: var(--accent-color);
}

@media (max-width: 1200px) {
.footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand {
    max-width: 100%;
    text-align: center;
}

.social-links {
    justify-content: center;
}

.footer-links,
.footer-contact {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.footer {
    padding-top: 60px;
}

.footer-links,
.footer-contact {
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-legal {
    justify-content: center;
}
}






