/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Acherus Grotesque', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Color Variables based on Logo */
:root {
    --primary-aqua: #0cc0df; /* Aqua Blue */
    --secondary-green: #7ed957; /* Grass Green */
    --accent-black: #000000; /* Black */
    --background-white: #ffffff; /* White background */
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #e0e0e0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

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

/* Navigation */
.navbar {
    background-color: var(--background-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

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

.header-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 8px;
    clip-path: inset(12% 5% 35% 12%);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-initials {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-aqua);
    text-shadow: 2px 2px 0px var(--accent-black);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-company {
    font-size: 0.7rem;
    color: var(--secondary-green);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 2px;
    line-height: 1;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-aqua);
}

/* Hero Section */
.hero {
    background: #f7fbfd; /* light solid background */
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Enhanced Hero Background with Graphics */
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eaf6fa 0%, #d1f2eb 50%, #e8f8f5 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="enhanced-bg" patternUnits="userSpaceOnUse" width="200" height="200"><rect width="200" height="200" fill="%23eaf6fa"/><circle cx="100" cy="100" r="60" fill="%230cc0df" opacity="0.1"/><path d="M40 140 Q100 80 160 140" stroke="%237ed957" stroke-width="3" fill="none" opacity="0.2"/><circle cx="50" cy="50" r="15" fill="%230cc0df" opacity="0.15"/><circle cx="150" cy="150" r="20" fill="%237ed957" opacity="0.15"/></pattern></defs><rect width="100%" height="100%" fill="url(%23enhanced-bg)"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,400 Q300,200 600,400 T1200,400" stroke="%230cc0df" stroke-width="2" fill="none" opacity="0.1"/><path d="M0,500 Q400,300 800,500 T1200,500" stroke="%237ed957" stroke-width="2" fill="none" opacity="0.1"/><circle cx="200" cy="200" r="3" fill="%230cc0df" opacity="0.3"/><circle cx="800" cy="300" r="2" fill="%237ed957" opacity="0.3"/><circle cx="1000" cy="600" r="4" fill="%230cc0df" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 60%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 20px 100px;
    position: relative;
    z-index: 3;
}

.hero-title {
    color: var(--primary-aqua);
    margin-bottom: 2rem;
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 2px 2px 0px var(--accent-black); /* UPDATED */
    font-family: 'Acherus Grotesque', sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Acherus Grotesque', sans-serif;
}

.hero-mission {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-family: 'Acherus Grotesque', sans-serif;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(12, 192, 223, 0.05) 0%, rgba(126, 217, 87, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-aqua);
    box-shadow: 0 4px 15px rgba(12, 192, 223, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: var(--text-dark);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-aqua);
    text-shadow: 2px 2px 0px var(--accent-black); /* UPDATED */
    font-family: 'Acherus Grotesque', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Acherus Grotesque', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 2px 2px 0px var(--accent-black);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 15px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-aqua), #0aa8c4);
    color: white;
    box-shadow: 0 8px 25px rgba(12, 192, 223, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(12, 192, 223, 0.6);
    background: linear-gradient(45deg, #0aa8c4, var(--primary-aqua));
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover:before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-aqua);
    border: 2px solid var(--primary-aqua);
    backdrop-filter: none;
}

.btn-secondary:hover {
    background-color: var(--primary-aqua);
    color: white;
    border-color: var(--primary-aqua);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(12, 192, 223, 0.25);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.butterfly {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.butterfly-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.butterfly-2 {
    top: 30%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

.section-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(12, 192, 223, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(126, 217, 87, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-aqua), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about .section-description {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 4rem;
}

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

.value-card {
    background: linear-gradient(135deg, white 0%, #f8fffe 100%);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(12, 192, 223, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-aqua), var(--secondary-green));
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(12, 192, 223, 0.2);
}

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.professional-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23667eea"/><circle cx="200" cy="100" r="60" fill="%23ffffff" opacity="0.2"/><path d="M150 100 L200 80 L250 100 L200 120 Z" fill="%23ffffff" opacity="0.3"/></svg>');
}

.partnership-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23f093fb"/><circle cx="120" cy="100" r="40" fill="%23ffffff" opacity="0.3"/><circle cx="280" cy="100" r="40" fill="%23ffffff" opacity="0.3"/><path d="M160 100 Q200 60 240 100" stroke="white" stroke-width="3" fill="none" opacity="0.5"/></svg>');
}

.community-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%234facfe"/><circle cx="100" cy="80" r="25" fill="%23ffffff" opacity="0.4"/><circle cx="200" cy="100" r="30" fill="%23ffffff" opacity="0.4"/><circle cx="300" cy="70" r="20" fill="%23ffffff" opacity="0.4"/><path d="M100 80 Q150 50 200 100 Q250 150 300 70" stroke="white" stroke-width="2" fill="none" opacity="0.6"/></svg>');
}

.strategy-image {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23a8edea"/><rect x="50" y="50" width="300" height="100" fill="%23ffffff" opacity="0.3" rx="10"/><path d="M80 100 L120 80 L160 100 L200 80 L240 100 L280 80 L320 100" stroke="%230cc0df" stroke-width="3" fill="none"/></svg>');
}

.growth-image {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23ffecd2"/><path d="M50 150 L100 120 L150 100 L200 80 L250 70 L300 60 L350 50" stroke="%237ed957" stroke-width="4" fill="none"/><circle cx="200" cy="80" r="8" fill="%237ed957"/></svg>');
}

.accelerator-image {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23ff9a9e"/><circle cx="200" cy="100" r="50" fill="%23ffffff" opacity="0.3"/><path d="M150 100 L200 50 L250 100 L200 150 Z" fill="%23ffffff" opacity="0.5"/>></svg>');
}

.value-card h3 {
    color: var(--primary-aqua);
    margin: 2rem 2rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 2rem 2rem;
}

/* Partners Section */
.partners {
    background-color: var(--background-white);
    position: relative;
    overflow: hidden;
}

.partners-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 50%, #e8f8f5 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="partners-pattern" patternUnits="userSpaceOnUse" width="300" height="300"><rect width="300" height="300" fill="%23ffffff"/><circle cx="150" cy="150" r="80" fill="%23f0f8ff" opacity="0.3"/><path d="M50 200 Q150 100 250 200" stroke="%237ed957" stroke-width="4" fill="none" opacity="0.4"/><path d="M100 250 Q200 150 300 250" stroke="%230cc0df" stroke-width="4" fill="none" opacity="0.4"/><circle cx="80" cy="80" r="8" fill="%230cc0df" opacity="0.2"/><circle cx="220" cy="220" r="6" fill="%237ed957" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23partners-pattern)"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.partners .container {
    position: relative;
    z-index: 1;
}

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


.partner-card-dawn {
    background-color: #f8fffe;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    text-size-adjust: 200%;
    text-align: right;
    transition: transform 0.3s ease;
}

.partner-card-andrea {
    background-color: #f8fffe;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    text-size-adjust: 200%;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.partner-image {
    margin-bottom: 1.5rem;
    position: relative;
}

.partner-label {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-aqua), var(--secondary-green));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(12, 192, 223, 0.3);
    z-index: 2;
}

.partner-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 4px solid var(--primary-aqua);
    box-shadow: 0 4px 15px rgba(12, 192, 223, 0.3);
}

.placeholder-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-aqua), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0 auto;
    text-shadow: 2px 2px 0px var(--accent-black);
}

