.hero-banner-section {
    width: 100%;
    background-color: var(--hero-bg-color, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	padding:140px 0px 0px;
	min-height:800px;
}

.custom-container {
    max-width: 1460px;
    margin: auto;
}

.hero-banner-cntn {
    color: #fff;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 38px 20px;
    max-width: 896px;
    margin: auto;
}

.hero-banner-cntn h1,
.hero-banner-cntn p,
.hero-banner-cntn a {
    font-family: var(--hero-font-family, "Poppins", Sans-serif);
}

.hero-banner-cntn h1 {
    text-align: center;
    font-size: var(--hero-h1-size, 90px);
    font-weight: 500;
    text-transform: capitalize;
    font-style: italic;
    line-height: 1.1;
    color: var(--hero-h1-color, #fff);
    width: 100%;
    margin-bottom: 0;
}

.hero-banner-cntn h1 span {
    font-family: var(--hero-accent-font, "Playfair Display", Serif);
    color: var(--hero-accent-color, #EA560D);
    display: inline-block;
    min-width: 0.2em;
    /* Ensure some space for dynamic words */
    white-space: nowrap;
    font-style: italic;
    margin: 0 0.1em;
}

.hero-banner-cntn p {
    color: var(--hero-p-color, #cbd5e1);
    font-size: var(--hero-p-size, 20px);
    font-weight: 400;
}

.hero-banner-cntn .hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.hero-banner-cntn .hero-btns a {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 10px;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}

.hero-btns a.dark-btn {
    color: var(--hero-btn1-text, #fff);
    background-color: var(--hero-btn1-bg, #EA560D);
    border-color: var(--hero-btn1-bg, #EA560D);
}

.hero-btns a.dark-btn:hover {
    background-color: transparent;
    color: var(--hero-btn1-bg, #EA560D);
    border-color: var(--hero-btn1-bg, #EA560D);
}

.hero-btns a.light-btn {
    color: var(--hero-btn2-text, #3C3C3B);
    background-color: var(--hero-btn2-bg, #fff);
    border-color: var(--hero-btn2-bg, #fff);
}

.hero-btns a.light-btn:hover {
    background-color: var(--hero-btn1-bg, #EA560D);
    border-color: var(--hero-btn1-bg, #EA560D);
    color: #fff;
}

/* Animation Grid */
.hero-animate-card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
	overflow:hidden;
}

.hero-animate-card-wrapper::after {
    content: '';
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.9));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner-grid {
    position: relative;
    z-index: 1;
    opacity: 0.3;
    display: grid;
    grid-template-columns: repeat(3, 285px);
    gap: 16px;
    height: 100vh;
    overflow: hidden;
    border-radius: 24px;
    padding: 4px;
    transform: rotate(-2deg);
}

.banner-animate-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform;
}

.hero-banner-grid .banner-animate-card:nth-child(1) {
    animation: scrollDown 80s linear infinite;
}

.hero-banner-grid .banner-animate-card:nth-child(2) {
    animation: scrollUp 85s linear infinite;
}

.hero-banner-grid .banner-animate-card:nth-child(3) {
    animation: scrollDown 90s linear infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.banner-animate-card .card {
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-animate-card .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

/* Responsive */
@media (max-width: 1366px) {
    .hero-banner-cntn h1 {
        font-size: 75px;
    }
}

@media (max-width: 1024px) {
    .hero-banner-cntn h1 {
        font-size: 60px;
    }
	.hero-banner-section {
		min-height: 700px;
		padding: 105px 0 0px;
		gap:20px 20px;
	}
	.hero-banner-cntn {
    	gap: 20px 20px;
	}
}

@media (max-width: 880px) {
    .hero-banner-cntn h1 {
        font-size: 50px;
    }
	.hero-banner-cntn p {
    	font-size: 16px;
	}
}

@media (max-width: 768px) {
    .hero-banner-cntn h1 {
        font-size: 35px;
    }

    .hero-banner-cntn .hero-btns a {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-banner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
	.hero-banner-section {
        min-height: auto;
        padding: 150px 0 156px;
        gap: 20px 20px;
    }
	
}