/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003366;
    --secondary-color: #0066cc;
    --accent-color: #ff9900;
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-bg: #000000;
    --light-bg: #f5f5f5;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem !important;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* RTL Support for Hebrew */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* RTL support for Swiper */
[dir="rtl"] .partner-logos.swiper {
    direction: rtl;
}

[dir="rtl"] .swiper-pagination {
    left: auto;
    right: 0;
}

.ticker-item1::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../img/icons/hot-offer.svg'); /* Replace with your image */
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
  }
  .ticker-item2::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../img/icons/investment.svg'); /* Replace with your image */
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
  }
  .ticker-item3::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../img/icons/location.svg'); /* Replace with your image */
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
  }
  .ticker-item4::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../img/icons/euro.svg'); /* Replace with your image */
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
  }



[dir="rtl"] .ticker-item::after {
    margin-left: 0;
    margin-right: 20px;
}

[dir="rtl"] .info-block {
    text-align: right;
}

[dir="rtl"] .countdown-item {
    direction: ltr; /* Keep countdown numbers in LTR */
    text-align: center;
}

[dir="rtl"] .form-group {
    text-align: right;
}

/* Override any unwanted flips in RTL mode */
[dir="rtl"] .countdown-timer {
    direction: ltr; /* These elements should not be flipped */
}

/* Fix animations for RTL */
@keyframes ticker-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

[dir="rtl"] .ticker-wrapper {
    animation: ticker-rtl var(--ticker-duration) linear infinite;
}

/* Ticker Bar Styles */
.ticker-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color:#0E3276;
    color: var(--light-text);
    z-index: 1000;
    overflow: hidden;
    height: 40px;
    padding: 10px 0px;
}

.ticker-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    --ticker-duration: 20s; /* Default duration that can be overridden */
}

.ticker-wrapper {
    display: flex;
    animation: ticker var(--ticker-duration) linear infinite;
    width: fit-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
    white-space: nowrap;
    font-weight: 600;
    position: relative;
}

.ticker-item::after {
    content: "||";
    margin-left: 20px;
    color: var(--light-text);
}

.ticker-item:last-child::after {
    display: none;
}

.ticker-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.ticker-item a{
    color: #fff;
    text-decoration: none;
}
/* .ticker-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} */

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Banner Carousel Styles */
.banner-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -2;
}

.banner-bg.active {
    opacity: 1;
}

/* Main Banner Styles */
.main-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    padding-top: 40px; /* Space for ticker bar */
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.bic-logo {
    height: 60px;
    margin-right: 1rem;
}

.slogan {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 0;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    position: fixed;
    right: 2%;
    bottom: 3%;
    transform: translateZ(0);
    z-index: 1111;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #000000;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.5rem;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: #ff9900;
}

.flag-icon {
    width: 20px;
    height: 15px;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 150px;
    height: 60px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.partner-logo {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination {
    position: absolute;
    bottom: -6px !important;
    display: none;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    padding: 2rem;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
    padding: 1rem;
    min-width: 80px;
    flex: 1;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.banner-cta {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.modal{
    z-index: 9999 !important;
}
.signup-btn {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.signup-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Infographic Section Styles */
.infographic-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.infographic-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.infographic-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    min-height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.infographic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.infographic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.infographic-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Info Blocks Section Styles */


.btn-close {
    background: #0E3276;
    opacity: 1;
    
}


.info-blocks-section {
    padding: 5rem 0;
    background-color: #0E3276;
    color: #ffffff;
    perspective: 1200px;
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(30, 80, 170, 0.8) 0%, rgba(14, 50, 118, 0) 80%),
        radial-gradient(circle at 90% 80%, rgba(30, 80, 170, 0.8) 0%, rgba(14, 50, 118, 0) 80%);
    background-size: 100% 100%, 100% 100%;
    animation: backgroundGlow 15s ease-in-out infinite alternate;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}

@keyframes backgroundGlow {
    0% {
        background-position: 0% 0%, 100% 100%;
    }
    100% {
        background-position: 100% 100%, 0% 0%;
    }
}

.info-blocks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(50, 120, 255, 0.1) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 100%),
        repeating-linear-gradient(45deg, rgba(50, 120, 255, 0.1) 0px, rgba(50, 120, 255, 0.1) 10px, rgba(14, 50, 118, 0) 10px, rgba(14, 50, 118, 0) 20px);
    transform-style: preserve-3d;
    transform: translateZ(-50px) rotateX(5deg) scale(1.1);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPatternMove 30s linear infinite;
    background-size: 100% 100%, 200px 200px;
}

@keyframes backgroundPatternMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 200px 200px;
    }
}

.info-blocks-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    transform: translateZ(-100px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.7;
}

