* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
a {
    color: #ee5a24;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #ff6b6b;
}
h2,h3,h4 {
    font-size: inherit;
}
/* Top Notification Bar */
.top-notification {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    position: relative;
    /* overflow: hidden; */
}

.top-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
 
.top-notification .dropdown .dropdown-menu {
    padding: 0;
}
.top-notification .dropdown .dropdown-menu > li {
    display: block;
    margin:0px;
}
.top-notification .dropdown .dropdown-menu a {
    color: #333;
    padding: 8px 15px;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
}
/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    /* backdrop-filter: blur(10px); */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    /* position: sticky; */
    top: 0;
    z-index: 3;
    transition: all 0.3s ease;
    position: relative;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    cursor:pointer;
    transition: transform 0.3s ease;
    /* background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transform: rotate(-5deg);*/
}

.logo-icon:hover {
    transform: rotate(0deg) scale(1.05);
}

.logo-text {
    flex: 1;
}

.logo-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 12px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    color: #333;
}

.search-box input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}

.accessibility-tools {
    display: flex;
    gap: 10px;
}

.accessibility-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.accessibility-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Navigation */
.navigation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px 15px 0 0;
    /* margin: 0 -20px;
    position: relative;
    overflow: hidden; */
}

/* .navigation::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
} */

.nav-menu {
    display: flex;
    list-style: none;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}

/* .nav-menu li {
    flex: 1;
} */

.nav-menu a {
    display: block;
    padding: 18px 18px;
    color: white;
    text-decoration: none;
    text-align: center;
    /* font-weight: 500; */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.3s ease;
}

.nav-menu a:hover::before {
    left: 0;
}

.nav-menu a:hover {
    transform: translateY(0px);
}
.nav-menu .dropdown-menu {
    padding: 0;
}
.nav-menu .dropdown-menu a {
    color: #333;
    padding: 10px 20px;
    font-weight: normal;
    border-bottom:1px solid #ccc;
}
.nav-menu .dropdown-menu li:last-child a {
    border-bottom: none;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)), url('https://images.pexels.com/photos/163444/sport-treadmill-tor-route-163444.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.3), transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.3), transparent 50%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 0px;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #6b9aff, #247bee);
    color: white;
    box-shadow: 0 8px 25px rgba(90, 114, 234, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(97, 94, 236, 0.6);
}

.hero-btn.danger {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.hero-btn.danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.hero-btn.warning {
    background: linear-gradient(135deg, #ffc107, #fda900);
    color: white;
    box-shadow: 0 8px 25px rgba(240, 224, 6, 0.578);
}

.hero-btn.warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 251, 1, 0.6);
}

.hero-btn.secondary {
    background: rgb(120 119 119 / 75%);
    color: #1f1e1e;
}

.hero-btn.secondary:hover {
    /* background: rgba(255, 255, 255, 0.3); */
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgb(120 119 119 / 75%);
}
.hero-btn.dark {
    background: rgba(49, 48, 48, 1);
    color: white;
    border: 2px solid rgba(0, 0, 0, 0.443);
    backdrop-filter: blur(10px);
}

.hero-btn.dark:hover {
    background: rgb(71, 70, 70);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 52, 52, 0.6);
}
.hero-btn.success {
    background: rgb(47, 230, 18);
    color: white;
    /* border: 2px solid rgb(36, 181, 14); */
}

.hero-btn.success:hover {
    background: rgb(47, 230, 18);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(47, 230, 18, 0.6);
}
.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Floating Elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* News Ticker */
.news-ticker {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.news-ticker::before {
    content: '🔥 LATEST NEWS';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.news-content {
    margin-left: 150px;
    white-space: nowrap;
    animation: scroll-news 25s linear infinite;
}

@keyframes scroll-news {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main Content */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
}

.content-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-card {
    background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.highlight-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.highlight-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}
.text-justify {
    text-align: justify;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.official-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.official-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.official-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    overflow: hidden;
}

.official-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.official-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateX(5px);
}

/* Achievements Section */
.achievements {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.achievements::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.achievements-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.achievements-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.achievement-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.achievement-label {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
}

/* Notice Boards */
.notice-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.notice-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.notice-board {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.notice-board:hover {
    transform: translateY(-10px);
}

.notice-header {
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.notice-header.sports-complex {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.notice-header.notice-board {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.notice-header.academies {
    background: linear-gradient(135deg, #10ac84, #00d2d3);
}

.notice-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    transform: rotate(45deg);
}

.notice-header h3 {
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.notice-content {
    padding: 30px;
}

.notice-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.notice-item:hover {
    background: #f8f9fa;
    margin: 0 -30px;
    padding: 20px 30px;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 600;
    width: 100px;
    margin-right: 10px;
}
.notice-image {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    width: 100px;
    margin-right: 10px;
}
.notice-board-1 .notice-date img {
    width:100px;
} 

.notice-text {
    color: #555;
    line-height: 1.6;
}
.notice-text > a {
    color: #555;
}

.view-all-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-weight: 600;
}

.view-all-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1), transparent 50%);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.contact-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.contact-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content .contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-content .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer-content .contact-info .contact-item i {
    color: #1E40AF;
    margin-top: 4px;
    flex-shrink: 0;
}
.footer-content .contact-info .contact-item p {
    color: #D1D5DB;
    margin: 0;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.footer-brand-text h3 {
    font-size: 25px;
    margin-bottom: 5px;
}

.footer-brand-text p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

.visitor-counter {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    color:#fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-box {
        min-width: 250px;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        position: static;
        transform: none;
        margin-top: 40px;
    }
    
    .achievements-grid,
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.top-social{
    list-style-type: none;
}
.top-social li {
    display: inline-block;
    margin-left: 15px;
}
.top-social li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}
span#captchaImage {
    display: inline-block;
    width: 150px;
    height:100%;
}
img#CaptchaImage {
    border: 1px solid #000 !important;
    width:100%;
    height:100%;
    border-radius: 12px;
}

.carousel-item .carousel-image {
    height: 75vh;
}

.carousel-control-next, 
.carousel-control-prev {
    filter: none;
}
.carousel-control-next-icon, 
.carousel-control-prev-icon {
    height: 3rem;
    width: 3rem;
    background-size: 25px 25px;
    border-radius: 30px;
}
.carousel-control-next-icon {
    background-color:#764ba2;
}
.carousel-control-prev-icon {
    background-color:#667eea;
}
.carousel-caption > p {
    margin: 0;
    font-size: 20px;
}
.carousel-caption {
    color: #fff !important;
    bottom: 3.25rem;
    background: linear-gradient(135deg, rgb(244 244 244 / 30%) 0%, rgb(9 0 19 / 50%) 50%);
}

 .card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    margin: auto;
}
.card-header > * {
  margin: 0;
}

.card h2 {
    color: #4f46e5;
    font-size: 24px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-control, 
.form-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 15px;
    transition: border 0.2s ease-in-out;
}

input.form-control:focus, 
select.form-control:focus,
textarea.form-control:focus,
select.form-select:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}

