/* Global Variables */
:root {
    --primary-color: #FFFFFF;
    --accent-color: #00871A;
    --text-color: #1A1A1A;
    --text-gray: #666666;
    --hover-color: rgba(0, 135, 26, 0.1);
    --light-gray: #F5F5F5;
    --border-color: #E0E0E0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Divider */
.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 1.5rem 0;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: rgba(0, 135, 26, 0.8);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Navigation - Complete rewrite */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    z-index: 10;
}

.nav-brand .logo {
    transition: transform 0.3s ease;
    display: block;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    margin: 0 0 0 30px;
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
}

.nav-link.active,
.nav-link:hover {
    color: var(--text-color);
}

.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: relative;
    z-index: 10000;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 4px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    position: relative;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 9998;
        animation: slideDown 0.3s ease;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-menu ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(0, 135, 26, 0.1);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hamburger animation states */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: var(--accent-color);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color: var(--accent-color);
    }
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        background: none !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
    
    .nav-menu ul {
        flex-direction: row !important;
        gap: 0 !important;
    }
    
    .nav-menu ul li {
        margin: 0 0 0 30px !important;
    }
    
    .nav-link {
        padding: 5px 0 !important;
        font-size: inherit !important;
        border: none !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    gap: 60px;
    width: 100%;
}

.hero-left {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 30px;
    background-color: var(--accent-color);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* Hero Image Gallery */
.hero-image-gallery {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.main-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 135, 26, 0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-image {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-image-1 {
    top: -20px;
    right: -30px;
    width: 120px;
    height: 120px;
    animation: float-1 8s ease-in-out infinite;
}

.floating-image-2 {
    bottom: -15px;
    left: -25px;
    width: 100px;
    height: 100px;
    animation: float-2 7s ease-in-out infinite;
}

.floating-image-3 {
    top: 50%;
    right: -40px;
    width: 90px;
    height: 90px;
    animation: float-3 9s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background-color: var(--light-gray);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-color);
}

/* About Section */
.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-icons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.icon-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.mission-statement {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--light-gray);
    border-left: 3px solid var(--accent-color);
}

/* About Detail */
.about-detail-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-detail-text {
    flex: 1;
}

.about-detail-image {
    flex: 1;
    max-width: 400px;
}

.about-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Philosophy Section */
.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
}

.diagram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.diagram-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
}

.diagram-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.diagram-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-color));
    margin: 0 20px;
}

/* Philosophy Detail */
.philosophy-detail-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Holdings Preview */
.holdings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.holding-card {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.holding-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 135, 26, 0.15);
    border-color: var(--accent-color);
}

.holding-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.holding-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.holding-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.holding-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.view-all {
    text-align: center;
}

