:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --light: #f8fafc;
    --dark: #1e293b;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.stat-number{
    display: flex;
    justify-content: center;
}
/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /*position: fixed;*/
    width: 100%;
    top: 0;
    z-index: 1000;
}
.contact-info{
    padding-left: 0;
}
.contact-info li{
    margin-bottom: 4px !important
}
.carousel-item{
    position: relative;
    text-align: center
}
.carousel-item img{
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
}
.carousel-item .align-items-center{
    position: relative;
    z-index: 12;
    color: #fff      ;
    min-height: 535px
}
.carousel-item .align-items-center .text-center{
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 1rem
}
.carousel-item .lead{
    font-size: 1.75rem;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.display-4{
    font-size: 2.5rem
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero p {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.navbar-brand{
    color: #313B6A
}
.navbar-brand img{
    height: 40px;
    margin-right: 10px
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #313B6A;
    /*color: var(--primary);*/
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta .btn {
    background-color: white;
    color: var(--primary);
}

.cta .btn:hover {
    background-color: var(--light);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
}
#funkcje .row > div{
    position: relative
}
#funkcje .row > div .help-icon{
    position: absolute;
    top: 1.5rem;
    right: 2rem
}
.social-proof{
    background-color: #F8F9FA
}
.benefit-card{
    height: 100%;
}
.cm-powered-by{
    display: none !important
}
#imageModal h5{
    color: #000 !important
}
#imageModal .justify-content-center{
    display: block !important;
    text-align: center !important;
}
#premiera a:hover{
    color: #fff
 }
 #o-nas i {
    margin-top: 0 !important
 }
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .stats {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
  .carousel-item img{
    width: unset;
  }
}
#manifest{
    margin-top: 0 !important
}
.carousel-control-next, .carousel-control-prev{
  z-index: 999
}
.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1056;
    cursor: pointer;
    
    /* Kluczowe zmiany */
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%; /* Tworzy idealne koło */
    color: white;
    font-size: 2rem; /* Rozmiar samej ikony strzałki */
    text-decoration: none;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    transform: translateY(-50%) scale(1.05); /* Lekkie powiększenie */
}

.modal-arrow.prev {
    left: 20px;
}

.modal-arrow.next {
    right: 20px;
}
.hidden{
    display: none !important
}