* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #F5F7FA;
  overflow-x: hidden;
}


/* images */
.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.gallery {
  padding: 60px 0;
  background: #f9f9f9;
  margin-top: 20px;
}

.g-title {
  text-align: center;
  font-size: 2.2rem;
  color: #2b6cb0;
}

.g-sub {
  text-align: center;
 color: rgb(55, 54, 54);
  margin-bottom: 40px;
  font-size: 18px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* IMAGE BOX */
.item {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

/* IMAGE */
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* OPTIONAL HOVER (zoom only) */
.item:hover img {
  transform: scale(1.05);
}






/* ANNOUNCEMENT SECTION */
.announcements-container {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.announcements-container h2 {
  font-size: 2.2rem;
  color: #2b6cb0;
  margin-bottom: 15px;
}

.announcement-desc {
  max-width: 600px;
  margin: auto;
  color: rgb(55, 54, 54);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Dropdown */
.announcement-dropdown {
  width: 280px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  cursor: pointer;
}

/* Button */
.announcement-btn-box {
  margin-top: 25px;
}

.announcement-btn {
  text-decoration: none;
  background: #2b6cb0;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.announcement-btn:hover {
  background: #1e4e8c;
}



/* Academic Programs & Fee Structure */

.programs-section {
  padding: 60px 20px;
  background: #f4f7f6;
  text-align: center;
}

.programs-title {
  color: #2b6cb0;
  margin-bottom: 40px;
  font-size: 2.2rem;   /* increased */
  font-weight: bold;
}

.programs-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.program-card {
  background: #fff;
  width: 300px;   /* slightly bigger */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.3s;
}

.program-card:hover {
  transform: translateY(-8px);
}

/* HEADER */
.program-header {
  background: #2b6cb0;   /* YOUR COLOR */
  color: #fff;
  padding: 15px;
  font-size: 1.5rem;   /* bigger */
  font-weight: bold;
}

/* CONTENT */
.program-content {
  padding: 18px;
  text-align: left;
  font-size: 1.2rem;   /* increased */
}

.program-sub {
  text-align: center;
  color: #666;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

/* BADGE */
.program-badge {
  background: #e6f0fa;
  color: #2b6cb0;
  padding: 7px;
  text-align: center;
  margin-bottom: 12px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
}

.program-card ul {
  list-style: none;
  padding: 0;
}

.program-card li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  font-size: 1.1rem;   /* bigger */
}

/* Fees Special */
.fee-box .program-header {
  background: #2b6cb0;   /* same theme */
}

.fee-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 1.1rem;   /* bigger */
}

.fee-line b {
  color: #222;
  font-size: 1.1rem;
}




/* 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%;
  }
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .item {
    height: 220px;
  }

  .program-card {
    width: 280px;
  }

  .programs-title {
    font-size: 2rem;
  }

  .g-title {
    font-size: 2rem;
  }

  
  /* ===== 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;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .item {
    height: 200px;
  }

  .g-title {
    font-size: 1.8rem;
  }

  .g-sub {
    font-size: 16px;
  }

  /* Programs */
  .programs-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .program-card {
    width: 90%;
  }

  .program-header {
    font-size: 1.3rem;
  }

  .program-content {
    font-size: 1.05rem;
  }

  /* Announcement */
  .announcement-desc {
    font-size: 1rem;
  }

  .announcement-dropdown {
    width: 100%;
    max-width: 300px;
  }

  
  /* ===== 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;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .item {
    height: 180px;
  }

  .g-title {
    font-size: 1.6rem;
  }

  .g-sub {
    font-size: 14px;
  }

  /* Programs */
  .program-card {
    width: 100%;
  }

  .program-header {
    font-size: 1.1rem;
    padding: 12px;
  }

  .program-content {
    font-size: 1rem;
    padding: 15px;
  }

  .program-card li {
    font-size: 0.95rem;
  }

  /* Fees */
  .fee-line {
    font-size: 1rem;
  }

  /* Announcement */
  .announcements-container h2 {
    font-size: 1.6rem;
  }

  .announcement-desc {
    font-size: 0.95rem;
  }

  .announcement-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
  /* ===== 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;
  }
}