.info-blocks-section .info-blocks-depth-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0) 0px, rgba(50, 120, 255, 0.05) 1px, rgba(255,255,255,0) 2px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0) 0px, rgba(50, 120, 255, 0.05) 1px, rgba(255,255,255,0) 2px);
    background-size: 50px 50px;
    transform-style: preserve-3d;
    transform: translateZ(-150px) scale(1.5);
    opacity: 0.5;
    pointer-events: none;
    z-index: -2;
    animation: depthLayerMove 20s linear infinite alternate;
}

@keyframes depthLayerMove {
    0% {
        transform: translateZ(-150px) scale(1.5) rotate(0deg);
    }
    100% {
        transform: translateZ(-150px) scale(1.5) rotate(1deg);
    }
}

/* Enhanced particle effect */
.info-blocks-section .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 15px 5px rgba(50, 120, 255, 0.4), 0 0 5px 2px rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 0;
    transform-style: preserve-3d;
    transform: translateZ(-20px);
    animation: particleFloat 10s infinite linear, particleGlow 4s infinite ease-in-out;
}

.info-blocks-section .particle:nth-child(1) {
    top: 10%;
    left: 20%;
    width: 8px;
    height: 8px;
    animation-duration: 15s;
    animation-delay: 0s;
    transform: translateZ(-30px);
}

.info-blocks-section .particle:nth-child(2) {
    top: 40%;
    left: 80%;
    width: 12px;
    height: 12px;
    animation-duration: 25s;
    animation-delay: 2s;
    transform: translateZ(-10px);
}

.info-blocks-section .particle:nth-child(3) {
    top: 70%;
    left: 10%;
    width: 6px;
    height: 6px;
    animation-duration: 20s;
    animation-delay: 5s;
    transform: translateZ(-50px);
}

.info-blocks-section .particle:nth-child(4) {
    top: 30%;
    left: 60%;
    width: 9px;
    height: 9px;
    animation-duration: 18s;
    animation-delay: 8s;
    transform: translateZ(-25px);
}

.info-blocks-section .particle:nth-child(5) {
    top: 80%;
    left: 30%;
    width: 10px;
    height: 10px;
    animation-duration: 22s;
    animation-delay: 10s;
    transform: translateZ(-15px);
}

@keyframes particleFloat {
    0% {
        transform: translateZ(-20px) translateX(0) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateZ(-20px) translateX(100px) translateY(-100px);
        opacity: 0;
    }
}

.info-blocks-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    padding: 20px 10px;
}

@keyframes float {
    0% {
        transform: translateZ(10px) translateY(0);
    }
    50% {
        transform: translateZ(15px) translateY(-5px);
    }
    100% {
        transform: translateZ(10px) translateY(0);
    }
}

.info-block {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), 
                inset 0 1px 1px rgba(255,255,255,0.2),
                inset 0 -1px 1px rgba(0,0,0,0.2),
                0 0 15px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    transform-style: preserve-3d;
    transform: translateZ(10px);
    backface-visibility: hidden;
    animation: float 6s ease-in-out infinite;
}

.info-block:nth-child(1) {
    animation-delay: 0s;
}

.info-block:nth-child(2) {
    animation-delay: 2s;
}

.info-block:nth-child(3) {
    animation-delay: 4s;
}

.info-block:hover {
    transform: translateY(-15px) translateZ(30px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 
                inset 0 2px 2px rgba(255,255,255,0.3),
                inset 0 -2px 2px rgba(0,0,0,0.2),
                0 0 30px rgba(255, 153, 0, 0.15);
    animation-play-state: paused;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 153, 0, 0.3);
}

.info-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: -1;
    transform: translateZ(-5px);
}

.info-block::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg) translateZ(-10px);
    animation: reflectionAnim 8s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
}

.info-block h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transform: translateZ(40px);
    transform-style: preserve-3d;
    text-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

.info-block-content {
    display: block;
    transform: translateZ(30px);
    margin-top: 10px;
}

.info-block-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff9900, #ff7700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transform: translateZ(50px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover .info-block-icon {
    transform: translateZ(60px) scale(1.1);
    box-shadow: 0 15px 25px rgba(0,0,0,0.5), 0 0 15px rgba(255, 153, 0, 0.3);
}

.info-block-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transform: translateZ(5px);
}

.block-subtitle {
    display: block;
    text-align: center;
    color: #ff9900;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transform: translateZ(30px);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Final CTA Section Styles */
.final-cta-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.final-slogan {
    color: var(--primary-color);
}

/* Lead Form Styles */
.lead-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    perspective: 1500px;
}

.lead-form-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.5) 80%
    );
    pointer-events: none;
}

.lead-form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lead-form-container {
    width: 90%;
    max-width: 800px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
}

.lead-form-container:hover {
    transform: rotateX(0deg);
}

.lead-capture-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform-style: preserve-3d;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    transform-style: preserve-3d;
}

