* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Monochrome','Arial', sans-serif;
    src: url('/static/fonts/Monochrome-Regular.woff2') format('woff2'),
         url('/static/fonts/Monochrome-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    line-height: 1.6;
    font-size: 1.08rem;
    color: #333;
    padding-top: 0 !important;
    margin: 0 !important;
}

body.login-page {
    padding-top: 120px;
}

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

/* === COLOR PALETTE UPDATE === */
:root {
  --primary: #296BB4;
  --secondary: #2CAB4A;
}

/* Header and Navigation */
header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1600px;
    width: 90vw;
    border-radius: 20px;
    padding: 0 32px;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

header.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    border-radius: 20px;
    top: 0;
}

header.scrolled .logo {
    color: #fff;
}

header.scrolled .nav-links a {
    color: #111 !important;
}

header.scrolled .login-btn {
    background: var(--secondary);
    color: #fff;
    border: none;
}

header.scrolled .login-btn:hover {
    background: #fff;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    filter: brightness(1.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #296BB4;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    margin-right: 12px;
}

.logo:hover {
    color: #2CAB4A;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0 auto;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

header.scrolled .nav-links a {
    color: #111 !important;
}

.nav-links a.active, .nav-links a:focus, .nav-links a:hover {
    color: #2CAB4A;
}

header.scrolled .nav-links a.active, header.scrolled .nav-links a:focus, header.scrolled .nav-links a:hover {
    color: #F1BB1B;
}

.nav-links a:after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    border-radius: 2px;
    background-color: #2CAB4A;
    transition: width 0.3s;
    margin: 0 auto;
}

.nav-links a.active:after, .nav-links a:focus:after, .nav-links a:hover:after {
    width: 60%;
}

header.scrolled .nav-links a:after {
    background-color: #F1BB1B;
}

.login-btn {
    background: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
    padding: 0.8rem 2.5rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(44,171,74,0.08);
    text-decoration: none;
}

.login-btn:hover {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    filter: brightness(1.15);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
}

@media (max-width: 768px) {
    header.scrolled {
        border-radius: 0;
        margin: 0;
        max-width: 100vw;
    }
    nav {
        padding: 1rem 1rem;
    }
    .logo {
        flex: none;
    }
    .mobile-menu-btn {
        margin-left: auto;
    }
    .logo img {
        height: 36px;
        margin-right: 8px;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 1rem 0;
    }
    header.scrolled .nav-links {
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 0.8rem 0.5rem;
        font-size: 1rem;
    }
    .nav-links a:after {
        display: none;
    }
    .login-btn {
        margin: 1rem auto;
        display: block;
        width: 80%;
        padding: 0.8rem 0;
        font-size: 1rem;
    }
    /* Optional: add padding-top to main content to avoid header overlap */
    body > section:first-of-type {
        padding-top: 80px;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }
    .logo {
        flex: none;
    }
    .mobile-menu-btn {
        margin-left: auto;
        display: block;
    }
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 1rem 0;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1001;
    }
    .nav-links.active {
        display: flex !important;
    }
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(41,107,180,0.7), rgba(41,107,180,0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
  /*  background: rgba(0,0,0,0.55);*/
    border-radius: 18px;
   /* backdrop-filter: blur(2px);*/
   text-shadow: none !important;
}

