/* Enhanced VLE Union Website Styles - Modern Design */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Root Variables for Dynamic Theme */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --info-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8faff;
    --dark-bg: #1a1d29;
    
    --shadow-light: 0 4px 20px rgba(102, 126, 234, 0.1);
    --shadow-medium: 0 8px 30px rgba(102, 126, 234, 0.15);
    --shadow-heavy: 0 15px 40px rgba(102, 126, 234, 0.2);
    
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--light-bg);
    font-weight: 400;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Enhanced Modern Header Section */
.header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: var(--white);
    padding: 30px 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(255,255,255,0.2);
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

.logo img {
    max-height: 95px;
    width: auto;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.3));
    transition: var(--transition);
    border-radius: 15px;
    border: 3px solid rgba(255,255,255,0.3);
    padding: 5px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.logo img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
    border-color: rgba(255,255,255,0.6);
}

.header-title {
    position: relative;
    z-index: 2;
    text-align: center;
}

.union-name {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, #ffffff, #fff3cd, #ffeaa7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255,255,255,0.5); }
    to { text-shadow: 0 0 30px rgba(255,255,255,0.8); }
}

.registration-no {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 600;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.registration-no:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.header-actions .btn {
    margin: 0 6px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.header-actions .btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.header-actions .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: var(--transition);
}

.header-actions .btn:hover::before {
    left: 100%;
}

.header-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Enhanced Navigation */
.navbar {
    box-shadow: var(--shadow-light);
    background: var(--white) !important;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 12px 20px;
    color: var(--text-dark) !important;
    border-radius: var(--border-radius);
    margin: 0 5px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Notice Ticker */
.notice-ticker {
    background: #ffc107;
    color: #212529;
    padding: 10px 0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
}

.ticker-label {
    font-weight: 600;
    margin-right: 15px;
    white-space: nowrap;
}

.ticker-content {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-item {
    display: inline-block;
    padding-right: 50px;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main Banner Slider - After Notice */
.main-banner-slider {
    position: relative;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.banner-carousel {
    height: 550px;
    overflow: hidden;
    border-radius: 0;
}

.banner-carousel .carousel-item {
    height: 550px;
    position: relative;
}

.banner-carousel .carousel-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.banner-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.3) 0%, 
        rgba(118, 75, 162, 0.2) 50%,
        rgba(240, 147, 251, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.banner-carousel .carousel-control-prev,
.banner-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.banner-carousel .carousel-control-prev {
    left: 20px;
}

.banner-carousel .carousel-control-next {
    right: 20px;
}

.banner-carousel .carousel-control-prev:hover,
.banner-carousel .carousel-control-next:hover {
    background: rgba(118, 75, 162, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.banner-carousel .carousel-indicators {
    bottom: 20px;
}

.banner-carousel .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    background: rgba(255,255,255,0.6);
    border: 2px solid white;
}

.banner-carousel .carousel-indicators button.active {
    background: white;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .banner-carousel {
        height: 350px;
    }
    
    .banner-carousel .carousel-item {
        height: 350px;
    }
    
    .banner-carousel .carousel-item img {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* Modern Hero Slider Section */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-height {
    height: 70vh;
    min-height: 500px;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.carousel-item.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.4) 0%, 
        rgba(118, 75, 162, 0.4) 50%,
        rgba(240, 147, 251, 0.4) 100%);
    background-blend-mode: overlay;
}

.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

/* Hero Content Styles */
.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

/* Modern Stat Card */
.modern-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    transform: translateY(0);
}

.modern-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.modern-stat-card:hover::before {
    animation: shimmer 1s ease-out;
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.modern-stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 15px 0;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease-out;
    letter-spacing: 1px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 35px;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
    animation: slideInUp 1s ease-out 0.3s both;
    font-weight: 400;
}

/* Modern Button Styles */
.btn-modern-primary {
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-modern-success {
    background: var(--success-gradient);
    border: none;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.btn-modern-info {
    background: var(--info-gradient);
    border: none;
    color: var(--text-dark);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(168, 237, 234, 0.3);
}

.btn-modern-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    padding: 13px 33px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.btn-modern-primary::before,
.btn-modern-success::before,
.btn-modern-info::before,
.btn-modern-outline::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: var(--transition);
}

.btn-modern-primary:hover::before,
.btn-modern-success:hover::before,
.btn-modern-info:hover::before,
.btn-modern-outline:hover::before {
    left: 100%;
}

.btn-modern-primary:hover,
.btn-modern-success:hover,
.btn-modern-info:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    color: var(--white);
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    color: var(--white);
}

.hero-stats {
    text-align: center;
    animation: slideInUp 1s ease-out 0.9s both;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
}

.stat-card:hover::before {
    animation: rotate 1s linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content h3 {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.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);
    border-color: #007bff;
    box-shadow: 0 20px 40px rgba(0,123,255,0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    height: 280px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.default-avatar {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px 15px 0 0;
}

.team-info {
    padding: 25px 20px;
    text-align: center;
    background: white;
    border-radius: 0 0 15px 15px;
}

.team-info h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-position {
    color: #28a745;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 1rem;
}

.team-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0 10px;
}

.team-social {
    margin-top: 15px;
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #333;
    border-radius: 50%;
    margin: 0 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.team-social a:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.team-social a.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #166fe5);
}

.team-social a.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.team-social a.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.team-social a.email:hover {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.team-social a.phone:hover {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    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));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.video-wrapper {
    position: relative;
}

.video-info {
    padding: 20px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-item {
    text-align: center;
    padding: 30px;
}

.contact-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-item h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Footer */
.footer-section {
    background: #007bff;
    color: white;
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.btn {
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
    border-bottom: none;
    font-weight: 600;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: 500;
}

.alert i {
    margin-right: 10px;
}

/* Badge Styles */
.badge {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 15px;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .union-name {
        font-size: 1.4rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .about-section,
    .team-section,
    .gallery-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .team-image {
        height: 250px;
    }
    
    .team-image img {
        height: 100%;
    }
    
    .default-avatar {
        height: 250px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .team-image {
        height: 200px;
    }
    
    .default-avatar {
        height: 200px;
    }
    
    .team-info {
        padding: 20px 15px;
    }
    
    .team-info h4 {
        font-size: 1.1rem;
    }
    
    .team-position {
        font-size: 0.9rem;
    }
    
    .team-description {
        font-size: 0.8rem;
    }
    
    .team-social a {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 0.8rem;
        margin: 0 3px;
    }

    .hero-title {
        font-size: 1.8rem;
    }
    
    .union-name {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px 0;
    }
    
    .stats-card,
    .team-card,
    .gallery-item {
        margin-bottom: 20px;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-only {
        display: block !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .card {
        border: 2px solid #000 !important;
        box-shadow: none !important;
    }
}

/* Loading Spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.border-radius-lg {
    border-radius: 15px !important;
}

.border-radius-xl {
    border-radius: 20px !important;
}

.shadow-lg-custom {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.shadow-xl-custom {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

/* Additional CSS for JavaScript Effects */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    opacity: 0;
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
}

/* Loading animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced form focus effects */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.form-control:valid {
    border-color: #28a745;
}

.form-control:invalid {
    border-color: #dc3545;
}

/* Text selection enhancement */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Focus visible for accessibility */
.btn:focus-visible,
.nav-link:focus-visible,
.form-control:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .union-name {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        margin: 5px;
    }
    
    .team-card,
    .gallery-item,
    .contact-item {
        margin-bottom: 30px;
    }
    
    .stat-card h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

/* Modern Carousel Controls */
.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
    z-index: 15;
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin: 0 8px;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.carousel-indicators button:hover {
    border-color: var(--white);
    transform: scale(1.1);
}

/* Modern Carousel Navigation */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: none;
}

/* Mobile Responsive for Slider */
@media (max-width: 768px) {
    .hero-slide {
        height: 60vh;
        min-height: 400px;
    }
    
    .slider-height {
        height: 60vh;
        min-height: 400px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .scroll-down-arrow {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .modern-stat-card {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ========== NEW MODERN DESIGN STYLES ========== */

/* Modern Hero Section */
.modern-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 50px;
    color: var(--white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-particle 6s linear infinite;
}

.float-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.float-element:nth-child(3) {
    top: 80%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content-new {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title-new {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--success-gradient);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.btn-secondary-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-primary-new:hover,
.btn-secondary-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    color: var(--white);
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-stats-new {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffd700;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.hero-card:hover .card-glow {
    opacity: 0.3;
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.union-logo {
    width: 80px;
    height: 80px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 20px auto;
}

.circle-fill {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#4facfe 0deg 340deg, rgba(255,255,255,0.2) 340deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

/* New About Section Styles */
.about-section-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.section-header {
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.section-title-new {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.content-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.content-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--success-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Custom Image Slider in About Section */
.about-slider-container {
    background: var(--white);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.slider-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.custom-image-slider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.slider-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 25px 25px;
    color: var(--white);
}

.slider-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.slider-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.custom-indicators {
    bottom: 15px;
}

.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    margin: 0 5px;
}

.custom-indicators button.active {
    background: var(--white);
    border-color: var(--white);
}

.custom-control {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    border: none;
    color: var(--text-dark);
    font-size: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
}

.custom-control:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: var(--white);
}

.custom-control.carousel-control-prev {
    left: 15px;
}

.custom-control.carousel-control-next {
    right: 15px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.stat-card-new {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    transition: var(--transition);
}

.stat-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stat-icon-new {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.stat-info h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.mission-vision-section {
    margin-top: 80px;
}

.mission-card, .vision-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 100%;
    transition: var(--transition);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.mission-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vision-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mission-card .card-header i {
    width: 60px;
    height: 60px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.vision-card .card-header i {
    width: 60px;
    height: 60px;
    background: var(--warning-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.card-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
}

.modern-footer p,
.modern-footer .social-links a {
    position: relative;
    z-index: 2;
}

.modern-footer .social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.modern-footer .social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* ========== MOBILE RESPONSIVE STYLES FOR NEW DESIGN ========== */

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .header-section {
        padding: 20px 0;
    }
    
    .union-name {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .registration-no {
        font-size: 0.85rem;
        padding: 6px 15px;
        margin-top: 8px;
    }
    
    .logo img {
        max-height: 70px;
    }
    
    .header-actions .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
        margin: 2px;
    }
}

/* Mobile Responsive for New Hero Section */
@media (max-width: 768px) {
    .modern-hero-section {
        padding: 40px 0 30px;
    }
    
    .min-vh-80 {
        min-height: 70vh;
    }
    
    .hero-title-new {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle-new {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary-new, .btn-secondary-new {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 18px 30px;
    }
    
    .hero-stats-new {
        justify-content: space-between;
        gap: 15px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    .hero-card {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .union-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .progress-circle {
        width: 60px;
        height: 60px;
    }
}

/* Mobile Responsive for New About Section */
@media (max-width: 768px) {
    .about-section-new {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title-new {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .content-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .about-slider-container {
        padding: 25px;
        margin-top: 30px;
    }
    
    .slider-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .slider-image-container {
        height: 250px;
    }
    
    .slider-overlay {
        padding: 20px 20px 20px;
    }
    
    .slider-content h5 {
        font-size: 1.1rem;
    }
    
    .slider-content p {
        font-size: 0.9rem;
    }
    
    .custom-control {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .custom-control.carousel-control-prev {
        left: 10px;
    }
    
    .custom-control.carousel-control-next {
        right: 10px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-card-new {
        padding: 18px;
    }
    
    .stat-icon-new {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .stat-info h4 {
        font-size: 1.5rem;
    }
    
    .stat-info p {
        font-size: 0.85rem;
    }
    
    .mission-vision-section {
        margin-top: 60px;
    }
    
    .mission-card, .vision-card {
        padding: 30px;
        margin-bottom: 20px;
    }
    
    .mission-card .card-header i,
    .vision-card .card-header i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .card-header h4 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
}

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .hero-title-new {
        font-size: 1.8rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary-new, .btn-secondary-new {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
    
    .hero-stats-new {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stat-item {
        text-align: center;
        width: 100%;
    }
    
    .hero-card {
        padding: 25px 15px;
    }
    
    .section-title-new {
        font-size: 1.9rem;
    }
    
    .content-card {
        padding: 25px 20px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .about-slider-container {
        padding: 20px;
    }
    
    .slider-image-container {
        height: 200px;
    }
    
    .custom-control {
        display: none; /* Hide arrows on very small screens */
    }
    
    .about-stats {
        gap: 10px;
    }
    
    .stat-card-new {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .mission-card, .vision-card {
        padding: 25px;
    }
    
    .mission-card .card-header,
    .vision-card .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}