
:root {
    --primary-color: #0066cc;
    --secondary-color: #28a745;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --gradient-overlay: linear-gradient(135deg, rgba(0,102,204,0.8), rgba(40,167,69,0.6));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: var(--dark-color) !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .btn.nav-link {
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover;
    background-attachment: fixed;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-background .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-btn {
    animation: bounce 2s infinite;
    border: 2px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Content Sections */
section {
    padding: 4rem 0;
}

.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        font-size: 1.4rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.2rem 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.card-img-top {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-img-top.loaded {
    opacity: 1;
}




/* News Page Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.news-article {
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 15px;
    background: transparent;
}

.news-article:hover {
    background: rgba(248, 249, 250, 0.5);
    transform: translateY(-5px);
}

.news-article img {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.news-article:hover img {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.news-article h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-article p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-article .text-muted {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.news-article hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 3rem 0;
}

/* Active navigation link */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Responsive adjustments for news */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .news-article {
        padding: 1rem;
    }

    .news-article h2 {
        font-size: 1.5rem;
    }

    .news-article p {
        font-size: 1rem;
    }

    .news-article .row {
        text-align: center;
    }

    .news-article .order-lg-2 {
        order: 1 !important;
    }

    .news-article .order-lg-1 {
        order: 2 !important;
    }
}

/* Animation on scroll */
.news-article {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.news-article:nth-child(2n) {
    animation-delay: 0.1s;
}

.news-article:nth-child(3n) {
    animation-delay: 0.2s;
}

.news-article:nth-child(4n) {
    animation-delay: 0.3s;
}

/* Enhanced shadow effects */
.shadow {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.news-article:hover .shadow {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

/* Text selection styling */
::selection {
    background: rgba(0,102,204,0.2);
    color: var(--dark-color);
}

::-moz-selection {
    background: rgba(0,102,204,0.2);
    color: var(--dark-color);
}




/* About Page Specific Styles */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.min-vh-75 {
    min-height: 75vh;
}

.about-section {
    padding: 4rem 0;
}

.about-section .card {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* Icon animations */
.fas:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Strategy section styling */
.strategy-item {
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 15px;
}

.strategy-item:hover {
    background: rgba(248, 249, 250, 0.8);
    transform: translateY(-5px);
}


/* Get Started Page Specific Styles */
.rounded-4 {
    border-radius: 20px !important;
}

.get-started-card {
    transition: all 0.3s ease;
    border: none;
}

.get-started-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
}

.partner-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.partner-card .fas {
    transition: all 0.3s ease;
}

.partner-card:hover .fas {
    transform: scale(1.1);
}

/* Program icons animation */
.fa-rocket, .fa-users-cog {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Contact section styling */
.bg-primary .btn-light:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
}

.bg-primary .btn-outline-light:hover {
    background: white;
    color: var(--primary-color) !important;
}





/* Contact Page Specific Styles */
.contact-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon .fas {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color) !important;
}

/* Form Styling */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.25);
}

.form-control-lg {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Contact form card styling */
.card-header.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

/* Email button hover effects */
.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-secondary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Form validation styling */
.was-validated .form-control:valid {
    border-color: var(--secondary-color);
}

.was-validated .form-control:valid:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(40,167,69,0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 2rem;
    }

    .card-body {
        padding: 2rem 1rem !important;
    }

    .btn-outline-primary,
    .btn-outline-secondary {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Animation for contact cards */
.contact-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

/* Success message styling */
.alert-success {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    border-radius: 10px;
}






:root {
    --primary-color: #0066cc;
    --secondary-color: #28a745;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --gradient-overlay: linear-gradient(135deg, rgba(0,102,204,0.8), rgba(40,167,69,0.6));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: var(--dark-color) !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .btn.nav-link {
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
}

/* Hero Section for Homepage */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover;
    background-attachment: fixed;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-background .container {
    position: relative;
    z-index: 2;
}

/* Hero Section for About Page - ИСПРАВЛЕННАЯ ВЕРСИЯ */
.hero-section-about {
    position: relative;
    min-height: 75vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-section-about .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-btn {
    animation: bounce 2s infinite;
    border: 2px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Content Sections */
section {
    padding: 4rem 0;
}

.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Page Headers */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-color) !important;
}

/* News Page Styles */
.news-article {
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 15px;
    background: transparent;
    opacity: 1;
    transform: translateY(0);
}

.news-article:hover {
    background: rgba(248, 249, 250, 0.5);
    transform: translateY(-5px);
}

.news-article img {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.news-article:hover img {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.news-article h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-article p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-article .text-muted {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.news-article hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 3rem 0;
}

/* Active navigation link */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        font-size: 1.4rem;
    }

    .navbar-nav .nav-link {
        margin: 0.2rem 0;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .news-article {
        padding: 1rem;
    }

    .news-article h2 {
        font-size: 1.5rem;
    }

    .news-article p {
        font-size: 1rem;
    }

    .news-article .row {
        text-align: center;
    }

    .news-article .order-lg-2 {
        order: 1 !important;
    }

    .news-article .order-lg-1 {
        order: 2 !important;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.card-img-top {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-img-top.loaded {
    opacity: 1;
}

/* Get Started Page Specific Styles */
.rounded-4 {
    border-radius: 20px !important;
}

.get-started-card {
    transition: all 0.3s ease;
    border: none;
}

.get-started-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
}

.partner-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.partner-card .fas {
    transition: all 0.3s ease;
}

.partner-card:hover .fas {
    transform: scale(1.1);
}

/* Program icons animation */
.fa-rocket, .fa-users-cog {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Contact section styling */
.bg-primary .btn-light:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
}

.bg-primary .btn-outline-light:hover {
    background: white;
    color: var(--primary-color) !important;
}

/* Contact Page Specific Styles */
.contact-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon .fas {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color) !important;
}

/* Form Styling */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.25);
}

.form-control-lg {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Contact form card styling */
.card-header.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

/* Email button hover effects */
.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-secondary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Form validation styling */
.was-validated .form-control:valid {
    border-color: var(--secondary-color);
}

.was-validated .form-control:valid:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(40,167,69,0.25);
}

/* Text selection styling */
::selection {
    background: rgba(0,102,204,0.2);
    color: var(--dark-color);
}

::-moz-selection {
    background: rgba(0,102,204,0.2);
    color: var(--dark-color);
}



/* Hero Section for Get Started Page - ИСПРАВЛЕННАЯ ВЕРСИЯ */
.hero-section-getstarted {
    position: relative;
    min-height: 75vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section-getstarted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 60%);
    z-index: 1;
}

.hero-section-getstarted .container {
    position: relative;
    z-index: 2;
}

.hero-section-getstarted .text-white {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section-getstarted .display-3 {
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.hero-section-getstarted .lead {
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}
