


.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}


.ice-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    text-transform: uppercase; 
    color: transparent;
    background: linear-gradient(
        45deg,
        #e0f2f7 0%,    
        #a9d9ec 25%,   
        #c1e6f2 50%,   
        #a9d9ec 75%,   
        #e0f2f7 100%   
    );
    -webkit-background-clip: text;
    background-clip: text;

    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        2px 2px 5px rgba(100, 150, 200, 0.4),
        -2px -2px 5px rgba(100, 150, 200, 0.4),
        4px 4px 10px rgba(50, 100, 150, 0.3),
        -4px -4px 10px rgba(50, 100, 150, 0.3),
        1px 1px 1px rgba(255, 255, 255, 0.8),
        -1px -1px 1px rgba(255, 255, 255, 0.8),
        0 0 0.5px rgba(180, 220, 255, 0.9);

    transform: scale(1) perspective(500px) rotateX(0deg);
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
}

.ice-title:hover {
    transform: scale(1.02) perspective(500px) rotateX(2deg);
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.7),
        0 0 25px rgba(255, 255, 255, 0.4),
        3px 3px 7px rgba(100, 150, 200, 0.6),
        -3px -3px 7px rgba(100, 150, 200, 0.6),
        5px 5px 12px rgba(50, 100, 150, 0.5),
        -5px -5px 12px rgba(50, 100, 150, 0.5),
        1px 1px 1px rgba(255, 255, 255, 1),
        -1px -1px 1px rgba(255, 255, 255, 1),
        0 0 0.5px rgba(200, 230, 255, 1);
}

@media (max-width: 768px) {
    .ice-effect-container {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }
    .ice-title {
        font-size: 2.8rem; 
        letter-spacing: -0.02em;
    }
}

@media (max-width: 480px) {
    .ice-title {
        font-size: 2rem; 
    }
}




.relativeDiv {
    position: relative;
    width: 100%;
    height: 100%;
}

.displayNoneDiv {
    display: none;
}

.sec-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark-dark);
    border-radius: 5px;
    margin-bottom: 1rem;
    z-index: 4;
    position: relative;
}

.sec-title .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: absolute;
    top:-15px;
    left: -20px;
}

/* Cta Banner */


.ctaBanner {
    height: auto;
    margin-bottom: 5rem;
    z-index: 3;
    margin-top: 2rem;
}

.ctaBanner .banner {
    height: 250px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.ctaBanner .bg {
    position: absolute;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;

}

.ctaBanner .bg .image {
    position: absolute;
    right: 0;
    height: 100%;
    width: 60%;
}

.ctaBanner .bg .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.ctaBanner .slogan {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 2rem;
    z-index: 0;
    z-index: 10;
    position: relative;
}

.ctaBanner .slogan h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-light);
}

.ctaBanner .slogan h2 span {
    background: var(--text-light);
    padding: 0.1rem 0.6rem;
    border-radius: 5px;
    color: var(--primary-color);
}

.ctaBanner .slogan p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: var(--text-light-low);
    max-width: 700px;
}

.ctaBanner canvas {
    z-index: 0;
}

/* CTA Banner Responsive */

@media (max-width: 768px) {
    .ctaBanner {
        margin-bottom: 4rem;
        margin-top: -2rem;
    }
    
    .ctaBanner .banner {
        height: 200px;
    }
    
    .ctaBanner .bg .image {
        width: 50%;
    }
    
    .ctaBanner .slogan {
        padding: 1.5rem;
    }
    
    .ctaBanner .slogan h2 {
        font-size: 2.2rem;
    }
    
    .ctaBanner .slogan p {
        font-size: 0.9rem;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .ctaBanner {
        margin-bottom: 3rem;
        margin-top: -1.5rem;
    }
    
    .ctaBanner .banner {
        height: 180px;
        border-radius: 8px;
    }
    
    .ctaBanner .bg .image {
        width: 40%;
    }
    
    .ctaBanner .slogan {
        padding: 1rem;
    }
    
    .ctaBanner .slogan h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .ctaBanner .slogan h2 span {
        display: block;
        margin-bottom: 0.5rem;
        padding: 0.1rem 0.5rem;
        border-radius: 4px;
    }
    
    .ctaBanner .slogan p {
        font-size: 0.85rem;
        max-width: 280px;
        line-height: 1.4;
    }
}

@media (max-width: 350px) {
    .ctaBanner {
        margin-bottom: 2.5rem;
        margin-top: -1rem;
    }
    
    .ctaBanner .banner {
        height: 150px;
        border-radius: 6px;
    }
    
    .ctaBanner .bg .image {
        width: 35%;
    }
    
    .ctaBanner .slogan {
        padding: 0.8rem;
    }
    
    .ctaBanner .slogan h2 {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .ctaBanner .slogan h2 span {
        font-size: 0.9em;
        padding: 0.05rem 0.4rem;
        border-radius: 3px;
        display: block;
        margin-bottom: 0.4rem;
    }
    
    .ctaBanner .slogan p {
        font-size: 0.75rem;
        max-width: 200px;
        line-height: 1.3;
    }
}




/* Loader */


.loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999;
    width: 100%;
    height: 100%;
}

.loader .inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.loader .inner .sky {
    width: 100%;
    height: 100%;
}

.loader .inner .sky .cloud {
    position: absolute;
    width: 200%;
    left: -100%;
    height: 150%;
    top: -25%;
    
}

.loader .inner .sky .cloud img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loader .inner .sky .cloud:nth-child(1) {
    z-index: 5;
}

.loader .inner .sky .cloud:nth-child(2) {
    z-index: 4;
}

.loader .inner .sky .cloud:nth-child(3) {
    z-index: 3;
}

.loader .inner .sky .cloud:nth-child(4) {
    z-index: 2;
}

.loader .inner .sky .cloud:nth-child(5) {
    z-index: 1;
}

.loader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.loader-logo {
    width: 300px;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
}

.loader-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.loader-progress {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #353281;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    z-index: 15;
}

.progress-number {
    display: inline-block;
    min-width: 80px;
    text-align: right;
}

/* Responsive loader styles */
@media (max-width: 768px) {
    .loader-logo {
        width: 250px;
    }
    
    .loader-progress {
        font-size: 2rem;
        bottom: 30px;
        right: 30px;
    }
    
    .progress-number {
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        width: 200px;
        margin-bottom: 1.5rem;
    }
    
    .loader-progress {
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    .progress-number {
        min-width: 50px;
    }
}




