/* Root Variables */
:root {
    --primary-color: #1a5c3a;
    --secondary-color: #2d9c5d;
    --accent-color: #f39c12;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand h1 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.navbar-brand .logo-img {
    height: 72px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
 
/*
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}    
      
*/


/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0 2rem;           /* Reduced side padding */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;             /* Important: No top margin */
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
}


.hero-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-button,
.submit-button {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.cta-button:hover,
.submit-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

/* Services Preview */
.services-preview {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

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

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* About Preview */
.about-preview {
    padding: 4rem 2rem;
    text-align: center;
}

.about-preview p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto;
}

.learn-more {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid var(--secondary-color);
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Content Section */
.content-section {
    padding: 3rem 2rem;
}

/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    margin: 1.5rem 0;
}

.values-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.values-list strong {
    color: var(--secondary-color);
}

.social-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 5px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Services Detailed */
.services-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.service-detail h2 {
    margin-bottom: 1rem;
}

.service-detail ul {
    list-style: none;
    margin: 1rem 0;
}

.service-detail li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(45, 156, 93, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Inline form status message */
.form-status {
    min-height: 1.4em;
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

.form-status--success {
    color: #2d9c5d;
}

.form-status--error {
    color: #d64545;
}

/* Modern Contact Section (screenshot style) */
.contact-section {
    background: #efefef;
    padding: 4.5rem 1.5rem 5rem;
}

.contact-section-inner {
    max-width: 760px;
    margin: 0 auto;
}

.contact-heading {
    text-align: center;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: #7a8da8;
    margin-bottom: 2.2rem;
    text-transform: uppercase;
}

.contact-subheading {
    text-align: center;
    color: #111;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.contact-form-modern .form-group-modern {
    margin-bottom: 2rem;
}

.contact-form-modern .form-group-modern label {
    font-size: 1.95rem;
    font-weight: 400;
    color: #2e2e2e;
    margin-bottom: 0.5rem;
}

.contact-form-modern .form-group-modern input,
.contact-form-modern .form-group-modern textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #cfcfcf;
    border-radius: 0;
    background: transparent;
    padding: 0.2rem 0 0.45rem;
    font-size: 1rem;
    color: #1a1a1a;
    resize: vertical;
}

.contact-form-modern .form-group-modern input:focus,
.contact-form-modern .form-group-modern textarea:focus {
    outline: none;
    border-bottom-color: #808080;
    box-shadow: none;
}

.submit-button-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: 0.6rem;
    background: #000;
    color: #fff;
    border-radius: 0;
    letter-spacing: 1px;
    min-width: 110px;
    padding: 0.85rem 1.6rem;
}

.submit-button-modern:hover {
    background: #1d1d1d;
    transform: none;
    box-shadow: none;
}

.submit-button-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-legal {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: #5e6778;
}

.contact-success {
    text-align: center;
    min-height: 1.5rem;
    margin-top: 0.9rem;
    font-size: 1rem;
}

.contact-success.is-success {
    color: #2d9c5d;
}

.contact-success.is-error {
    color: #d64545;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}



.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 92px;           /* Adjust size as needed */
  width: auto;
  max-height: 92px;
  transition: all 0.3s ease;
}

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

/* Make sure it looks good on mobile */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}


/*
.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
+/

/* Logo Video Section */
.logo-video-section {
    padding: 80px 60px;
    text-align: center;
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
}

.logo-video-section video {
    max-width: 100%;
    max-height: 420px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(27, 67, 50, 0.15);
}


/* ==================== MOBILE NAV ==================== */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    nav ul {
        display: none;           /* Hide desktop menu on mobile */
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 15px;
    }

    /* Show menu when .active class is added */
    nav ul.active {
        display: flex;
    }

    nav li {
        width: 100%;
        text-align: center;
    }

    /* Hamburger Button */
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 1.8rem;
        background: none;
        border: none;
        color: #1b4332;
    }

    /* Hide on desktop */
    @media (min-width: 769px) {
        .hamburger { display: none; }
    }

    .contact-heading {
        font-size: 2rem;
    }

    .contact-subheading {
        font-size: 1.8rem;
    }
}


.hamburger {
    display: none !important;
}

/* Investment Themes Card Images */
.card-image {
    width: 100%;
    height: 260px;              /* Increase this if needed */
    object-fit: cover;          /* This is the key - fills the area nicely */
    display: block;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card {
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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


/* Services Cards - Square & Architectural Style */
.service-card {
    padding: 45px 35px;
    background: #ffffff;
    border: 2px solid #1b4332;           /* Strong green border */
    border-radius: 0;                    /* Square edges */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: #f8f5f0;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(27, 67, 50, 0.15);
}

/* Optional: Add a left accent bar instead of soft corners */
.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--warm-gold);
}


/* Make the whole site feel more architectural */
.card, .service-card {
    border-radius: 2px;           /* Very subtle or zero rounding */
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

h2, h3 {
    font-weight: 400;
    letter-spacing: -0.5px;
}

section {
    padding: 110px 5%;
}

/* Cleaner button / CTA style */
.cta-button {
    border-radius: 2px;
    padding: 18px 42px;
    font-weight: 500;
    letter-spacing: 1px;
}
