/* ===== BASE ===== */
body {
  visibility: hidden;
  margin: 0;
  padding-top: 10px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: white;
}

/* ===== WRAPPER ===== */
.wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 10px 20px;
}

/* CENTER TEXT PERFECT ALIGN */
.nav-center {
  text-align: center;
  max-width: 90%;
}

.nav-center h2 {
  /* margin: 0;
  
  
  font-weight: 700; */
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  /* 🔥 More bold */
  letter-spacing: 0.5px;
  color: #f87171;
}

.nav-center .red {
  color: red;
  margin: 2px 0;
}

.nav-center .motto {
  color: yellow;
  margin: 2px 0;
}

.nav-center .motto1 {
  color: white;
  margin: 2px 0;
}

/* LEFT SIDE */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
  margin: 25px;
}

/* ===== BRAND ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 100px;
  height: 100 px;
  border-radius: 50%;
  transition: 0.3s;
  /* border: 2px solid #38bdf8; */
}

.logo-img:hover {
  transform: scale(1.1);
}

.brand-text {
  text-align: left;
}

.logo {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: #38bdf8;
  margin: 0;
}

.subtitle {
  font-size: 22px;
  color: #94a3b8;
}

/* ===== RIGHT SIDE (COLLEGE INFO IN NAVBAR) ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  /* text-align: right; */
}

.college-logo-small {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: 0.3s;
}

.college-logo-small:hover {
  transform: scale(1.1);
}

/* College text compact */
.college-text h3 {
  margin: 0;
  font-size: 25px;
  color: #f87171;
  font-weight: 600;
}

.college-text p {
  margin: 2px 0;
  font-size: 20px;

}

.red {
  color: red;
  font-weight: bold;
  font-size: 25px;
  padding: 2px 6px;
  border-radius: 4px;

}

.motto1 {
  /* color: white;
  font-weight: bold; */
  font-size: 10px;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}

/* Motto */
.motto {
  font-size: 14px;
  color: yellow;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}

/* College logo */
.college-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  transition: 0.3s;
  /* object-fit: cover;
  border: 2px solid white; */
}

.college-logo:hover {
  transform: scale(1.1);
}

/* ===== SIDEBAR ===== */
.sidebar {
  height: 100%;
  width: 260px;
  /* ✅ FIXED WIDTH */
  position: fixed;
  top: 0;
  left: -260px;
  background: #020617;
  transition: 0.4s;
  padding-top: 60px;
  z-index: 1000;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.sidebar a {
  /* padding: 12px 20px;
  display: block;
  color: white;
  text-decoration: none; */
  display: block;
  width: 100%;
  /* FULL WIDTH */
  padding: 14px 20px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  box-sizing: border-box;
  /*  IMPORTANT */
}

.sidebar a:hover {
  background: #38bdf8;
  color: black;
}

.sidebar a.active {
  background: #38bdf8;
  color: black;
}

.sidebar .closebtn {
  position: absolute;
  top: 10px;
  right: 20px;
}

/* ===== OVERLAY ===== */
#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  top: 0;
  left: 0;
  z-index: 900;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  margin: 0px;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(90deg, #38bdf8, #8f5621, #facc15);
  -webkit-background-clip: text;
  color: transparent;
}
/* ===== CONTACT PAGE ===== */

.contact-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.contact-title {
  font-size: 60px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #38bdf8, #67e8f9);
  -webkit-background-clip: text;
  color: transparent;
}

.contact-intro {
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 850px;
  margin-bottom: 40px;
  font-size: 17px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* CARD */
.contact-card {
  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  padding: 30px;
  border-radius: 18px;

  backdrop-filter: blur(10px);

  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 0 20px rgba(56,189,248,0.2);
}

.contact-card h3 {
  color: #38bdf8;
  margin-bottom: 12px;
  font-size: 24px;
}

.contact-role {
  color: #94a3b8;
  margin-bottom: 20px;
}

.contact-card a {
  color: #facc15;
  text-decoration: none;
  font-size: 18px;
  word-break: break-word;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-small {
  margin-top: 15px;
  color: #94a3b8;
  font-size: 14px;
}

/* DEPARTMENT BOX */
.department-box {
  margin-top: 50px;

  padding: 30px;

  background: rgba(255,255,255,0.04);

  border-left: 4px solid #38bdf8;

  border-radius: 12px;
}

.department-box h3 {
  color: #f87171;
  margin-bottom: 10px;
}

.department-box p {
  margin: 5px 0;
  color: #cbd5e1;
}

/* This is Achievements styling started */
/* ==========================
   ACHIEVEMENTS PAGE
========================== */

.achievement-section{
    width:90%;
    margin:auto;
    padding:50px 0;
    margin-top:0 !important;
    padding-top:5px !important;
}

.achievement-intro{
    max-width:900px;
    margin:auto;
    line-height:1.8;
}

.achievement-highlight{
    text-align:center;
    margin-bottom:40px;
}

.achievement-highlight h2{
    color:#ffd700;
    margin-bottom:15px;
}

.achievement-cards{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content:center;
}

.achievement-card{
    width:450px;
    background:#081528;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 0 15px rgba(255,255,255,0.08);
    transition:0.3s;
}

.achievement-card:hover{
    transform:translateY(-8px);
}

.achievement-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.achievement-card h3{
    padding:15px 20px 0;
    color:#ffd700;
}

.achievement-card p{
    padding:10px 20px;
    line-height:1.7;
}

.achievement-card .btn{
    margin:20px;
}
.achievement-card{
    overflow:hidden;
}

.achievement-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.4s ease;
    cursor:pointer;
}

.achievement-card:hover img{
    transform:scale(1.05);
}


/* This is Achievements styling End */




/* Thsis for our about page content  */
.about-section {
  max-width: 900px;
  margin: 10px auto 40px;
  padding: 10px 20px;
  line-height: 1.8;
  color: #cbd5f5;
  font-size: 16px;
}

.about-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.about-section p {
  margin-bottom: 15px;
  text-align: justify;
}

/* End About page content */


/* ===== HOME ARTICLE SECTION start===== */
.home-article {
  max-width: 950px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  line-height: 1.9;
  backdrop-filter: blur(10px);
}

/* TITLE */
.article-title {
  font-size: 32px;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 10px;
}

/* SUBTITLE */
.article-subtitle {
  font-size: 18px;
  color: #facc15;
  margin-bottom: 25px;
}

/* PARAGRAPHS */
.home-article p {
  font-size: 16px;
  color: #cbd5f5;
  text-align: justify;
  margin-bottom: 18px;
}

/* HIGHLIGHT IMPORTANT WORDS */
.home-article strong {
  color: #f87171;
}


/* ===== HOME ARTICLE SECTION End===== */



/* Index pages styling of card start */
.book-title {
  font-weight: bold;
  color: green;
  margin: 5px 0;
}
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Hover zoom effect */
.card img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.container1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* ✅ 3 cards per row */
  gap: 20px;
  padding: 40px;
}

/* Index pages styling of card End */


/* desclaimer styling start  */
.disclaimer-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #38bdf8;
  border-radius: 8px;
  line-height: 1.8;
  color: #cbd5f5;
}

