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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(52, 72, 119, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-nav {
    display: flex;
    align-items: center;
    color: #EEA437;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon-nav {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
    display: inline-block;
    background: none !important;
    border-radius: 0 !important;
    background: none;
    border-radius: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover, .nav-link.active {
    color: #EEA437;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #EEA437;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #344877 0%, #44a18e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::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 100 100"><defs><pattern id="grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: block;
    object-fit: contain;
    background: none !important;
    border-radius: 0 !important;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #EEA437;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #EEA437 0%, #f2b84b 100%);
    color: #344877;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(238, 164, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(238, 164, 55, 0.5);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: #344877;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #44a18e;
    font-family: 'Comfortaa', sans-serif;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-category {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #EEA437 0%, #44a18e 100%);
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EEA437 0%, #f2b84b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-category h3 {
    font-size: 1.8rem;
    color: #344877;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-category p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    color: #495057;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #44a18e;
    font-weight: bold;
}

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

.service-button {
    background: linear-gradient(135deg, #344877 0%, #44a18e 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 72, 119, 0.3);
}

/* About Section Styles */
.about {
    padding: 100px 0;
    background: white;
}

.about-intro {
    background: linear-gradient(135deg, #EEA437 0%, #ffffff 100%);
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 80px;
    text-align: center;
}

.about-intro h3 {
    font-size: 2.5rem;
    color: #344877;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-intro p {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.story-timeline {
    margin: 80px 0;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #EEA437 0%, #44a18e 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-right-color: white;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-left-color: white;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #EEA437;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #EEA437;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #344877;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.3rem;
    color: #44a18e;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-description {
    color: #6c757d;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #44a18e;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EEA437 0%, #f2b84b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.value-card h4 {
    font-size: 1.5rem;
    color: #344877;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

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

.team-member {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #EEA437 0%, #44a18e 100%);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #344877 0%, #44a18e 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.member-name {
    font-size: 1.5rem;
    color: #344877;
    margin-bottom: 10px;
    font-weight: 600;
}

.member-title {
    font-size: 1.1rem;
    color: #EEA437;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-credentials {
    font-size: 0.9rem;
    color: #44a18e;
    margin-bottom: 20px;
    font-weight: 500;
}

.member-bio {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.specialty-tag {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #344877;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Awards & Recognition */
.awards-section {
    background: linear-gradient(135deg, #344877 0%, #44a18e 100%);
    padding: 80px 0;
    color: white;
}

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

.award-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.award-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #EEA437;
}

.award-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.award-description {
    opacity: 0.9;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #EEA437 0%, #f2b84b 100%);
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #344877;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Success Stories Section (formerly Portfolio) */
#success.portfolio,
.portfolio {
    padding: 100px 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, #344877 0%, #44a18e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-title {
    font-size: 1.5rem;
    color: #344877;
    margin-bottom: 15px;
    font-weight: 600;
}

.portfolio-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.portfolio-metrics {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EEA437;
}

.metric-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Contact Section */
#contact.contact,
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EEA437 0%, #f2b84b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: white;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #344877;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EEA437;
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #344877 0%, #44a18e 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 72, 119, 0.3);
}

/* Approach Section (formerly Process & Tools) */
#approach.process-tools,
.process-tools {
    padding: 100px 0;
    background: white;
}

.process-overview {
    margin-bottom: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 40px;
    border-radius: 20px;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    max-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EEA437 0%, #f2b84b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.process-step h4 {
    color: #344877;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.process-arrow {
    font-size: 2rem;
    color: #44a18e;
    font-weight: bold;
}

.tool-categories {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
}

.tool-category {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.tool-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.tool-header {
    background: linear-gradient(135deg, #344877 0%, #44a18e 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.tool-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.tool-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.tool-preview {
    padding: 40px;
}

.preview-content h4 {
    color: #344877;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.preview-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #EEA437;
}

.preview-item strong {
    color: #344877;
    display: block;
    margin-bottom: 8px;
}

.preview-detail {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.roadmap-visual {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.roadmap-phase {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
}

.phase-planning {
    background: linear-gradient(135deg, #EEA437 0%, #f2b84b 100%);
}

.phase-implementation {
    background: linear-gradient(135deg, #44a18e 0%, #5cb3a0 100%);
}

.phase-active {
    background: linear-gradient(135deg, #344877 0%, #4a5d94 100%);
}

.phase-evaluation {
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
}

.phase-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.phase-duration {
    font-size: 0.8rem;
    opacity: 0.8;
}

.scorecard-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.health-metric-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    border-top: 4px solid;
}

.green-status {
    border-top-color: #28a745;
}

.yellow-status {
    border-top-color: #ffc107;
}

.metric-title {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #344877;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.analytics-item {
    text-align: center;
    background: linear-gradient(135deg, #344877 0%, #44a18e 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.analytics-number {
    font-size: 2rem;
    font-weight: 700;
    color: #EEA437;
    margin-bottom: 8px;
}

.analytics-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.tool-button {
    background: linear-gradient(135deg, #EEA437 0%, #f2b84b 100%);
    color: #344877;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.tool-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 164, 55, 0.3);
}

.process-case-study {
    background: linear-gradient(135deg, #344877 0%, #44a18e 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 60px;
}

.case-study-container h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.case-study-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.case-study-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.case-step {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.case-step h4 {
    color: #EEA437;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.case-step p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.case-step strong {
    color: #EEA437;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #344877 0%, #44a18e 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #EEA437 0%, #f2b84b 100%);
    color: #344877;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #344877;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: #EEA437;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.7;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #EEA437;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(52, 72, 119, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

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

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .service-categories {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content::before {
        display: none;
    }

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

    .about-intro {
        padding: 40px 30px;
    }

    .about-intro h3 {
        font-size: 2rem;
    }

    .about-intro p {
        font-size: 1.1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-flow {
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .roadmap-visual {
        flex-direction: column;
        gap: 10px;
    }

    .scorecard-preview {
        grid-template-columns: 1fr;
    }

    .analytics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-flow {
        grid-template-columns: 1fr;
    }

    .process-case-study {
        padding: 40px 20px;
    }
}