* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #F5F7FA;
  overflow-x: hidden;
}



/* Society Registration & Details */
.society-info {
    padding: 40px 20px;
    background: #f9f9f9;
    font-family: Georgia, serif;
}

/* CARD CONTAINER */
.info-card {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* LEFT SIDE */
.card-left {
    flex: 1;
    min-width: 200px;
     background:   #2b6cb0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

/* BADGE */
.registration-badge {
    border: 2px solid #d4af37;
    padding: 20px;
    border-radius: 50%;
}

.reg-no {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.reg-year {
    font-size: 14px;
    color: #d4af37;
}

.reg-date{
    font-size: 14px;
    color: #d4af37;
}

/* RIGHT SIDE */
.card-right {
    flex: 3;
    min-width: 300px;
    padding: 40px;
}

/* TITLE */
.card-right h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* GRID DETAILS */
.details-grid {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 20px;
    margin-top: 20px;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* SINGLE DETAIL BOX */
.detail-item strong {
    color: #2980b9;
  white-space: nowrap;
}
.detail-item span {
  white-space: nowrap;
}




/* QUOTE / VISION */
.vision-text {
    margin-top: 30px;
    padding-left: 15px;
    border-left: 4px solid #d4af37;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* 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;
}








/* Eduction-philosophy */
.philosophy-container {
  max-width: 1200px;
  margin: 30px auto;
  font-family: 'Segoe UI', sans-serif;
   
}

/* Box */
.philosophy-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

/* Title */
.title {
  font-size: 35px;   /* increased */
  color: #2b6cb0;
  margin-bottom: 10px;
}

/* Intro */
.intro {
  color: #2b6cb0;
  margin-bottom: 25px;
  font-size: 18px;   /* increased */
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Card */
.card {
  position: relative;
  border-radius: 12px;
  padding: 45px 20px 65px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Hover */
.card:hover {
  transform: scale(1.03);
}

/* NEW COLOR REPLACEMENT */
.blue {
  background: #2b6cb0;   /* UPDATED COLOR */
  color: #fff;
}

.light {
  background: #f2f4f7;
  color: #333;
}

/* Icon */
.icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
   font-size: 28px;
  color: #f2b705;/* increased */
}

.blue .icon {
  background: rgba(255,255,255,0.2);
}

.light .icon {
  background: rgba(43,108,176,0.2);
}

/* Text */
.card h3 {
  margin-bottom: 10px;
  font-size: 23px;   /* increased */
}

.card p {
  font-size: 18px;   /* increased */
  line-height: 1.7;
}

/* Bottom Tag */
.tag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a5276;
  color: #fff;
  padding: 10px;
  font-size: 1px;
  font-weight: 600;
  border-radius: 0 0 12px 12px;
}

/* Footer strip */
.philosophy-box::after {
  content: "";
  display: block;
  height: 10px;
  background: #2b6cb0;
  border-radius: 0 0 15px 15px;
  margin-top: 20px;
}






/* vission and mission */
.vm-container {
  max-width: 1200px;
 
  margin: 40px auto;
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 20px;
}

/* Grid Layout */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  
}

/* CARD COMMON STYLE */
.card1 {
  position: relative;
  border-radius: 12px;
  padding: 25px 20px 55px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* Hover Effect */
.card1:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* VISION CARD */
.vision {
  background: #2b6cb0;   /* UPDATED COLOR */
  color: #fff;
}

/* MISSION CARD */
.mission {
  background: #2b6cb0;   /* UPDATED COLOR */
  color: #fff;
}

/* HEADINGS */
.card1 h3 {
  font-size: 28px;   /* increased */
  margin-bottom: 12px;
  font-weight: 700;
}

/* PARAGRAPH */
.card1 p {
  font-size: 18px;   /* increased */
  line-height: 1.7;
}

/* LIST */
.card1 ul {
  padding-left: 18px;
}

.card1 ul li {
  margin-bottom: 10px;
  font-size: 17px;   /* increased */
  line-height: 1.6;
}

/* BOTTOM TAG */
.tag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a5276;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 0 0 12px 12px;
}





/* Affiliation & Recognition */


.affiliation-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #eef3ff, #ffffff);
    font-family: 'Segoe UI', sans-serif;
}

/* Container */
.affiliation-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* Title */
.section-title {
    font-size: 36px;   /* increased */
    color: #2b6cb0;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Description */
.section-desc {
    font-size: 19px;   /* increased */
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Card */
.affiliation-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    text-align: left;
    transition: 0.3s ease;
    border-top: 5px solid #2b6cb0;
}

.affiliation-card:hover {
    transform: translateY(-5px);
}

/* List */
.affiliation-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each item */
.affiliation-card li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;   /* increased */
    color: #444;
    line-height: 1.6;
}

/* last item */
.affiliation-card li:last-child {
    border-bottom: none;
}

/* strong text */
.affiliation-card strong {
    color: #2b6cb0;   /* updated color */
    font-size: 17px;
}








/* University Affiliation */
.university-section {
    padding: 60px 20px;
    background: #f4f7fb;
    font-family: 'Segoe UI', sans-serif;
}

.university-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.uni-title {
   font-size: 36px;   /* increased */
    color: #2b6cb0;
    margin-bottom: 10px;
}

.uni-desc {
   font-size: 19px;   /* increased */
    color: #555;
    margin-bottom: 35px;
}

.uni-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.uni-card:hover {
    transform: translateY(-6px);
}

.uni-name {
    font-size: 24px;
    font-weight: 600;
    color: #2b6cb0;;
    margin-bottom: 20px;
}
.uni-name i {
  color: #f2b705;
  margin-right: 8px;
}

.detail-item span i {
  color: #2b6cb0;
  font-size: 18px;
}
.uni-details {
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.detail-item span {
    font-size: 19px;
    margin-right: 10px;
}

.detail-item p {
    margin: 0;
    font-size: 18px;
    color: #444;
}

.detail-item strong {
    color: #000;
}








/* ===================== 1024px (Tablet Landscape) ===================== */
@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%;
  }


  .philosophy-container,
  .vm-container,
  .affiliation-container,
  .university-container {
    padding: 15px;
  }

  .grid,
  .vm-grid {
    gap: 15px;
  }

  .card,
  .card1 {
    padding: 20px 15px 60px;
  }

  .title,
  .section-title,
  .uni-title {
    font-size: 30px;
  }

  .card p,
  .card1 p {
    font-size: 16px;
  }
  
  /* ===== Footer ===== */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}






/* ===================== 768px (Tablet Portrait) ===================== */
@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;
  }



  /* ALL GRIDS TO SINGLE COLUMN */
  .grid,
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    flex-direction: column;
  }

  .card-left,
  .card-right {
    width: 100%;
    padding: 20px;
  }

  /* TEXT ADJUSTMENT */
  .title,
  .section-title,
  .uni-title {
    font-size: 26px;
  }

  .intro,
  .section-desc,
  .uni-desc {
    font-size: 16px;
  }

  .card h3,
  .card1 h3 {
    font-size: 20px;
  }

  .card p,
  .card1 p {
    font-size: 15px;
  }

  /* TAG FIX (VERY IMPORTANT) */
  .tag {
    font-size: 12px;
    padding: 8px;
  }
  
  /* ===== Footer ===== */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }
}


