/* Enhanced Banner Section Styling */

/* Gradient Overlay */
.banner-section .bg-layer {
    position: relative;
}

.banner-section .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.banner-section .auto-container {
    position: relative;
    z-index: 3;
}

.banner-section .row {
    position: relative;
    z-index: 4;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Particle Effects */
.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 70px 70px;
    animation: particle-float 20s linear infinite;
    z-index: 2;
}

@keyframes particle-float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Enhanced Typography */
.banner-section .subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.banner-section .subtitle-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 5;
}

.banner-section .subtitle-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #ffd700);
    animation: expand-line 2s ease-out 0.5s forwards;
    z-index: 5;
}

@keyframes expand-line {
    to { width: 100%; }
}

.banner-section .subtitle-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.banner-section .main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 5;
}

.banner-section .title-line {
    color: #ffffff;
    display: block;
    position: relative;
    z-index: 5;
}

.banner-section .title-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.banner-section .main-title:hover .title-line::before {
    opacity: 1;
}

/* Title Decoration */
.banner-section .title-decoration {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 5;
}

.banner-section .decoration-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
    position: relative;
    overflow: hidden;
}

.banner-section .decoration-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.banner-section .decoration-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
    animation: pulse 2s infinite;
}

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

/* Enhanced Description */
.banner-section .description-wrapper {
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

.banner-section .banner-description {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 0;
    position: relative;
    z-index: 5;
}

.banner-section .description-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 15px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-section .description-wrapper:hover::before {
    opacity: 1;
}

/* Enhanced CTA Button */
.banner-section .enhanced-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 5;
}

.banner-section .enhanced-btn::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.5s ease;
}

.banner-section .enhanced-btn:hover::before {
    left: 100%;
}

.banner-section .enhanced-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-color: #ffd700;
}

.banner-section .btn-icon {
    transition: transform 0.3s ease;
}

.banner-section .enhanced-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Banner Info */
.banner-section .banner-info {
    margin-top: 20px;
    position: relative;
    z-index: 5;
}

.banner-section .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    opacity: 0.9;
    padding: 8px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.banner-section .info-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.banner-section .info-item i {
    color: #ffd700;
    font-size: 16px;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Scroll Indicator */
.banner-section .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    z-index: 6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-section .scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.banner-section .scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.banner-section .scroll-arrow {
    animation: bounce 2s infinite;
}

.banner-section .scroll-arrow i {
    font-size: 20px;
    color: #ffffff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .banner-section .main-title {
        font-size: 2.5rem;
    }
    
    .banner-section .banner-description {
        font-size: 16px;
    }
    
    .banner-section .floating-shape {
        display: none;
    }
}

@media (max-width: 767px) {
    .banner-section .main-title {
        font-size: 2rem;
    }
    
    .banner-section .subtitle-text {
        font-size: 16px;
    }
    
    .banner-section .enhanced-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .banner-section .title-decoration {
        display: none;
    }
    
    .banner-section .scroll-indicator {
        bottom: 20px;
    }
}

/* Additional Enhancements */
.banner-section .content-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.banner-section .content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.banner-section .content-box:hover::before {
    left: 100%;
}

.banner-section .line-shape {
    background: linear-gradient(90deg, #ffffff, transparent);
    height: 3px;
    width: 60px;
    margin-bottom: 20px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.banner-section .line-shape::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: shimmer 3s infinite;
}

/* Loading Animation */
.banner-section .wow {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.banner-section .wow.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Effect */
.banner-section .title-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

/* Enhanced Focus States */
.banner-section .enhanced-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.banner-section .info-item:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Fullscreen Hero Banner Styles */
.fullscreen-hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.banner-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    animation: zoomIn 20s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 3;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 80px 40px;
    background: rgba(0,0,0,0.2);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #4a90e2;
    position: relative;
    animation: fadeInDown 1s ease-out 0.3s both;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.8s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 60px; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 8px 32px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, #4a90e2, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-title:hover::before {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #f8f8f8;
    text-shadow: 0 4px 16px rgba(0,0,0,0.3);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(30,60,114,0.3);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-btn::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;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #4a90e2 100%);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(74,144,226,0.4);
    border-color: rgba(74,144,226,0.5);
}

.hero-btn-arrow {
    margin-left: 12px;
    font-size: 1.4em;
    vertical-align: middle;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn:hover .hero-btn-arrow {
    margin-left: 20px;
    transform: translateX(5px);
}

.scroll-down-cue {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.9;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease-out 1.5s both;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-down-cue:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-down-cue span {
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: 3px;
    opacity: 0.8;
    font-weight: 500;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    margin-top: 4px;
    animation: bounceDown 2s infinite;
    transition: all 0.3s ease;
}

.scroll-down-cue:hover .scroll-arrow {
    border-color: #4a90e2;
    transform: rotate(-45deg) scale(1.2);
}

@keyframes bounceDown {
    0%, 100% { 
        transform: translateY(0) rotate(-45deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(15px) rotate(-45deg); 
        opacity: 1;
    }
}

/* Floating particles */
.fullscreen-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px, 80px 80px;
    animation: particleFloat 25s linear infinite;
    z-index: 2;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    .hero-content { padding: 50px 30px 70px 30px; }
}

@media (max-width: 900px) {
    .hero-title { font-size: 2.8rem; }
    .hero-description { font-size: 1.2rem; }
    .hero-content { padding: 40px 20px 60px 20px; }
    .hero-btn { padding: 16px 35px; font-size: 1.1rem; }
}

@media (max-width: 600px) {
    .fullscreen-hero, .banner-bg, .hero-content-container { 
        height: 90vh; 
        min-height: 500px; 
    }
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 1.1rem; }
    .hero-btn { font-size: 1rem; padding: 14px 28px; }
    .hero-content { padding: 30px 15px 50px 15px; }
    .scroll-down-cue { bottom: 30px; }
}

/* Additional enhancements */
.hero-content::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, rgba(74,144,226,0.3), transparent, rgba(74,144,226,0.3));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-content:hover::after {
    opacity: 1;
}

/* Enhanced focus states for accessibility */
.hero-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(74,144,226,0.4);
}

.scroll-down-cue:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
} 