body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa; /* Light background */
    padding-top: 70px; /* adjust based on navbar height */
}


.section-title {
    color: #004d40; /* Dark green for titles */
    font-weight: bold;
    margin-bottom: 2rem;
}
/* Make navbar fixed */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030; /* keep above other elements */
    background:  #2e3092 !important; /* force override */
    /* background: linear-gradient(to right, #ef1c24, #2e3092, #00aeef); */
     /* Indian flag colors */
    padding: 10px 0;
    /* transition: background 0.3s ease-in-out; */
}

/* Logo */
.navbar-brand img {
    height: 40px;
}

/* Navbar links */
.navbar-nav .nav-link {
    color: #fff; /* black text for visibility on tri-color */
    font-weight: 600;
    margin-left: 15px;
    transition: color 0.3s;
}

/* Active & hover states */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #fff; /* black text for visibility on tri-color */        
  border: 2px solid white;
  border-radius: 5px;
}


/* Hero Section */
.hero-section {
    background: url('../images/login-background.jpg') no-repeat center center; /* Replace with your hero image */
    background-size: cover;
    height: 450px; /* Adjust as needed */
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.hero-section h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
}

.hero-section .btn-success {
    background-color:  #00aeef; /* Bootstrap green */
    border-color:  #00aeef;
}

.hero-section .btn-outline-light {
    color: #2e3092;
    border-color: #2e3092;
}

/* About NCC Section */
.about-ncc-section {
    background-color: #fff;
}

.about-ncc-section img {
    max-height: 250px;
    object-fit: cover;
}

/* Activities Section */
.activities-section .card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.activities-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

.activities-section .card-title {
    color: #fff;
    font-weight: bold;
    margin-top: 1rem;
}

/* News & Events Section */
.news-events-section .news-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.news-events-section .card-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-events-section .card-title {
    color: #000;
    font-weight: 600;
}

/* Footer Section */
.footer-section {
    background-color: #212529; /* Dark footer background */
    color: #adb5bd;
}

.footer-section h5 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-section ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.login-container {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
        margin-top: 10%;
    }

    .captcha-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 10px;
    }

    .captcha-number {
        font-size: 1.5rem;
        font-weight: bold;
        color: #333;
        user-select: none;
        padding: 0.2rem 0.5rem;
        background: #f0f0f0;
        border-radius: 5px;
    }

