/* =========================
   BEIGE THEME VARIABLES
   ========================= */
:root {
  --bg-main: #f6f1e9;
  --bg-card: #fffaf2;
  --bg-footer: #efe6d8;
  --primary: #8b6f47;
  --secondary: #c8b6a6;
  --text-dark: #3e3a36;
  --text-muted: #6b645c;
  --border-soft: #e4d8c8;
}

/* =========================
   GLOBAL RESET
   ========================= */

/* =========================
   HEADER
   ========================= */


/* =========================
   MAIN CONTENT
   ========================= */
.com_new_stude {
	width:100%;
	float:left;
	padding:3% 0 3% 0;
}	

.article-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Headings */
h1 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 10px;
}

h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
}

h5 {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Divider */
.divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 10px;
  margin: 20px 0 40px;
}

/* =========================
   COMMITTEE SECTIONS
   ========================= */
.committee-section {
  margin-bottom: 50px;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  
   
}

.committee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.committee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

/* Advisory images */
.committee-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--secondary);
  margin-bottom: 15px;
}

.orgnis_con_main {
    padding: 50px 20px;
    background-color: #f5f0e6; /* light beige background */
    display: flex;
    justify-content: center;
}

.con_org_one {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.con_org_one h1 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #5a4432; /* dark beige heading */
    letter-spacing: 1px;
}

.chif_con_six {
    display: inline-block;
    background-color: #fff8f0; /* beige card */
    margin: 10px;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 220px;
}



.chif_con_six:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .chif_con_six {
        width: 80%;
        margin: 10px auto;
    }
}

/* ===============================
   ADVISORY COMMITTEE GRID
   =============================== */
.advisory-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 photos per row */
  gap: 20px;
  margin-bottom: 10px;
  
}

/* ===============================
   CARD DESIGN
   =============================== */
.organise_con_three {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2px 2px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  width:100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.organise_con_three:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}
.organise_con_three h3 {
font-size:17px;
}
.organise_con_three h5 {
font-size:15px;
}

/* ===============================
   IMAGE STYLE
   =============================== */
.organise_con_three img {
padding:0 0 0 0;
  object-fit: cover;
  border: 3px solid var(--secondary);
  margin-bottom:5px;
  margin-top:5px;
    border-radius: 5%;
}

/* Disable old float */
.organise_con_three img.float {
  float: none;
}



/* ===============================
   RESPONSIVE BREAKPOINTS
   =============================== */
@media (max-width: 992px) {
  .advisory-container {
    grid-template-columns: repeat(2, 1fr); /* tablet */
  }
}

@media (max-width: 576px) {
  .advisory-container {
    grid-template-columns: 1fr; /* mobile */
  }
}

/* ===============================
   REMOVE OLD SPACERS
   =============================== */
.organise_con_four {
  display: none;
}





/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .article-card {
    padding: 25px;
  }
}