.partner-card-dawn h3 {
    color: var(--primary-aqua);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.partner-card-andrea h3 {
    color: var(--primary-aqua);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.partner-title {
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.partner-bio {
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.partner-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
}

.expertise-tag {
    background-color: var(--primary-aqua);
    color: white;
    padding: 0.45rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Services Section */
.services {
    background-color: #f8fffe;
}

.services-grid-centered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-centered a {
    text-decoration: none;
    color: inherit;
}

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

.service-card {
    background-color: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-aqua);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%; /* Ensure cards are same height */
}

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

.service-card .card-image {
    height: 180px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-card h3 {
    color: var(--primary-aqua);
    margin: 2rem 2rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    margin: 0 2rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.service-details {
    list-style: none;
    padding: 0 2rem 2rem;
    margin: 0;
    text-align: left; /* Align list items left */
}

.service-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.service-details li:last-child {
    border-bottom: none;
}


/* Contact Section */
.contact {
    background-color: var(--background-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.contact-method {
    padding: 1.5rem;
    background-color: #f8fffe;
    border-radius: 8px;
    border-left: 4px solid var(--primary-aqua);
}

.contact-method h4 {
    color: var(--primary-aqua);
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin-bottom: 1rem; /* Add margin to P tag */
}

.download-form .form-group {
    margin-bottom: 1rem;
}
.download-form .btn-primary {
    width: 100%;
    padding: 12px;
}

.contact-form {
    background-color: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-aqua);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-aqua);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-aqua);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Footer */
.footer {
    background-color: var(--accent-black);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer .logo-initials {
    color: var(--primary-aqua);
    /* UPDATED: Removed the redundant shadow rule here so it uses the main .logo-initials style */
}

.footer .logo-text {
    color: var(--secondary-green);
}

.footer-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem 20px;
    }

    .nav-menu {
        margin-top: 1rem;
        gap: 1rem;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-mission {
        font-size: 1rem;
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .header-logo {
        width: 40px;
        height: 40px;
        clip-path: inset(8% 8% 8% 8%);
    }

    .logo-initials {
        font-size: 1.5rem;
    }

    .logo-company {
        font-size: 0.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid,
    .services-grid,
    .services-grid-centered {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-mission {
        font-size: 0.95rem;
        padding: 1.2rem;
        margin-top: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-logo {
        width: 35px;
        height: 35px;
        clip-path: inset(10% 10% 10% 10%);
    }

    .logo-initials {
        font-size: 1.3rem;
    }

    .logo-company {
        font-size: 0.55rem;
    }


    .partner-card,
    .contact-form {
        padding: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }
}

/* Partner Fragment Headshot Cutouts */
.partner-card-dawn,
.partner-card-andrea {
    position: relative;
    overflow: visible;
    padding-top: 140px; /* Space for the centered cutout */
}

/* Shared base - centered circular cutout */
.partner-fragment {
    position: absolute;
    width: 220px;
    height: 220px;
    background-size: 130%;
    background-position: center;
    border: 6px solid #fff;
    border-radius: 50%; /* Perfect circle */
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 3;
    left: 50%;
    transform: translateX(-50%); /* Centers horizontally */
}

/* Dawn – top center */
.dawn-fragment {
    background-image: url('imgs/Dawn.png');
    background-size: 130%;
    background-position: center 35%;
    top: -60px; /* Extends above the card */
}

/* Andrea – top center */
.andrea-fragment {
    background-image: url('imgs/And.png');
    background-size: 130%;
    background-position: center 35%;
    top: -60px; /* Extends above the card */
}

/* Soft highlight for depth */
.partner-fragment::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 70%);
    pointer-events: none;
}

/* Card styling */
.partner-card-dawn,
.partner-card-andrea {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