/* Founder Preview */
.founder-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.founder-image {
    flex: 1;
    max-width: 400px;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-text {
    flex: 1;
}

/* Founder Detail */
.founder-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.founder-image {
    flex: 1;
    max-width: 400px;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-text {
    flex: 1;
}

.founder-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.role {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 30px;
}

.role i {
    color: var(--accent-color);
}

/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vm-item {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vm-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.vm-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Contact Preview */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-cta {
    text-align: center;
}

/* Contact Detail */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-text h3 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.email-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.email-options a {
    color: var(--accent-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Organization Chart */
.org-chart {
    padding: 50px 0;
    overflow-x: auto;
}

.org-chart-container {
    display: flex;
    justify-content: center;
    min-width: 1000px;
}

.org-chart ul {
    padding-top: 20px;
    position: relative;
    transition: all 0.5s;
    list-style: none;
    margin: 0 auto;
    text-align: center;
}

.org-chart li {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
}

.org-chart li::before, .org-chart li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 2px solid var(--accent-color);
    width: 50%;
    height: 20px;
}

.org-chart li::after {
    right: auto;
    left: 50%;
    border-left: 2px solid var(--accent-color);
}

.org-chart li:only-child::after, .org-chart li:only-child::before {
    display: none;
}

.org-chart li:only-child {
    padding-top: 0;
}

.org-chart li:first-child::before, .org-chart li:last-child::after {
    border: 0 none;
}

.org-chart li:last-child::before {
    border-right: 2px solid var(--accent-color);
    border-radius: 0 5px 0 0;
}

.org-chart li:first-child::after {
    border-radius: 5px 0 0 0;
}

.org-chart ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 2px solid var(--accent-color);
    width: 0;
    height: 20px;
}

.node {
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--primary-color);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.node:hover {
    background-color: var(--hover-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 135, 26, 0.15);
}

.node.parent {
    background-color: var(--light-gray);
    font-weight: bold;
    font-size: 1.1rem;
}

.node.main {
    background-color: var(--light-gray);
    font-weight: bold;
    font-size: 1.2rem;
}

.node h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.node.main h3 {
    font-size: 1.2rem;
}

.node.parent h3 {
    font-size: 1.1rem;
}

.node p {
    margin: 5px 0 0 0;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.node.main p {
    font-size: 0.9rem;
}

.node.parent p {
    font-size: 0.85rem;
}

/* Division Details */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-card {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 135, 26, 0.15);
    border-color: var(--accent-color);
}

.detail-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.detail-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Goals Section */
.goals {
    padding: 80px 0;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.goal {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.goal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.goal:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 135, 26, 0.15);
    border-color: var(--accent-color);
}

.goal-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.goal-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.goal h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.goal p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Add a progress indicator for each goal */
.goal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.5s ease;
}

.goal:hover::after {
    width: 100%;
}

/* Structure Introduction */
.structure-intro {
    padding: 40px 0;
    background-color: var(--light-gray);
    text-align: center;
}

/* Quote Section */
.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.quote-author {
    font-weight: 600;
    color: var(--text-gray);
}

/* Timeline */
.timeline-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content .timeline-content {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Key Points */
.key-points {
    margin: 30px 0;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.point i {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo .logo {
    transition: transform 0.3s ease;
}

.footer-logo .logo:hover {
    transform: scale(1.05);
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.form-success p {
    color: var(--text-gray);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .founder-content,
    .contact-content,
    .about-detail-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-visual,
    .founder-image,
    .about-detail-image {
        order: -1;
    }
    
    .philosophy-diagram {
        flex-direction: column;
        gap: 30px;
    }
    
    .diagram-connector {
        width: 2px;
        height: 30px;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 40px;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-dot {
        left: -10px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-menu ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-left {
        text-align: center;
        max-width: 100%;
    }
    
    .org-chart-container {
        transform: scale(0.7);
        transform-origin: top left;
        width: 140%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .org-chart-container {
        transform: scale(0.5);
        width: 200%;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Alternative Emails Section */
.alternative-emails {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.email-options-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.email-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 150px;
}

.email-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 135, 26, 0.15);
    border-color: var(--accent-color);
}

.email-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin-bottom: 10px;
}

.email-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.email-option a {
    color: var(--accent-color);
    font-weight: 500;
    text-align: center;
}

.email-option a:hover {
    color: var(--text-color);
}

/* Contact Section - Fixed alignment */
.contact-detail {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Form Styles - Improved */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 135, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Items - Improved alignment */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
    flex-grow: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 135, 26, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-text {
    flex-grow: 1;
}

.contact-text h3 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-text a {
    color: var(--accent-color);
    font-weight: 500;
}

.contact-text p {
    color: var(--text-gray);
    margin: 0;
}

/* Alternative Emails Section - Improved */
.alternative-emails {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.email-options-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.email-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.email-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 135, 26, 0.15);
    border-color: var(--accent-color);
}

.email-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin-bottom: 10px;
}

.email-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.email-option a {
    color: var(--accent-color);
    font-weight: 500;
    text-align: center;
}

.email-option a:hover {
    color: var(--text-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .contact-form {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .email-options-horizontal {
        flex-direction: column;
        gap: 20px;
    }
    
    .email-option {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-items {
        gap: 20px;
    }
    
    .contact-item {
        padding: 12px;
    }
}

/* Responsive adjustments for email options */
@media (max-width: 768px) {
    .email-options-horizontal {
        flex-direction: column;
        gap: 20px;
    }
    
    .email-option {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .email-option {
        min-width: 100%;
    }
}

/* Mobile Navigation Animation */
.nav-toggle span.rotate-down {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle span.fade-out {
    opacity: 0;
}

.nav-toggle span.rotate-up {
    transform: rotate(-45deg) translate(7px, -6px);
}
/* Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: rgba(0, 135, 26, 0.8);
    transform: translateY(-5px);
}

/* Tooltips */
[data-tooltip] {
    position: relative;
    cursor: help;
}

.tooltip {
    position: absolute;
    background-color: var(--text-color);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 10000;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lazy Loading */
.lazy {
    filter: blur(5px);
    transition: filter 0.3s;
}

.lazy.loaded {
    filter: blur(0);
}

/* Reveal Animations */
.reveal-on-load {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-revealed {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section-revealed.active {
    opacity: 1;
    transform: translateY(0);
}

/* Form validation styles */
input:invalid {
    border-color: #ff0000;
}

input:valid {
    border-color: var(--accent-color);
}

/* Loading states */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Performance optimizations */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}