:root {
    --primary: #1a3a5f;
    --secondary: #c9a145;
    --accent: #2c6a8f;
    --dark: #0d1b2a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 4px;
    z-index: -2;
}

.btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent);
    transition: var(--transition);
    border-radius: 4px;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--secondary);
}

.btn-secondary:after {
    background-color: var(--secondary);
}

.btn-secondary:before {
    background-color: rgba(201, 161, 69, 0.8);
}

.section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* Topbar */
.topbar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info span {
    white-space: nowrap;
}

.contact-info i {
    margin-right: 5px;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.lang-switcher {
    display: flex;
    margin-left: 10px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 12px;
    padding: 0 5px;
    transition: var(--transition);
}

.lang-btn.active {
    color: var(--secondary);
    font-weight: 600;
}

.lang-btn:hover {
    color: var(--secondary);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    margin-right: 8px;
}

.logo-text {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--secondary);
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    position: relative;
    margin-left: 15px;
}

.navbar ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar ul li a:hover {
    color: var(--secondary);
}

.navbar ul li a i {
    margin-left: 3px;
    font-size: 10px;
}

/* Enhanced Vertical Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 220px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border-radius: 0 0 5px 5px;
    padding: 8px 0;
    border-top: 3px solid var(--secondary);
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    transition: var(--transition);
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    width: 100%;
    transition: var(--transition);
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

.dropdown-menu li a:hover {
    background: rgba(26, 58, 95, 0.05);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-menu li a:hover:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--secondary);
    border-radius: 50%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    height: 500px;
    background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.85)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1685&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 15px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white);
}

.hero p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero .btn {
    width: 200px;
    text-align: center;
}

/* We Work With / Our Materials Brands */
.brands-section {
    text-align: center;
    padding: 80px 0;
    background: var(--light, #f9fafb);
}

.brands-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark, #1a3a5f);
}

.brands-section .section-header p {
    font-size: 16px;
    color: var(--gray, #555);
    margin-bottom: 40px;
}

/* Brands grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    justify-items: center;
    align-items: center;
}

/* Brand logo card */
.brand-logo {
    background: var(--white, #fff);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 160px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.brand-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.brand-logo:hover img {
    transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .brands-section {
        padding: 60px 0;
    }

    .brands-section .section-header h2 {
        font-size: 26px;
    }

    .brands-grid {
        gap: 20px;
    }

    .brand-logo {
        max-width: 140px;
        height: 100px;
    }

    .brand-logo img {
        max-height: 70px;
    }
}

/* Hover effect */
.brand-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Logo text */
.brand-logo .logo-text {
    font-size: 14px;
    color: var(--primary);
    margin-top: 8px;
}

/* Force 5 logos per row on desktop */
@media (min-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Force 7 logos per row on extra large screens */
@media (min-width: 1400px) {
    .brands-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

/* All Services Section */
.all-services-section {
    background: linear-gradient(rgba(26, 58, 95, 0.03), rgba(26, 58, 95, 0.03));
    padding: 80px 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-item {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--secondary);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--primary);
}

.service-item p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Our Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--primary);
}

.service-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Product Comparison */
.comparison-section {
    background: var(--light);
    padding: 60px 0;
}

.comparison-container {
    overflow-x: auto;
    margin-top: 20px;
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--gray);
    font-size: 14px;
}

.comparison-table tr:nth-child(even) {
    background: rgba(26, 58, 95, 0.03);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.featured {
    background: rgba(201, 161, 69, 0.1) !important;
    font-weight: 600;
}

/* Why Choose Us */
.why-choose {
    background: linear-gradient(rgba(13, 27, 42, 0.95), rgba(13, 27, 42, 0.95)), url('https://images.unsplash.com/photo-1517646287270-a5a9ca602e5c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 60px 0;
}

.why-choose .section-header h2 {
    color: var(--white);
}

.why-choose .section-header h2:after {
    background: var(--secondary);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
}

.feature i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 18px;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Projects Gallery Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.project-card {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 58, 95, 0.9), transparent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 1;
    transition: var(--transition);
}

.project-card .overlay h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--white);
}

.project-card .overlay p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.btn-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 8px 15px;
    font-size: 13px;
}

.btn-light:after {
    background: transparent;
}

.btn-light:before {
    background: rgba(255, 255, 255, 0.2);
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

/* Our Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.team-member {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member-img {
    height: 250px;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member-info {
    padding: 25px 20px;
}

.team-member h3 {
    margin-bottom: 8px;
    color: var(--primary);
}

.team-member p.position {
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: var(--light);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
}

.faq-question i {
    color: var(--secondary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* Testimonials */
.testimonials-section {
    background: var(--white);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--secondary);
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.client-details p {
    color: var(--secondary);
    margin-bottom: 0;
    font-style: normal;
    font-weight: 600;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-img {
    height: 250px;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 600;
}

.blog-date {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.blog-date i {
    margin-right: 8px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
    transition: var(--transition);
}

.blog-card:hover h3 {
    color: var(--secondary);
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(rgba(26, 58, 95, 0.9), rgba(26, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1560448204-603b3fc33ddc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.contact-info-card i {
    font-size: 45px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    margin-bottom: 15px;
    color: var(--white);
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

.footer-logo {
    margin-bottom: 20px;
    display: block;
    max-width: 180px;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #aaa;
}

.contact-info i {
    margin-right: 15px;
    color: var(--secondary);
    font-size: 18px;
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .contact-info {
        justify-content: center;
        margin-bottom: 8px;
    }
    
    .lang-switcher {
        justify-content: center;
        margin: 8px 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .header .container {
        flex-direction: row;
        align-items: center;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .navbar.active {
        display: block;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .navbar ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .navbar ul li a {
        padding: 12px 20px;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: rgba(26, 58, 95, 0.03);
        border-top: none;
        padding-left: 30px;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding-left: 30px;
    }
    
    .dropdown-menu li a:hover {
        padding-left: 35px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
