/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.cta-btn, .btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
}

.cta-btn {
    background: #D4AF37;
    color: #000;
}

.cta-btn:hover {
    transform: scale(1.05);
    background: #fff;
}

.btn-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Navbar */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #D4AF37;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(212, 175, 55, 0.9);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a.active {
    font-weight: 700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after, 
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: #fff;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 30px;
    height: 3px;
    background: #000;
    margin: 6px;
    transition: all 0.3s ease;
}

/* Main Content */
main {
    padding-top: 80px; /* To account for fixed navbar */
}

/* Banner Section */
.page-banner {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('../images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 60px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 48px;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 20px;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    margin-top: -80px; /* To offset the padding-top on main */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 60px;
    color: #D4AF37;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 24px;
    margin: 20px 0 30px;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.03);
}

.about-preview .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.rounded-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Services Preview Section */
.services-preview {
    padding: 100px 0;
}

.services-preview h2 {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-icon {
    margin-bottom: 20px;
    font-size: 36px;
    color: #D4AF37;
}

.service-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 22px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
}

.services-cta {
    text-align: center;
    margin-top: 30px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.stats h2 {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: 48px;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials h2 {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-align: center;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    color: #D4AF37;
    margin-bottom: 5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.prev-slide, .next-slide {
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #D4AF37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    font-size: 20px;
    transition: background 0.3s;
}

.prev-slide:hover, .next-slide:hover {
    background: #fff;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
}

.cta-section h2 {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
}

.about-intro {
    margin-bottom: 80px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-history {
    margin-bottom: 80px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #D4AF37;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #D4AF37;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    margin-top: 60px;
}

.timeline-content h3 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.value-icon {
    font-size: 36px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.team-section {
    margin-bottom: 80px;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    color: #D4AF37;
    margin-bottom: 5px;
}

.member-role {
    color: #ccc;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    margin-bottom: 15px;
}

.member-social a {
    color: #D4AF37;
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s;
}

.member-social a:hover {
    color: #fff;
}

.partners-section {
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: brightness(0.9);
}

/* Services Page Styles */
.services-intro, .projects-intro, .blog-intro, .contact-intro {
    text-align: center;
    padding: 0 0 60px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.services-main {
    padding: 0 0 80px;
}

.services-process {
    background: rgba(255, 255, 255, 0.03);
    padding: 80px 0;
    text-align: center;
}

.process-steps {
    max-width: 800px;
    margin: 40px auto 0;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    text-align: left;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #D4AF37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
}

.step-content h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.services-testimonials, .services-faq {
    padding: 80px 0;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    color: #D4AF37;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Projects Page Styles */
.projects-featured {
    padding: 0 0 80px;
}

.featured-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-item {
    position: relative;
    min-width: 100%;
    transition: transform 0.5s ease;
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    text-align: left;
}

.carousel-caption h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 24px;
}

.carousel-caption p {
    margin-bottom: 20px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D4AF37;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    color: #000;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-prev:hover, .carousel-next:hover {
    background: #fff;
}

.carousel-prev { left: -25px; }
.carousel-next { right: -25px; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active, .indicator:hover {
    background: #D4AF37;
}

.projects-gallery {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.view-project {
    padding: 10px 20px;
    background: #D4AF37;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.project-image:hover .view-project {
    transform: translateY(0);
}

.project-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
}

.project-info h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.project-info p {
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tags span {
    padding: 5px 10px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    font-size: 14px;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

.projects-stats {
    padding: 80px 0;
}

/* Blog Page Styles */
.blog-featured {
    padding: 0 0 80px;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: #D4AF37;
    color: #000;
    font-weight: 700;
    border-radius: 30px;
}

.featured-content {
    padding: 40px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.article-category, .article-date {
    color: #ccc;
    font-size: 14px;
}

.featured-content h2 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 28px;
}

.article-author {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog-filters {
    padding: 0 0 40px;
}

.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.category-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.search-blog form {
    display: flex;
    align-items: center;
}

.search-blog input {
    padding: 10px 15px;
    border-radius: 30px 0 0 30px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 200px;
}

.search-blog button {
    padding: 10px 15px;
    border-radius: 0 30px 30px 0;
    border: none;
    background: #D4AF37;
    color: #000;
    cursor: pointer;
}

.blog-main {
    padding: 0 0 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    background: #D4AF37;
    color: #000;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.card-content {
    padding: 20px;
}

.card-date {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.card-content h3 {
    color: #D4AF37;
    margin-bottom: 10px;
    font-size: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: color 0.3s;
}

.read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.read-more:hover {
    color: #fff;
}

.read-more:hover i {
    margin-left: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 10px;
}

.pagination a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a.active, .pagination a:hover {
    background: #D4AF37;
    color: #000;
}

.pagination a.next {
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.pagination a.next i {
    margin-left: 5px;
}

.blog-newsletter {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.newsletter-form {
    flex: 1;
}

.form-group {
    display: flex;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.form-group button {
    padding: 15px 30px;
    border: none;
    border-radius: 0 30px 30px 0;
    background: #D4AF37;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.form-group button:hover {
    background: #fff;
}

.form-policy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.form-policy input {
    margin-top: 5px;
}

.form-policy a {
    color: #D4AF37;
    text-decoration: none;
}

.form-policy a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-main {
    padding: 0 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 15px;
}

.contact-form-container h3 {
    color: #D4AF37;
    margin-bottom: 30px;
    font-size: 24px;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

#contact-form label {
    margin-bottom: 8px;
    color: #D4AF37;
}

#contact-form input, 
#contact-form textarea,
#contact-form select {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    resize: none;
}

#contact-form input:focus, 
#contact-form textarea:focus,
#contact-form select:focus {
    outline: 2px solid rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

#contact-form select {
    appearance: none;
    background-image: url('../images/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.form-submit {
    margin-top: 20px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 15px;
}

.contact-info h3 {
    color: #D4AF37;
    margin-bottom: 30px;
    font-size: 24px;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 24px;
    margin-right: 20px;
}

.info-content h4 {
    color: #D4AF37;
    margin-bottom: 5px;
}

.info-content a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #D4AF37;
}

.social-connect {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 15px;
}

.social-connect h3 {
    color: #D4AF37;
    margin-bottom: 30px;
    font-size: 24px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 24px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-5px);
}

.contact-map {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.contact-map h3 {
    color: #D4AF37;
    margin-bottom: 30px;
    text-align: center;
    font-size: 24px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-departments {
    padding: 80px 0;
}

.contact-departments h3 {
    color: #D4AF37;
    margin-bottom: 40px;
    text-align: center;
    font-size: 24px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.department-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.department-card:hover {
    transform: translateY(-10px);
}

.department-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 36px;
    margin: 0 auto 20px;
}

.department-card h4 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.department-card p {
    margin-bottom: 15px;
}

.department-card a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.department-card a:hover {
    color: #fff;
}

.contact-faq {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.contact-faq h3 {
    color: #D4AF37;
    margin-bottom: 40px;
    text-align: center;
    font-size: 24px;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    border-top: 5px solid #D4AF37;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    padding: 60px 50px;
}

.footer-logo h3 {
    font-size: 28px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #D4AF37;
}

.newsletter h4 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 18px;
}

#newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#newsletter input {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

#newsletter button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #D4AF37;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

#newsletter button:hover {
    background: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #000;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links a {
    color: #D4AF37;
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #D4AF37;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }
    
    .hero-content h1 {
        font-size: 50px;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }
    
    .navbar {
        padding: 15px 30px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
        /* Ajoutez cette partie pour que les textes du menu burger soient blancs */
    .nav-links li a {
        color: white;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .about-preview .container {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
      .nav-links {
        /* Vos styles existants pour le menu mobile */
    }
    
    .nav-links li a {
        color: white; /* Cette ligne rend le texte blanc */
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    .nav-links.active {
        max-height: 400px;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center ;
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    }
    
    .burger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section h1,
    .banner-content h1,
    .intro-content h2 {
        font-size: 32px;
    }
    
    .stats-grid,
    .services-grid,
    .projects-grid,
    .blog-grid,
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
    
    .filters-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Font Icon Placeholders (replace with actual icon font) */
[class^="icon-"] {
    font-family: sans-serif; /* Replace with your icon font */
}

.icon-tech::before { content: "💻"; }
.icon-consult::before { content: "📊"; }
.icon-sustain::before { content: "🌱"; }
.icon-event::before { content: "🎭"; }
.icon-youth::before { content: "🏆"; }
.icon-consulting::before { content: "📈"; }
.icon-investment::before { content: "💰"; }
.icon-innovation::before { content: "💡"; }
.icon-engagement::before { content: "🤝"; }
.icon-excellence::before { content: "🏅"; }
.icon-integrity::before { content: "🛡️"; }
.icon-email::before { content: "✉️"; }
.icon-phone::before { content: "📞"; }
.icon-location::before { content: "📍"; }
.icon-clock::before { content: "🕒"; }
.icon-career::before { content: "👔"; }
.icon-linkedin::before { content: "in"; }
.icon-twitter::before { content: "tw"; }
.icon-instagram::before { content: "ig"; }
.icon-facebook::before { content: "fb"; }
.icon-github::before { content: "gh"; }
.icon-search::before { content: "🔍"; }
.icon-arrow-right::before { content: "→"; }
.event-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-popup-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 700px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.5s;
    text-align: center;
}

.event-title {
    color: #333;
    margin-top: 5px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    max-height: 70vh;
    object-fit: contain;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup:hover {
    color: #ff4d4d;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes scaleIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}