* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --primary-color: #87ceeb;
    /* sky blue */
    --secondary-color: #f5f5dc;
    /* beige */
    --accent-color: #000000;
    /* brown */
    --text-primary: #111111;
    /* black */
    --text-secondary: #000000;
    /* brown */
    --text-dark: #111111;
    /* black */
    --bg-primary: #ffffff;
    /* white */
    --bg-secondary: #f5f5dc;
    /* beige */
    --bg-card: #ffffff;
    /* white */
    --border-color: #87ceeb;
    /* sky blue */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Orbitron', monospace;
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s ease;
    --shadow-light: 0 4px 20px rgba(135, 206, 235, 0.08);
    /* sky blue shadow */
    --shadow-medium: 0 8px 40px rgba(135, 206, 235, 0.12);
    --shadow-heavy: 0 16px 60px rgba(135, 206, 235, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: #ffffff !important;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

body.index .hero-section,
body.index .hero-section * {
    color: #fff !important;
    text-shadow: 0 4px 24px rgba(30, 35, 126, 0.10), 0 1px 0 #fff;
}

.loading-screen {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: 2s ease 0s infinite normal none running pulse;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: 1s linear 0s infinite normal none running spin;
    margin: 0px auto 20px;
}

.loading-screen p {
    color: var(--text-secondary);
    font-size: 14px;
}

.background-container {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #ffffff !important;
}

.stars,
.twinkling,
.clouds {
    background: transparent !important;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1000 1000\"><circle cx=\"100\" cy=\"100\" r=\"1\" fill=\"white\" opacity=\"0.8\"/><circle cx=\"300\" cy=\"200\" r=\"1\" fill=\"white\" opacity=\"0.6\"/><circle cx=\"500\" cy=\"150\" r=\"1\" fill=\"white\" opacity=\"0.9\"/><circle cx=\"700\" cy=\"300\" r=\"1\" fill=\"white\" opacity=\"0.7\"/><circle cx=\"900\" cy=\"250\" r=\"1\" fill=\"white\" opacity=\"0.5\"/><circle cx=\"200\" cy=\"400\" r=\"1\" fill=\"white\" opacity=\"0.8\"/><circle cx=\"400\" cy=\"450\" r=\"1\" fill=\"white\" opacity=\"0.6\"/><circle cx=\"600\" cy=\"500\" r=\"1\" fill=\"white\" opacity=\"0.9\"/><circle cx=\"800\" cy=\"550\" r=\"1\" fill=\"white\" opacity=\"0.7\"/><circle cx=\"150\" cy=\"600\" r=\"1\" fill=\"white\" opacity=\"0.5\"/><circle cx=\"350\" cy=\"650\" r=\"1\" fill=\"white\" opacity=\"0.8\"/><circle cx=\"550\" cy=\"700\" r=\"1\" fill=\"white\" opacity=\"0.6\"/><circle cx=\"750\" cy=\"750\" r=\"1\" fill=\"white\" opacity=\"0.9\"/><circle cx=\"950\" cy=\"800\" r=\"1\" fill=\"white\" opacity=\"0.7\"/></svg>") repeat;
    animation: 20s linear 0s infinite normal none running twinkle;
}

.twinkling {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    animation: 15s linear 0s infinite normal none running twinkle;
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0.1;
}

.navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background: rgb(255 255 255);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    background: var(--bg-primary);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 0px;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0px;
    transition: var(--transition-fast);
}

.container {
    max-width: 1080;
    margin: 0px auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: text #060000;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0px auto;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 60vh;
    width: 100vw;
    margin-top: 70px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 60%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s;
    z-index: 0;
    pointer-events: none;
}

.hero-carousel .carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    letter-spacing: 2px;
    color: #1a237e !important;
    text-shadow: 0 4px 24px rgba(30, 35, 126, 0.10), 0 1px 0 #fff;
    margin-bottom: 1rem;
    margin-top: 0;
}

.hero-title .highlight {
    color: #6ec6f7;
    text-shadow: 0 2px 12px rgba(110, 198, 247, 0.18);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.3;
    animation: 6s ease-in-out 0s infinite normal none running float;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-sm,
.hero-buttons a {
    background: #000000;
    color: #000000 !important;
    border-color: #ffffff;
    WIDTH: 200px;
    border: 2px solid #1a237e;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Inter', 'Arial', sans-serif;
    box-shadow: none;
    text-transform: none;
    letter-spacing: 0;
    padding: 10px 28px;
    position: relative;
    transition: none;
    text-decoration: none;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-sm:hover,
.hero-buttons a:hover {
    background: #1a237e;
    color: #87ceeb;
    border: 2px solid #87ceeb;
    box-shadow: none;
    transition: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(2deg, #ffffff, #ffffff);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: #00000000;
    color: #000000;
    border: 2px solid #080808;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
}

.about-section {
    background: #f7fbff;
    margin-top: 90p;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-section {
    background: #fff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.event-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 400%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.event-status {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.event-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-actions {
    display: flex;
    gap: 15px;
}

.gallery-section {
    background: #f7fbff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(transparent, rgb(0 0 0 / 80%));
    /* sky blue overlay */
    color: var(--text-primary);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

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

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.gallery-overlay p {
    font-size: 14px;
    color: white;
    opacity: 0.8;
}

.team-section {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background: rgb(255 255 255 / 40%);
    border-radius: 20px;
    padding: 30px;
    width: 280px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.member-image {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0px auto 20px;
    border: 3px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.member-info p {
    color: var(--primary-color);
    font-weight: 600;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color var(--transition-fast);
}

.member-social a:hover {
    color: var(--primary-color);
}

.contact-section {
    background: #fff;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 81px;
    justify-content: center;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex: 1;
    min-width: 330px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.footer {
    /* background: rgb(30 35 126 / 0%); */
    border-top: 1px solid var(--border-color);
    padding: 60px 0px 20px;
    min-width: 76;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-left: 8px;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0px);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.6s;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0px);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 0.6s;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0px);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: 0.6s;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
  .hero-title,
  .footer-section h4,
 .event-content h3
  {
      color: #000000 !important;
  }

  .gallery-overlay h4 {
      color: white !important;
  }

.section-subtitle,
.stat-label,
.event-meta,
.contact-details p,
.footer-section p {
    color: #1a237e;
    /* Brown */
}

a,
.highlight,
.btn-primary,
.text-accent {
    color: #6ec6f7;
}

/* For links, keep hover/active states readable */
a:hover,
.btn-primary:hover {
    color: #1a237e;
}

.hero-title,
.hero-title .highlight,
.hero-subtitle,
.hero-description,
.hero-buttons a {
    color: #ffffff !important;
    text-shadow: 0 4px 24px rgba(30, 35, 126, 0.35), 0 1px 0 #ffffff;
}

.hero-buttons a {
    border: 2px solid #fff;
    background: rgba(26, 35, 126, 0.7);
    color: #fff !important;
}

.hero-buttons a:hover {
    background: #6ec6f7;
    color: #1a237e !important;
    border-color: #6ec6f7;
}

@media (max-width: 700px) {
    .hero-title {
        font-size: 2.1rem;
        letter-spacing: 1px;
    }

    .hero-container {
        min-height: 40vh;
        padding: 0 1rem;
    }
}