.start-banner {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video background styles */
.start-banner .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

/* Image background fallback */
.start-banner .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.start-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.start-banner .container {
    position: relative;
    z-index: 2;
}

.start-banner .small-title {
    font-weight: 600;
    color: #fff;
}

.start-banner .main-title {
    font-weight: 700;
    color: #fff;
    position: relative;
	width: fit-content;
}

.start-banner .main-title::after {
    content: "";
    display: block;
    width: 140px;
    height: 3px;
    background: #e30613;
    margin-top: 5px;
	margin-left: auto;
}

.start-banner .description {
    line-height: 1.6;
    color: #e0e0e0;
}

.start-banner .btn {
    font-weight: 600;
    border: 1px solid #fff;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
	border: none;
	border-bottom: solid !important;
	border-radius: 0px;
}

/* Enhanced CTA Button with advanced animations */
.start-banner .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    /* border: 2px solid rgba(255, 255, 255, 0.8); */
    padding: 0.75rem 2rem;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    border-radius: 0;
    text-decoration: none;
    color: white;
    overflow: hidden;
    transition: all 0.4s 
cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sliding background effect */
.start-banner .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.start-banner .cta-button:hover::before {
    left: 100%;
}

/* Main hover effects */
.start-banner .cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Button text animation */
.start-banner .btn-text {
    position: relative;
    transition: transform 0.3s ease;
}

.start-banner .cta-button:hover .btn-text {
    transform: translateX(-3px);
}

/* Arrow icon animations */
.start-banner .btn-icon {
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(0);
}

.start-banner .cta-button:hover .btn-icon {
    transform: translateX(5px) scale(1.1);
}

/* Arrow bounce effect */
.start-banner .btn-icon i {
    display: inline-block;
    transition: all 0.3s ease;
}

.start-banner .cta-button:hover .btn-icon i {
    animation: arrowBounce 0.6s ease;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

/* ==========================================================
   SCROLL INDICATOR - Right Bottom Corner FINAL VERSION
   ========================================================== */

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    padding: 1.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator:hover .scroll-text {
    color: white;
    letter-spacing: 2px;
}

.scroll-icon {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.scroll-icon i {
    font-size: 1.1rem;
    color: white;
    animation: scrollBounce 2.5s infinite ease-in-out;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.scroll-icon i:nth-child(1) {
    animation-delay: 0s;
    font-size: 0.9rem;
}

.scroll-icon i:nth-child(2) {
    animation-delay: 0.4s;
    font-size: 1rem;
}

.scroll-icon i:nth-child(3) {
    animation-delay: 0.8s;
    font-size: 1.1rem;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* Enhanced hover animation */
.scroll-indicator:hover .scroll-icon i {
    animation-duration: 1.5s;
    opacity: 1;
}

/* Pulse effect on click */
.scroll-indicator:active {
    transform: translateY(-5px) scale(0.95);
}

.scroll-indicator:active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    animation: clickPulse 0.3s ease-out;
}

@keyframes clickPulse {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

/* Responsive - hide on smaller screens */
@media (max-width: 991px) {
    .scroll-indicator {
        display: none !important;
    }
}

/* Extra large screens adjustment */
@media (min-width: 1400px) {
    .scroll-indicator {
        right: 4rem;
        bottom: 4rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .start-banner .bg-video {
        object-position: center center;
    }
    
    .start-banner .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 14px;
        gap: 0.5rem;
    }
}

/* ==========================================================
   UNIVERSAL BUTTON STYLES - CONSISTENT DESIGN
   ========================================================== */

.cta-button,
.btn-primary-custom,
.contact-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border: 2px solid #e30613;
    background: #e30613;
    color: white;
    text-decoration: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
}

/* Sliding background effect */
.cta-button::before,
.btn-primary-custom::before,
.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
    z-index: 1;
}

.cta-button:hover::before,
.btn-primary-custom:hover::before,
.contact-btn:hover::before {
    left: 100%;
}

/* Hover states */
.cta-button:hover,
.btn-primary-custom:hover,
.contact-btn:hover {
    background: transparent;
    color: #e30613;
    border-color: #e30613;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.3);
}

/* Button text animation */
.btn-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.cta-button:hover .btn-text,
.btn-primary-custom:hover .btn-text,
.contact-btn:hover .btn-text {
    transform: translateX(-5px);
}

/* Icon animations */
.btn-icon {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
}

.cta-button:hover .btn-icon,
.btn-primary-custom:hover .btn-icon,
.contact-btn:hover .btn-icon {
    transform: translateX(8px) rotate(360deg);
}

.btn-icon i {
    font-size: 1.1rem;
}

/* ==========================================================
   VARIANT STYLES FOR DIFFERENT CONTEXTS
   ========================================================== */

/* White/outline variant for dark backgrounds */
.cta-button.btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-button.btn-outline:hover {
    background: white;
    color: #e30613;
    border-color: white;
}

/* Large variant for hero sections */
.cta-button.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
    min-width: 220px;
}

/* Small variant for cards/compact spaces */
.cta-button.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    min-width: 140px;
    gap: 0.5rem;
}

/* ==========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================== */

@media (max-width: 768px) {
    .cta-button,
    .btn-primary-custom,
    .contact-btn {
        padding: 0.85rem 2rem;
        font-size: 0.85rem;
        min-width: 160px;
        gap: 0.5rem;
    }
    
    .cta-button.btn-large {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    .cta-button:hover .btn-text,
    .btn-primary-custom:hover .btn-text,
    .contact-btn:hover .btn-text {
        transform: translateX(-3px);
    }
    
    .cta-button:hover .btn-icon,
    .btn-primary-custom:hover .btn-icon,
    .contact-btn:hover .btn-icon {
        transform: translateX(5px) rotate(180deg);
    }
}

/* ==========================================================
   ACCESSIBILITY & STATES
   ========================================================== */

.cta-button:focus,
.btn-primary-custom:focus,
.contact-btn:focus {
    outline: 2px solid #e30613;
    outline-offset: 3px;
}

.cta-button:active,
.btn-primary-custom:active,
.contact-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-button:disabled,
.btn-primary-custom:disabled,
.contact-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cta-button:disabled:hover,
.btn-primary-custom:disabled:hover,
.contact-btn:disabled:hover {
    background: #e30613;
    color: white;
    transform: none;
    box-shadow: none;
}