.form-column {
    flex: 1;
    min-width: 250px;
    transform: translateZ(10px);
    transition: transform 0.3s ease;
}

.form-column:hover {
    transform: translateZ(20px);
}

.form-group {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.form-group:hover {
    transform: translateZ(5px);
}

.lead-form-container h3 {
    position: relative;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateZ(15px);
    margin-bottom: 1.5rem;
}

.lead-form-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    transform: translateZ(16px);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transform: translateZ(12px);
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transform: translateZ(8px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transform: translateZ(12px);
}

.recaptcha-terms {
    font-size: 0.75rem;
    color: #666;
    transform: translateZ(5px);
    transition: all 0.3s ease;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    min-width: 200px;
    transform: translateZ(20px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateZ(25px) scale(1.05);
}

.close-form-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transform: translateZ(30px);
    transition: all 0.3s ease;
    height: 35px;
    width: 35px;
    background: #0E3276;
    color: white;
    border-radius: 50%;
}

.close-form-btn:hover {
    color: var(--accent-color);
    transform: translateZ(35px) scale(1.2);
}

.form-message {
    text-align: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.grecaptcha-badge {
    display: none !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-banner {
        height: 100%;   
    }
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .banner-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .bic-logo {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .partner-logos {
        margin: 1rem auto;
        width: 120px;
    }
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .info-blocks-wrapper {
        flex-direction: column;
    }
    
    .info-block {
        min-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .infographic-wrapper {
        flex-direction: column;
       
    }
    
    .infographic-item {
        flex: 0 0 calc(50% - 40px);
        margin-bottom: 15px;
    }
    
    .infographic-icon {
        flex: 0 0 40px;
    }
}

@media (max-width: 767px) {
    .language-switcher {
        flex-direction: column;
    }
    .infographic-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .infographic-item {
        width: 100%;
        max-width: 350px;
        margin-bottom: 0;
    }
    .infographic-icon {
        margin: 5px 0;
        transform: rotate(90deg);
    }
    .infographic-icon img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .info-block h3 {
        font-size: 1.1rem;
    }
    
    .banner-content {
        padding: 1rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .signup-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .infographic-item {
        padding: 1rem;
        min-height: auto;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .info-block h3 {
        font-size: 0.9rem;
    }
}

@keyframes formEntrance {
    0% {
        opacity: 0;
        transform: rotateX(20deg) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: rotateX(5deg) translateY(0);
    }
}

.lead-form-overlay.active .lead-form-container {
    animation: formEntrance 0.6s ease-out forwards;
}

/* Keep .info-block-content styling when displaying in Bootstrap modal */
.modal-body .info-block-content {
    display: block;
}

@keyframes reflectionAnim {
    0% {
        transform: rotate(30deg) translate(-100%, -100%) translateZ(-10px);
        opacity: 0;
    }
    30% {
        opacity: 0.5;
    }
    70% {
        opacity: 0.5;
    }
    100% {
        transform: rotate(30deg) translate(100%, 100%) translateZ(-10px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .info-blocks-section {
        perspective: 800px;
        background-size: 200% 200%, 200% 200%;
    }
    
    .info-blocks-section::before {
        transform: translateZ(-25px) rotateX(3deg) scale(1.05);
    }
    
    .info-blocks-section .info-blocks-depth-layer {
        transform: translateZ(-75px) scale(1.3);
    }
    
    .info-blocks-wrapper {
        flex-direction: column;
    }
    
    .info-block {
        min-width: 100%;
        margin-bottom: 1.5rem;
        transform: translateZ(5px);
    }
    
    .info-block:hover {
        transform: translateY(-10px) translateZ(15px) rotateX(5deg);
    }
    
    .info-block h3 {
        transform: translateZ(20px);
    }
    
    .info-block-icon {
        transform: translateZ(25px);
    }
    
    .info-block:hover .info-block-icon {
        transform: translateZ(30px) scale(1.05);
    }
    
    .block-subtitle {
        transform: translateZ(15px);
    }
    
    /* Reduce number of particles on mobile */
    .info-blocks-section .particle:nth-child(4),
    .info-blocks-section .particle:nth-child(5) {
        display: none;
    }
}

@media (max-width: 576px) {
    .info-blocks-section {
        perspective: 600px;
    }
    
    .info-blocks-section::before {
        transform: translateZ(-15px) rotateX(2deg) scale(1.03);
    }
    
    .info-blocks-section .info-blocks-depth-layer {
        transform: translateZ(-50px) scale(1.2);
        opacity: 0.3;
    }
}

/* Add glow effect to particles */
@keyframes particleGlow {
    0%, 100% {
        box-shadow: 0 0 15px 5px rgba(50, 120, 255, 0.4), 0 0 5px 2px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px 8px rgba(50, 120, 255, 0.6), 0 0 10px 4px rgba(255, 255, 255, 0.5);
    }
}