/* Rangareddy Risers Custom CSS */

/* Team Card Styles */
.team-card-wrapper {
    margin-bottom: 30px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
    border-color: #ff6b00;
}

.team-thumb {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-thumb img {
    transform: scale(1.1);
}

.jersey-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 48px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-role {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.team-specialization {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.team-experience {
    margin: 15px 0;
}

.exp-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
}

.team-term {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
    font-style: italic;
}

.team-responsibilities {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.6;
}

.view-profile-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.view-profile-btn:hover {
    background: linear-gradient(135deg, #e65100, #ff6b00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    color: white;
}

/* Staff Card Specific Styles */
.staff-card .team-thumb {
    height: 250px;
}

.staff-card .team-title {
    font-size: 20px;
}

/* Management Card Specific Styles */
.management-card .team-thumb {
    height: 250px;
}

.management-card .team-title {
    font-size: 20px;
}

/* Section Styles */
.section-subtitle {
    color: #666;
    font-size: 18px;
    margin-top: 10px;
}

.rts-btn.btn-primary {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.rts-btn.btn-primary:hover {
    background: linear-gradient(135deg, #e65100, #ff6b00);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .team-card {
        margin-bottom: 30px;
    }
    
    .team-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        width: 50%;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .team-title {
        font-size: 20px;
    }
    
    .team-role {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .team-stats {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .jersey-number {
        font-size: 36px;
    }
}

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

.team-card-wrapper {
    animation: fadeInUp 0.6s ease forwards;
}

.team-card-wrapper:nth-child(1) { animation-delay: 0.1s; }
.team-card-wrapper:nth-child(2) { animation-delay: 0.2s; }
.team-card-wrapper:nth-child(3) { animation-delay: 0.3s; }
.team-card-wrapper:nth-child(4) { animation-delay: 0.4s; }
.team-card-wrapper:nth-child(5) { animation-delay: 0.5s; }
.team-card-wrapper:nth-child(6) { animation-delay: 0.6s; }

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateX(-5px);
}

/* Container Styles */
.players-container,
.blog-container,
.contact-container,
.gallery-container,
.management-container,
.staff-container {
    padding: 60px 0;
}

/* Blog Card Styles */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff6b00;
}

.blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-meta i {
    color: #ff6b00;
    margin-right: 5px;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.read-more {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #e65100;
}

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #ff6b00;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-category {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #ff6b00;
    background: white;
    color: #ff6b00;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Contact Card Styles */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #ff6b00;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e65100, #ff6b00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    transform: translateY(-3px) scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    transform: rotate(90deg);
    color: #ff6b00;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    width: 90%;
}

/* Blog Detail */
.blog-detail {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.blog-detail:hover {
    border-color: #ff6b00;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-detail-content {
    line-height: 1.8;
    color: #333;
}

/* Map Container */
.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 400px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: #ff6b00;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive Improvements */
@media (max-width: 991px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .back-btn {
        top: 15px;
        left: 15px;
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .players-container,
    .blog-container,
    .contact-container,
    .gallery-container,
    .management-container,
    .staff-container {
        padding: 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .blog-detail {
        padding: 30px;
    }
    
    .blog-detail-image {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 30px 0;
        min-height: 150px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .back-btn {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .players-container,
    .blog-container,
    .contact-container,
    .gallery-container,
    .management-container,
    .staff-container {
        padding: 30px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-title {
        font-size: 14px;
    }
    
    .gallery-category {
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .blog-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .blog-detail {
        padding: 20px;
    }
    
    .blog-detail-image {
        height: 250px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .lightbox-caption {
        bottom: 20px;
        width: 95%;
    }
    
    .close-lightbox {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-header p {
        font-size: 13px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .btn-submit {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Improved Loading Animation */
#rts__preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#rts__preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

#rts__preloader .loader img {
    max-width: 150px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

/* Improved Hover Effects */
.team-card,
.blog-card,
.contact-card,
.gallery-item,
.blog-detail,
.map-container {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #ff6b00;
    outline-offset: 2px;
}

/* Improved Button Transitions */
.rts-btn,
.view-profile-btn,
.btn-submit,
.filter-btn,
.read-more {
    position: relative;
    overflow: hidden;
}

.rts-btn::before,
.view-profile-btn::before,
.btn-submit::before,
.filter-btn::before,
.read-more::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;
}

.rts-btn:hover::before,
.view-profile-btn:hover::before,
.btn-submit:hover::before,
.filter-btn:hover::before,
.read-more:hover::before {
    left: 100%;
}

/* Card Shine Effect */
.team-card::after,
.blog-card::after,
.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.team-card:hover::after,
.blog-card:hover::after,
.contact-card:hover::after {
    left: 150%;
}

/* Selection Color */
::selection {
    background: #ff6b00;
    color: white;
}

::-moz-selection {
    background: #ff6b00;
    color: white;
}

/* Breadcrumb Navigation */
.breadcrumb-wrapper {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-item:hover {
    color: white;
    transform: translateY(-2px);
}

.breadcrumb-item.active {
    color: #ff6b00;
    font-weight: 600;
}

.breadcrumb-item::after {
    content: '›';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

/* Improved Page Header */
.page-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #1a237e 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

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

.page-header h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
    animation: titleFloat 4s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 1px;
}

.page-header .back-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-header .back-btn:hover {
    background: rgba(255, 107, 0, 0.8);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

.page-header .back-btn i {
    transition: transform 0.3s ease;
}

.page-header .back-btn:hover i {
    transform: translateX(-3px);
}

/* Header Improvements */
.rts-header1 {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.rts-header1.sticky {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.top-bar {
    background: linear-gradient(135deg, #1a237e, #283593);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.get-ticket-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
}

.get-ticket-btn:hover {
    background: linear-gradient(135deg, #e65100, #ff6b00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.login-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.login-btn:hover {
    background: rgba(255, 107, 0, 0.8);
    color: white;
    transform: translateY(-2px);
}

.live-match {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.live-match span {
    color: #ff6b00;
    font-weight: 700;
    margin: 0 8px;
}

.tag {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

.navbar-inner {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav__menu .menu-item {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav__menu .menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    transition: width 0.3s ease;
}

.nav__menu .menu-item:hover::after,
.nav__menu .menu-item.active::after {
    width: 100%;
}

.nav__menu .menu-item:hover,
.nav__menu .menu-item.active {
    color: #ff6b00;
}

.search-icon {
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
}

.search-icon:hover {
    color: #ff6b00;
    transform: scale(1.1);
}

.hamburger-menu-inner span {
    background: #333;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-menu-inner span {
    background: #ff6b00;
}

/* Mobile Responsive Breadcrumb & Header */
@media (max-width: 991px) {
    .breadcrumb-wrapper {
        padding: 30px 0;
    }
    
    .breadcrumb {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .page-header {
        padding: 60px 0;
        min-height: 200px;
    }
    
    .page-header h1 {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .page-header .back-btn {
        top: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-wrapper {
        padding: 25px 0;
    }
    
    .breadcrumb {
        padding: 10px 15px;
        font-size: 12px;
        border-radius: 25px;
    }
    
    .breadcrumb-item {
        font-size: 12px;
    }
    
    .page-header {
        padding: 50px 0;
        min-height: 180px;
    }
    
    .page-header h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .page-header .back-btn {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
        display: inline-flex;
    }
    
    .top-bar-mid {
        display: none;
    }
}

@media (max-width: 575px) {
    .page-header h1 {
        font-size: 26px;
        letter-spacing: 0.5px;
    }
    
    .page-header p {
        font-size: 13px;
    }
    
    .breadcrumb {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* Hero Section Text Styling */
.banner-content .pretitle {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(255, 107, 0, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 107, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.8));
    }
}

.banner-content .banner-heading {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25),
        0 10px 10px rgba(0,0,0,.2),
        0 20px 20px rgba(0,0,0,.15);
    animation: float 3s ease-in-out infinite;
}

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

.banner-content .banner-heading::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b00, #ff8c00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    text-shadow: none;
}

.banner-btn {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 45px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(255, 107, 0, 0.4),
        0 5px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

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

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

.banner-btn:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(255, 107, 0, 0.5),
        0 10px 25px rgba(255, 107, 0, 0.4);
}

/* Mobile Responsive Hero Text */
@media (max-width: 991px) {
    .banner-content .pretitle {
        font-size: 16px;
        letter-spacing: 3px;
    }
    
    .banner-content .banner-heading {
        font-size: 56px;
        letter-spacing: 1px;
    }
}

@media (max-width: 767px) {
    .banner-content .pretitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .banner-content .banner-heading {
        font-size: 36px;
        letter-spacing: 1px;
        text-shadow: 
            0 1px 0 #ccc,
            0 2px 0 #c9c9c9,
            0 3px 0 #bbb,
            0 4px 1px rgba(0,0,0,.1),
            0 0 5px rgba(0,0,0,.1),
            0 1px 3px rgba(0,0,0,.3),
            0 3px 5px rgba(0,0,0,.2),
            0 5px 10px rgba(0,0,0,.25);
    }
    
    .banner-btn {
        font-size: 14px;
        padding: 14px 35px;
    }
}

@media (max-width: 575px) {
    .banner-content .pretitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .banner-content .banner-heading {
        font-size: 28px;
        letter-spacing: 0.5px;
    }
    
    .banner-btn {
        font-size: 13px;
        padding: 12px 30px;
    }
}
