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

body {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 165, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(255, 87, 34, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.navbar {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #FF6B35, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
}

.nav-tabs {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.nav-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.nav-tab::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3));
}

.nav-tab:hover {
    transform: translateY(-2px);
    background: rgba(255, 107, 53, 0.1);
}

.nav-tab.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 140, 0, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3), inset 0 0 20px rgba(255, 140, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    min-height: calc(100vh - 100px);
    z-index: 2;
}

.content {
    display: none;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.4s ease;
}

.content.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.slide-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FFA500;
    font-family: 'Space Grotesk', sans-serif;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;


}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF6B35;
    width: 30px;
    border-radius: 6px;


}


.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #FFA500, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
}

.card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.impact-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(255, 107, 53, 0.05));
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #FF6B35;
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateX(5px);
}

.impact-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35, #FFA500);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.newsletter {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(0, 0, 0, 0.6));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

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

.news-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 8px;
    border-bottom: 2px solid #FF6B35;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 107, 53, 0.05);
}

.news-date {
    color: #FFA500;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.news-link {
    color: #e8e8e8;
    text-decoration: none;
    display: block;
}

.news-link h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.news-link:hover h4 {
    color: #FFA500;
}

.news-link p {
    font-size: 0.9rem;
    opacity: 0.8;
}



.trgtcont {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.targets {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px 25px 25px;
    position: relative;
    min-height: 300px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.targets:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
}

.target-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.target-number {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(135deg, #FF6B35, #FF8C00) 1;
    border-radius: 10px;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.target-number h5 {
    font-size: 0.6rem;
    color: #FF8C00;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.target-number h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #FFA500, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
}

.target-text {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #e8e8e8;
    font-family: 'Raleway', sans-serif;
}

.indicators {
    margin-top: 20px;
}

.indicators-title {
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #FFA500, #FF6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-align: center;
}

.indi {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    border-radius: 6px;
    border-left: 3px solid #FF6B35;
    padding: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.indi:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(0, 0, 0, 0.6));
}

.indi h4 {
    color: #FF8C00;
    font-weight: bold;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.indi p {
    color: #c8c8c8;
    font-size: 0.82rem;
    line-height: 1.3;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.progress-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(255, 107, 53, 0.02));
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
}

.progress-target {
    color: #FFA500;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    margin: 1rem 0;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #FFA500);
    border-radius: 15px;
    width: 0;
    animation: progressAnimation 1.5s ease forwards;
    position: relative;
}

.progress-fill::after {
    content: attr(data-percentage);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-weight: bold;
    font-size: 0.9rem;
}

@keyframes progressAnimation {
    to {
        width: var(--progress-width);
    }
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 107, 53, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFA500;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 107, 53, 0.05);
    border-color: #FF6B35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.btn-submit {
    background: linear-gradient(45deg, #FF6B35, #FFA500);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
    .trgtcont {
        grid-template-columns: 1fr;
    }

    .target-header {
        flex-direction: column;
    }

    .target-number {
        margin-bottom: 15px;
    }

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

    .nav-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .nav-container {
        flex-direction: column;
    }

}