/* Reset
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6fa;
    color: #333;
    line-height: 1.6;
  }
  a {
    text-decoration: none;
    color: #007BFF;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  /* .site-header {
    background: #f2f2f2;
    padding: 12px 0;
    border-bottom: 1px solid #ccc;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .logo-text {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
  }
  
  .logo-text small {
    font-size: 14px;
    color: #444;
  }
  
  .main-nav .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .main-nav .nav-links li {
    position: relative;
  }
  
  .main-nav .nav-links li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding-bottom: 5px;
    transition: border-bottom 0.3s;
  }
  
  .main-nav .nav-links li a:hover,
  .main-nav .nav-links li a.active {
    border-bottom: 2px solid #0078d4;
  }
   */
  /* Dropdown */
  /* .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    list-style: none;
    z-index: 1000;
    padding: 0;
    margin: 0;
    min-width: 160px;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
  }
  
  .dropdown-menu li a:hover {
    background-color: #f5f5f5;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  } */
  /* Hero Section */
  /* .hero-carousel {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  
  .slides {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  
  .slide {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 2;
  }
  
  .hero-overlay {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  } */
  
  /* Dots */
  /* .carousel-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 4;
  }
  
  .carousel-dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
    cursor: pointer;
  }
  
  .carousel-dots .dot.active {
    background-color: orange;
    opacity: 1;
  }
  
  
  .slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  } */
  
  /* Counters */
  /* .icsr-numbers {
    padding: 50px 20px;
    text-align: center;
    background-color: #f2f2f2;
    color: #fff;
  }
  
  .icsr-numbers h2 {
    color: #323232;
    margin-bottom: 40px;
    font-size: 2rem;
  }
  
  .stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .stat-front h3 {
    font-size: 24px;
  }
  .stat-card {
    position: relative;
    width: 250px;
    height: 220px;
    background: #fff;
    color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
  } */
  
  /* Front content */
  /* .stat-front {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
  }
   */
  /* Hidden content on hover */
  /* .stat-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: orange;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 2;
  }
  
  .stat-card:hover .stat-hover {
    opacity: 1;
  }
   */
  /* Announcements */
  /* .announcements {
    padding: 40px 0;
  }
  .announcements h2 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .announcement-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .announcement-card {
    background: #fff;
    border-left: 4px solid #007BFF;
    padding: 15px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: background 0.3s;
  }
  .announcement-card:hover {
    background: #f2f8ff;
  }
   */
  /* News Section */
  /* .news {
    padding: 40px 0;
  }
  .news h2 {
    margin-bottom: 20px;
    color: #003366;
  }
  .news ul {
    list-style: disc inside;
    line-height: 1.8;
  } */
  
  /* Subscribe Section */
  /* .subscribe {
    background: #eef3fb;
    padding: 40px 20px;
    text-align: center;
  }
  .subscribe h2 {
    margin-bottom: 20px;
    color: #003366;
  }
  .subscribe form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .subscribe input[type="email"] {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .subscribe button {
    padding: 10px 20px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .subscribe button:hover {
    background: #0056b3;
  } */
  
  /* Footer */
  /* .site-footer {
    background: #002147;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.95rem;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  } */
  
  /* Page Header */
  /* .page-header {
    background: #003366;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  .page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  .page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  Projects Section */
  /* .project-category {
    margin-bottom: 40px;
  }
  .project-category h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #003366;
  }
  .projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .project-card {
    background: #fff;
    padding: 20px;
    border-left: 4px solid #007BFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
  }
  .project-card:hover {
    transform: translateY(-5px);
  }
  .project-card h3 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 8px;
  }
  .project-card p {
    font-size: 0.95rem;
    color: #444;
  } */



  /* logIn */
  
/* .login-background {
  background: url('assets/images/C1jpeg') no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
}

.login-container h1 {
  margin-bottom: 10px;
  font-size: 28px;
  color: #333;
}

.login-container p {
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.login-container label {
  display: block;
  margin-bottom: 5px;
  text-align: left;
  font-weight: 600;
  color: #444;
}

.login-container input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.login-container button {
  width: 100%;
  padding: 12px;
  background: #007BFF;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.login-container button:hover {
  background: #0056b3;
}  */