/* ===================== 480px (Mobile) ===================== */
@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;
  }

  .detail-item {
    flex-direction: column;   /* upar niche aa jayega */
    align-items: flex-start;
  }

  .detail-item strong,
  .detail-item span {
    white-space: normal;      /* line break allow */
  }


  /* FULL WIDTH PADDING CONTROL */
  .philosophy-box,
  .vm-container,
  .affiliation-card,
  .uni-card {
    padding: 15px;
  }

  /* HEADINGS SMALL */
  .title,
  .section-title,
  .uni-title {
    font-size: 22px;
  }

  /* TEXT SMALL */
  .intro,
  .section-desc,
  .uni-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .card h3,
  .card1 h3 {
    font-size: 18px;
  }

  .card p,
  .card1 p {
    font-size: 14px;
  }

  /* LIST FIX */
  .card1 ul li {
    font-size: 14px;
  }

  /* SOCIETY CARD TEXT */
  .reg-no {
    font-size: 16px;
  }

  .reg-year {
    font-size: 13px;
  }

  /* AFFILIATION LIST */
  .affiliation-card li {
    font-size: 15px;
  }

  /* UNIVERSITY */
  .uni-name {
    font-size: 20px;
  }

  .detail-item p {
    font-size: 15px;
  }

  
  /* ===== 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;
  }
}



/* About-other */
.Other{
    background-color: #f4f7fb;
    padding: 60px 20px;
    
}
.OtherContainer{
    max-width: 1100px;
    margin: auto;
    text-align: center;
}
.OtherContainer h2{
    color: #2b6cb0;
    margin-bottom: 30px;
    font-size: 32px;
}
.OtherLink{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

@media(max-width:1024px){
    .OtherLink{
        grid-template-columns: 1fr 1fr;
    }
}

.OtherLink a{
    background-color: #fff;
    padding: 30px;
    text-decoration: none;
    color: black;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    align-items: center;
    border-radius: 10px;
}
.OtherLink a:hover{
    
    background-color: #2b6cb0;
    color: #fff;
    
}


.OtherLink i{
    font-size: 28px;
    color: #007bff;
    margin-bottom: 10px;
}
.OtherLink i:hover{
  
    color: white ;
}

.OtherLink span{
    font-weight: 600;
}

