* {
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: #cbad8d;
    margin: 0;
    padding: 0;
}

a {
    color: #993333;
}

a:hover {
    color: #662222;
    text-decoration: none;
}

/* Header Styles */
.header {
    background-color: #993333;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 80px;
    width: 200px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.6;
}

/* Dropdown menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #993333;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    top: 100%;
    left: 0;
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #993333;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-container {
        padding: 0 15px;
    }

    .logo {
        max-width: 220px;
    }

    .welcome-banner {
        padding: 40px 0;
    }

    .welcome-banner h1 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .welcome-banner p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .section {
        padding: 50px 0;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .service-box {
        margin-bottom: 20px;
    }
}

/* Main content */
.main-content {
    margin-top: 80px;
}

/* Welcome Banner */
.welcome-banner {
    background-color: #993333;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.welcome-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.welcome-banner p {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background-color: #993333;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section styles */
.section {
    padding: 80px 0;
}

.section-bg-light {
    background-color: #cbad8d;
}

.section-bg-white {
    background-color: #ffffff;
}

.section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #993333;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
}

/* Service boxes */
.service-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    color: #993333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Clients section */
.clients-section {
    text-align: center;
}

.clients-section h2 {
    color: #993333;
    margin-bottom: 20px;
}

.clients-section p {
    color: #333333;
    margin-bottom: 40px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.client-logo {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.client-logo:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background-color: #000;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 28px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.6;
}

.footer-info {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

.footer-info a {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {

    .welcome-banner h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .welcome-banner p,
    .page-header p {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Market Entry hover effect */
.market-entry-link {
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px;
    text-decoration: none;
}

.market-entry-link:hover {
    transform: translateY(-2px);
}

.market-entry-link:hover h2,
.market-entry-link:hover h3 {
    color: #7a2828 !important;
}

/* Service cards hover effects */
.col-md-4[id="content-social-advocacy"],
.col-md-4[id="communications-pr"],
.col-md-4[id="upskilling"] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.col-md-4[id="content-social-advocacy"]:hover,
.col-md-4[id="communications-pr"]:hover,
.col-md-4[id="upskilling"]:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.col-md-4[id="content-social-advocacy"]:hover h2,
.col-md-4[id="communications-pr"]:hover h2,
.col-md-4[id="upskilling"]:hover h2 {
    color: #7a2828 !important;
}

/* Services Section Styles */
.service-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #993333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(153, 51, 51, 0.15);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #f8f4f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background: #993333;
}

.service-card:hover .service-icon svg path {
    fill: #ffffff;
}

.service-card:hover .service-icon svg {
    filter: brightness(0) invert(1);
}

.service-card h3 {
    color: #993333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Grid spacing */
.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.g-4>* {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .service-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}

/* Utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}