.disclaimer-section h3 {
  color: #f87171;
  margin-bottom: 15px;
}

.disclaimer-section p {
  margin-bottom: 12px;
  text-align: justify;
}

/* Important lines highlight */
.highlight {
  color: #facc15;
  font-weight: 600;
}

/* Disclimer Styling End  */

/* Acknowledgement styling Code Start  */

.acknowledgement-section {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.ack-img {
  width: 100%;
  max-width: 900px;
  /* control size */
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

/* Acknowledgement Styling Code End  */


/* Editorial Board style  Code Start  */

.editorial-section {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #f97316;
  margin-bottom: 30px;
}

/* GRID */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARD */
.editor-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.editor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

/* IMAGE */
.editor-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* TEXT */
.editor-card h3 {
  color: #38bdf8;
  font-size: 16px;
  margin: 10px 0;
}

.editor-card p {
  font-size: 14px;
  margin: 4px 0;
}


/* ===== BUTTON STYLE ===== */
.btn {
  padding: 14px 30px;
  font-size: 13px;
  border: none;
  border-radius: 10px;
  cursor: pointer;

  background: linear-gradient(90deg, #38bdf8, #22c55e);
  color: black;
  font-weight: 600;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
}

/* Click effect */
.btn:active {
  transform: scale(0.96);
}

/* ===== FEATURED ===== */
.featured {
  display: flex;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}

/* ===== CARDS ===== */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}
 
/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #020617;
}
/* ===== NOTIFICATION SECTION ===== */

.notification-section {
  margin: 60px auto;
  padding: 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 35px;
}

.section-heading h2 {
  font-size: 38px;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #38bdf8, #facc15);
  -webkit-background-clip: text;
  color: transparent;
}

.section-heading p {
  color: #94a3b8;
  font-size: 15px;
}

/* Notification Grid */

.notification-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Notification Card */

.notification-card {
  position: relative;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);

  padding: 25px;
  border-radius: 16px;

  transition: 0.3s ease;
}

.notification-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 0 20px rgba(56,189,248,0.25);
}

/* Badge */

.notify-badge {
  position: absolute;
  top: 15px;
  right: 15px;

  background: #ef4444;
  color: white;

  padding: 4px 10px;

  border-radius: 30px;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.5px;
}

/* Text */

.notification-card h3 {
  color: #38bdf8;
  margin-bottom: 12px;

  font-size: 20px;
}

.notification-card p {
  color: #cbd5e1;

  line-height: 1.7;
  font-size: 14px;

  margin-bottom: 20px;
}

/* Date */

.notify-date {
  font-size: 13px;
  color: #facc15;
}
/* ===== POPUP BACKGROUND ===== */

.notification-popup {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.75);

  display: flex;

  justify-content: center;
  align-items: center;

  z-index: 9999;

  backdrop-filter: blur(5px);
}

