* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #F5F7FA;
  overflow-x: hidden;
}


/* SECTION */
.announcement-section {
  padding: 60px 20px;
  text-align: center;
}

.announcement-section h2 {
  font-size: 2.2rem;
  color: #2b6cb0;
  margin-bottom: 10px;
}

.desc {
  color: #555;
  margin-bottom: 40px;
}

/* LIST */
.announcement-list {
  max-width: 700px;
  margin: auto;
}

/* ITEM as full clickable box */
.announcement-item {
  display: block;   /* full width clickable */
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 15px;

  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);

  text-decoration: none;
  color: #333;
  font-size: 1rem;

  transition: 0.3s;
}

/* Hover effect */
.announcement-item:hover {
  background: #2b6cb0;
  color: #fff;
  transform: translateY(-3px);
}





/* FOOTER MAIN */
.footer {
  background: #2b6cb0;
  color: #fff;
  padding-top: 40px;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;   /* thoda balanced */
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* COLUMN COMMON */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #D0A600;
}

.footer-col p,
.footer-col li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #e0e0e0;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  text-decoration: none;
  color: #e0e0e0;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #FFD15C;
  padding-left: 5px;
}

/* LOGO BOX */
.logo-box h3 {
  font-size: 1.4rem;
  color: #D0A600;   /* Marathi green */
}

.logo-box p {
  font-style: italic;
  margin-top: 10px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #1e4e8c;
  margin-top: 20px;
  font-size: 0.9rem;
}



/* ================= 1024px ================= */
@media (max-width: 1024px) {

     /* ===== Layout (Sidebar + Content) ===== */
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-radius: 0;
    padding: 30px 20px;
  }
/* ===== Navbar ===== */
  .topbar {
    height: auto;
    flex-direction: row;
    padding: 15px;
     position: relative;
  z-index: 1000;

  }
  
  .menu-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #2b6cb0;
    flex-direction: column;
  
    display: none;
    gap: 10px;
    padding: 15px 0;
      z-index: 999; /* IMPORTANT */
  }

  .nav-links.active {
    display: flex;
  }


  .content {
    width: 100%;
  }

  
  .brand-logo img {
    height: 110px;
  }

  .college-title {
    font-size: 22px;
  }

  .college-desc {
    font-size: 15px;
    max-width: 100%;
  }

  /* ===== Hero ===== */
  .hero-section {
    height: 60vh;
    border-bottom-left-radius: 40px;
  }

  .hero-text {
    font-size: 18px;
    top: 35%;
  }

  .announcement-section {
    padding: 50px 20px;
  }

  .announcement-list {
    width: 85%;
    margin: auto;
  }

  .announcement-item {
    font-size: 1.05rem;
    padding: 14px 18px;
  }

  .desc {
    font-size: 1.1rem;
  }
   /* ===== Footer ===== */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}




/* ================= 768px ================= */
@media (max-width: 768px) {

    
  /* ===== Layout ===== */
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    padding: 25px 15px;
    border-radius: 0;
  }


  .content {
    width: 100%;
    
  }

  /* ===== Logo + Text ===== */
  .brand-logo img {
    height: 90px;
  }

  .college-title {
    font-size: 20px;
  }

  .college-desc {
    font-size: 14px;
  }

  /* ===== Navbar ===== */
  .topbar {
    height: auto;
    flex-direction: row;
    padding: 15px;
  }
  
  .menu-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    background: #2b6cb0;
    flex-direction: column;
    text-align: center;
    display: none;
    gap: 15px;
    padding: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }


  /* ===== Hero ===== */
  .hero-section {
    height: 50vh;
    border-bottom-left-radius: 30px;
  }

  .hero-text {
    font-size: 16px;
    top: 30%;
    padding: 10px;
  }
  .announcement-section h2 {
    font-size: 1.8rem;
  }

  .desc {
    font-size: 1rem;
    padding: 0 10px;
  }

  .announcement-list {
    width: 95%;
  }

  .announcement-item {
    font-size: 1rem;
    padding: 12px 15px;
  }
   /* ===== Footer ===== */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  } 
}




/* ================= 480px ================= */
@media (max-width: 480px) {
 /* ===== General Padding ===== */
  body {
    overflow-x: hidden;
  }

  .layout {
    flex-direction: column;
   
     min-height: 80vh;
  }

  .sidebar {
    width: 100%;
    padding: 20px 10px;
    border-radius: 0;
  }
  
  .content {
    width: 100%;
  }

  /* ===== Logo + Text ===== */
  .brand-logo img {
    height: 75px;
  }

  .college-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .college-desc {
    font-size: 13px;
    max-width: 100%;
  }

  /* ===== Navbar ===== */
  .topbar {
    padding: 10px;
  }

  .nav-links {
    top: 0px;
    gap: 10px;
    padding: 10px 0;
  }

  .nav-links a {
    font-size: 14px;
  }

  .menu-btn span {
    width: 22px;
    height: 2px;
  }

  /* ===== Hero ===== */
  .hero-section {
    height: 40vh;
    border-bottom-left-radius: 20px;
  }

  .hero-text {
    font-size: 14px;
    top: 28%;
    padding: 10px;
  }

  .announcement-section {
    padding: 40px 15px;
  }

  .announcement-section h2 {
    font-size: 1.5rem;
  }

  .desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .announcement-list {
    width: 100%;
  }

  .announcement-item {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
 
    /* ===== Footer ===== */
  .footer-container {
    grid-template-columns: 1fr;
    padding: 10px;
    text-align: center;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col p,
  .footer-col li {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}