.hero-content h1 {
    font-size: 2.7rem;
    font-weight: 800;
    text-shadow: none; /* Ensure no text shadow */
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: none; /* Ensure no text shadow */
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-btn, .secondary-btn {
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.primary-btn {
    background-color: var(--primary) !important;
    color: #fff !important;
    border: none;
}

.secondary-btn {
    background-color: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

.primary-btn:hover {
    background-color: var(--secondary) !important;
    color: #296BB4 !important;
}

.secondary-btn:hover {
    background-color: var(--secondary) !important;
    color: #296BB4 !important;
    border-color: var(--secondary) !important;
}

/* About Section */
#about {
    padding: 5rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

#about p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Services Section */
#services {
    padding: 5rem 0;
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.service-card {
    background-color: var(--primary);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(41,107,180,0.10);
    transition: transform 0.3s, background 0.3s;
}

.service-card:hover {
    background-color: var(--secondary);
    color: #296BB4;
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover i {
    color: #296BB4;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #fff;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: #296BB4;
}

/* Testimonials Section */
#testimonials {
    padding: 5rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

#testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Contact Section */
#contact {
    padding: 5rem 0;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 20px;
}

.contact-info {
    background: linear-gradient(135deg, #8fd16a 0%, #296BB4 100%);
    color: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: left;
    box-shadow: 0 3px 10px rgba(41,107,180,0.10);
    transition: background 0.3s, color 0.3s;
}

.contact-info h3, .contact-info .footer-contact-title, .contact-info .footer-contact-label {
    color: var(--secondary) !important;
}

.contact-info i {
    color: var(--secondary);
    margin-right: 0.5rem;
    transition: color 0.3s;
}

.contact-info a {
    color: var(--secondary);
    text-decoration: underline;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: #fff;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    font-size: 1rem;
    padding: 1rem 2.5rem 1rem 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s, background 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    background: #f9fafc;
    outline: none;
}

.contact-form span i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.contact-form button[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 1rem 0;
    font-size: 1.15rem;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: background 0.2s;
    cursor: pointer;
    width: 100%;
}

.contact-form button[type="submit"]:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 0;
    font-family: 'Monochrome', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 4rem;
    padding: 4rem 5vw;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-col.left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-mission {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.footer-contact-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.footer-contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.footer-col.links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-links-group h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-group a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-group a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-col.subscribe {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-col.subscribe h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.footer-col.subscribe p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.footer-subscribe-form {
    width: 100%;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-btn {
    position: absolute;
    right: 0.5rem;
    padding: 0.5rem;
    background: var(--secondary);
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #fff;
    color: var(--secondary);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-bottom-left {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-site-name {
    color: var(--secondary);
    font-weight: 600;
}

.footer-bottom-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--secondary);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.brand-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.brand-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.1;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.shape2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
}

.shape3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-col.subscribe {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 5vw;
    }
    
    .footer-col.subscribe {
        grid-column: auto;
    }
    
    .footer-col.links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .footer-bottom-center {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* About Page Styles */
#about-hero, #solutions-hero, #clients-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    text-shadow: none; /* Add this line */
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Solutions Page Styles */
.solutions-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solution-category {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.solution-category i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.solution-category ul {
    list-style: none;
    margin-top: 1rem;
}

.solution-category li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-category li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

.solution-tabs {
    margin-top: 2rem;
}

.tab-content {
    display: none;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tab-content.active {
    display: block;
}

/* Clients Page Styles */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.logo-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.logo-grid img:hover {
    filter: grayscale(0%);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
}

.client-info h3 {
    margin: 0;
    color: #2c3e50;
}

.client-info p {
    margin: 0;
    color: #666;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.client-name {
    font-weight: bold;
    margin: 0;
}

.client-title {
    color: #666;
    margin: 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.case-study {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.case-study img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-content {
    padding: 1.5rem;
    background-color: white;
}

.case-study-content h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.case-study-content p {
    margin: 0 0 1rem 0;
    color: #666;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* CTA Section */
#cta {
    background-color: #f9f9f9;
    padding: 4rem 0;
    text-align: center;
}

#cta h2 {
    margin-bottom: 1rem;
}

#cta p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .values-grid,
    .solutions-categories,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-header img {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Services Page Styles */
.services-page .hero {
    background-color: #296BB4;
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 60px;
}

.services-page .hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.services-page .hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.service-card i {
    font-size: 2.5em;
    color: #296BB4;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.cta {
    background-color: #F1BB1B;
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-top: 60px;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: #2CAB4A;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta .btn:hover {
    background-color: #238c3a;
}

@media (max-width: 768px) {
    .services-page .hero {
        padding: 60px 0;
    }
    
    .services-page .hero h1 {
        font-size: 2.5em;
    }
    
    .services-grid .container {
        grid-template-columns: 1fr;
    }
    
    .cta {
        padding: 60px 20px;
    }
    
    .cta h2 {
        font-size: 2em;
    }
}

/* Update all relevant classes/selectors to use the new palette */

/* Headings and links */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Monochrome', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--primary);
}
a {
  color: var(--primary);
}
a:hover {
  color: var(--secondary);
}

/* Icons */
.fas, .fab {
  color: var(--primary);
}

/* Section backgrounds (where appropriate) */
#about, #testimonials, #cta {
  background-color: #f9f9f9;
}

/* Buttons and highlights */
button, .btn {
  background-color: var(--primary);
  color: #fff;
  border: none;
}
button:hover, .btn:hover {
  background-color: var(--secondary);
  color: #296BB4;
}

/* Forms */
input, textarea {
  border: 1.5px solid var(--primary);
}
input:focus, textarea:focus {
  border-color: var(--secondary);
  outline: none;
}

/* Misc */
::-webkit-scrollbar-thumb {
  background: var(--primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(41,107,180,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.3s, color 0.3s;
}
#back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}
#back-to-top:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Our Team Section */
#our-team {
    padding: 5rem 0;
    text-align: center;
    background: #f9f9f9;
}
#our-team h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}
.team-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(41,107,180,0.10);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(41,107,180,0.18);
}
.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    border: 4px solid var(--primary);
}
.team-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.team-card p {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}
.team-social a {
    color: var(--primary);
    font-size: 1.4rem;
    transition: color 0.2s;
}
.team-social a:hover {
    color: var(--secondary);
}
@media (max-width: 600px) {
    .team-card {
        padding: 1.5rem 0.5rem;
    }
    .team-card img {
        width: 90px;
        height: 90px;
    }
}

#contact-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    text-shadow: none;
}

#contact-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

#contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

#contact-hero h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
}

@media (max-width: 768px) {
    #contact-hero {
        height: 40vh;
        padding-top: 60px;
    }
    
    #contact-hero h1 {
        font-size: 2.5rem;
    }
    
    #contact-hero h2 {
        font-size: 1.2rem;
    }
}

.footer-contact .contact-info {
    margin-top: 1rem;
}

.footer-contact .contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.footer-contact .contact-row i {
    color: var(--secondary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-contact .contact-row span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-contact .contact-row:last-child {
    margin-bottom: 0;
}

.contact-primary {
  color: var(--primary);
  font-weight: 700;
}
.contact-secondary {
  color: var(--secondary);
  font-weight: 700;
}

.cta-contact {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 24px;
  margin: 4rem auto 2rem auto;
  max-width: 700px;
  box-shadow: 0 6px 32px rgba(41,107,180,0.10);
  position: relative;
}
.cta-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #fff;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(41,107,180,0.10);
}
.cta-desc {
  font-size: 1.18rem;
  margin-bottom: 2.2rem;
  color: #f3f3f3;
  font-weight: 500;
}
.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2.8rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(44,171,74,0.10);
  transition: all 0.2s;
  outline: none;
  margin-top: 0.5rem;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(44,171,74,0.18);
  text-decoration: none !important;
}

.contact-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.footer-contact-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-top: 5px solid var(--secondary);
  box-shadow: 0 6px 24px rgba(41,107,180,0.10);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  min-width: 260px;
  max-width: 400px;
}
.footer-contact-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-right: 1.2rem;
  margin-top: 0.2rem;
}
.footer-contact-icons i {
  color: var(--secondary);
  font-size: 1.2rem;
  width: 22px;
  text-align: center;
}
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
}

.login-container {
  max-width: 400px;
  margin: 0 auto 8vh;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(41,107,180,0.1);
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 2001; /* Ensure above header if needed */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.partners-wrapper {
  overflow: hidden;
  width: 100%;
}
.partners-track {
  display: flex;
  gap: 2.5rem;
  will-change: transform;
  /* The width should be at least double the visible area for seamless looping */
}

.jobs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
}
.job-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(41,107,180,0.10);
    padding: 2.2rem 2rem 1.5rem 2rem;
    min-width: 320px;
    max-width: 400px;
    flex: 1 1 320px;
    margin-bottom: 2rem;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.job-card:hover {
    box-shadow: 0 8px 32px rgba(44,171,74,0.18), 0 2px 8px rgba(41,107,180,0.10);
    transform: translateY(-6px) scale(1.02);
}
.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary, #296BB4);
}
.job-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.badge {
    background: #e8f5e9;
    color: #2CAB4A;
    border-radius: 0.5rem;
    padding: 0.2rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
}
.badge-location {
    background: #f6fafc;
    color: #296BB4;
}
.badge-type {
    background: #f0e6ff;
    color: #6f6ee8;
}
.badge-expiry {
    background: #fff3e0;
    color: #ff9800;
}
.badge-expired {
    background: #ffebee;
    color: #e53935;
}
.badge-posted {
    background: #e3f2fd;
    color: #1976d2;
}
.job-description {
    margin: 1rem 0 1.5rem 0;
    color: #444;
    font-size: 1.05rem;
    min-height: 60px;
}
.apply-btn {
    background: linear-gradient(120deg, #296BB4 0%, #2CAB4A 100%);
    color: #fff;
    border: none;
    border-radius: 0.7rem;
    padding: 0.7rem 2.2rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(41,107,180,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    margin-top: auto;
    letter-spacing: 0.5px;
}
.apply-btn:hover:not(:disabled) {
    background: linear-gradient(120deg, #2CAB4A 0%, #296BB4 100%);
    box-shadow: 0 4px 16px rgba(44,171,74,0.13);
    transform: translateY(-2px) scale(1.03);
}
.apply-btn:disabled {
    background: #eee;
    color: #aaa;
    cursor: not-allowed;
    box-shadow: none;
}
@media (max-width: 900px) {
    .jobs-list { flex-direction: column; gap: 1.5rem; }
    .job-card { max-width: 100%; min-width: 0; }
} 