/* MAIN BOX */

.popup-content {
  width: 80%;
  max-width: 520px;

  background: #0f172a;

  border-radius: 16px;

  padding: 25px;

  position: relative;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 0 35px rgba(0,0,0,0.5);
}

/* CLOSE */

.popup-close {
  position: absolute;

  top: 15px;
  right: 20px;

  font-size: 32px;

  cursor: pointer;

  color: white;
}

/* HEADING */

.popup-content h3 {
  text-align: center;

  color: #38bdf8;

  margin-bottom: 20px;
  margin-top:1px;
}

/* ===== SCROLL AREA ===== */

.popup-scroll {
  max-height: 230px;

  overflow-y: auto;

  padding-right: 8px;
}

/* Custom Scrollbar */

.popup-scroll::-webkit-scrollbar {
  width: 6px;
}

.popup-scroll::-webkit-scrollbar-thumb {
  background: #38bdf8;

  border-radius: 10px;
}

/* NOTICE */

.popup-notice {
  display: flex;

  align-items: center;

  gap: 18px;

  text-decoration: none;

  background: rgba(255,255,255,0.03);

  padding: 10px;

  border-radius: 12px;

  margin-bottom: 15px;

  transition: 0.3s ease;

  border: 1px solid rgba(255,255,255,0.05);
}

.popup-notice:hover {
  background: rgba(56,189,248,0.08);

  transform: translateY(-2px);

  box-shadow:
    0 0 15px rgba(56,189,248,0.15);
}

/* DATE */

.popup-date {
  background: #b91c1c;

  color: white;

  min-width: 50px;

  text-align: center;

  padding: 10px;

  border-radius: 10px;
}

.popup-date span {
  display: block;

  font-size: 13px;
}

.popup-date strong {
  font-size: 15px;
}

/* TEXT */

.popup-text {
  flex: 1;

  color: #e2e8f0;

  font-size: 11px;

  line-height: 1.5;
}

/* BADGE */

.popup-badge {
  background: #dc2626;

  color: white;

  padding: 6px 12px;

  border-radius: 30px;

  font-size: 11px;

  font-weight: 600;
}

/* FOOTER */

.popup-footer {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 20px;
}

/* FOOTER LINK */

.popup-footer a {
  color: #38bdf8;

  text-decoration: none;

  font-size: 15px;
}

.popup-footer a:hover {
  text-decoration: underline;
}

/* BUTTON */

.popup-footer button {
  background: #1e293b;

  color: white;

  border: none;

  padding: 10px 18px;

  border-radius: 8px;

  cursor: pointer;

  transition: 0.3s;
}

.popup-footer button:hover {
  background: #334155;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .popup-content {
    padding: 18px;
  }

  .popup-notice {
    gap: 10px;
  }

  .popup-date {
    min-width: 58px;
  }

  .popup-date strong {
    font-size: 18px;
  }

  .popup-text {
    font-size: 13px;
  }

}
/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {

  .section-heading h2 {
    font-size: 28px;
  }

  .notification-card {
    padding: 20px;
  }

}
/* Media Before responsiveness end  */


@media (max-width: 768px) {

  .navbar {
    padding: 10px;
    gap: 5px;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
  }

  /* Top logos small */
  .college-logo-small {
    width: 60px;
    height: 60px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

}

@media (max-width: 768px) {

  .nav-center h2 {
    font-size: 14px;
  }

  .nav-center .red {
    font-size: 13px;
  }

  .nav-center .motto,
  .nav-center .motto1 {
    font-size: 12px;
  }

}

@media (max-width: 768px) {

  .hero {
    padding: 20px 10px;
  }

  .wrapper {
    padding: 0 10px;
  }

}

/* @media (max-width: 768px) {

  .nav-right {
    display: none;    
  }

} */
@media (max-width: 768px) {

  .contents-section {
    margin-top: 10px;
  }

}

@media (max-width: 768px) {

  .logo {
    font-size: 20px;
    font-weight: 700;
  }

  .subtitle {
    font-size: 16px;
    display: inline;
  }

  /* अगर दोनों एक line में हैं */
  .brand-text h1 {
    font-size: 20px;
    line-height: 1.4;
  }

}
@media (max-width: 768px) {

  .home-article {
    padding: 15px;
    margin: 20px 10px;
  }

  .article-title {
    font-size: 22px;
  }

  .article-subtitle {
    font-size: 14px;
  }

  .home-article p {
    font-size: 14px;
  }

}
/* Contact us responsiveness code  */
/* MOBILE */
@media (max-width: 768px) {

  .contact-title {
    font-size: 42px;
  }

  .contact-intro {
    font-size: 15px;
  }

  .contact-card {
    padding: 22px;
  }

}
/* This is Achievements Responsive started */

@media(max-width:768px){

    .achievement-card{
        width:100%;
    }

    .achievement-card img{
        height:220px;
    }
}
/* This is Achievements Responsive ended */