.btn {
    background: linear-gradient(to right, #f97316, #ec4899);
    border: 1px solid #000;
    color: white;
    /* padding: 12px 24px;
    margin-top: 20px; */
    /* font-size: 16px;
    font-weight: 600; */
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: linear-gradient(to right, #ec4899, #f97316);
}

.table-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    /* max-width: 800px; */
    /* margin: 50px auto; */
    /* padding: 30px; */
}
.table-card-bordered th, 
.table-card-bordered td{
    border: 1px solid #eee;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 12px 15px;
    font-size: 15px;
}

thead {
    background-color: #eef2ff;
    color: #4f46e5;
}

tr:nth-child(even) {
    background-color: #f9fafb;
}

.status {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
}

.status.confirmed {
    color: #16a34a;
    background: #dcfce7;
}

.status.pending {
    color: #d97706;
    background: #fef3c7;
}

@media (max-width: 600px) {
    .card, .table-card {
        padding: 20px;
    }

    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead {
        display: none;
    }

    td {
        padding: 10px;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }

    td::before {
        position: absolute;
        top: 10px;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        text-align: left;
    }

    td:nth-of-type(1)::before { content: "Name"; }
    td:nth-of-type(2)::before { content: "Email"; }
    td:nth-of-type(3)::before { content: "Program"; }
    td:nth-of-type(4)::before { content: "Status"; }
}

/* Card Design */
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #eee;
}

/* Header of the Card */
.card-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
}

/* Body of the Card */
.card-body {
    overflow-x: auto;
    padding: 30px;
}
.card-body table {
    border: 1px solid #ccc;
    border-radius:10px;
}
.card-body table td,
.card-body table th {
    border: 1px solid #ccc;
}
/* Table Styling */
.table-theme {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

/* Header Row */
.table-theme thead {
    background-color: #f5f5ff;
}

.table-theme thead th {
    padding: 12px 15px;
    font-weight: 600;
    color: #444;
    text-align: left;
    border-bottom: 2px solid #e0e0f0;
}

/* Body Rows */
.table-theme tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.table-theme tbody tr:hover {
    background: #f4f4ff;
}

.table-theme td {
    padding: 10px 15px;
}

/* Optional: Button inside Options */
.table-theme .btn {
    background: #764ba2;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.table-theme .btn:hover {
    background: #5a3a86;
}
.carousel-dark .carousel-control-next-icon, 
.carousel-dark .carousel-control-prev-icon {
    filter: none;
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    opacity: 1;
}

.input-group-text {
    border-left: none;
    border-radius: 0px 12px 12px 0px !important;
    padding: 10px 15px;
    border: 1px solid #ccc;
}
div.dt-container div.dt-length select {
    width:70%;
}
.imgdiv .fancybox img {
    height: 160px;
}
.nav-menu .nav-item > a.active {
    background: rgba(255,255,255,0.1);
}
.fancybox-inner {
  height: 400px !important;
  max-height: 100% !important;
  overflow: hidden;
}
.fancybox img {
    height:400px;
    width: 100%;
}
.fancybox-nav {
    height:95%;
}
.fancybox-next {
    right: 20px;
}
.update-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #E5E7EB;
}
.update-item img {
    width: 80px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.update-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}
.update-content p {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 4px;
}
.update-date {
    font-size: 0.75rem;
    color: #9CA3AF;
}
.update-item {
    display: flex;
    gap: 16px;
    padding: 16px 0px;
    border-bottom: 1px solid rgb(229, 231, 235);
}
.text-primary {
    color: #1E40AF !important;
}
.img-hover-zoom {
  transition: transform 0.3s ease;
}
.img-hover-zoom:hover {
  transform: scale(1.05);
  border: 1px solid #ccc;
}