/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg,#eef7f0,#f8fbf9);
  color:#1f2937;
  line-height:1.8;
}

/* ===== MAIN CONTAINER ===== */
#content{
  max-width:1200px;
  margin:40px auto;
  background:#ffffff;
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  overflow:hidden;
}

/* ===== HEADER ===== */
#header{
  text-align:center;
  padding:60px 20px;
  background:linear-gradient(135deg,#064e3b,#15803d);
  color:#fff;
}

#blog-title{
  font-size:46px;
  font-weight:800;
  letter-spacing:1px;
}

#description{
  margin-top:12px;
  font-size:18px;
  opacity:.9;
}

/* ===== NAVIGATION ===== */
#nav{
  background:#ffffff;
  text-align:center;
  padding:16px;
  border-bottom:1px solid #e5e7eb;
  position:sticky;
  top:0;
  z-index:999;
}

#nav a{
  color:#065f46;
  text-decoration:none;
  margin:0 18px;
  font-weight:600;
  transition:.3s ease;
  position:relative;
}

#nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#d4af37;
  transition:.3s;
}

#nav a:hover::after{
  width:100%;
}

/* ===== HERO SECTION ===== */
#hero{
  padding:100px 20px;
  text-align:center;
  background:linear-gradient(135deg,#0f172a,#064e3b);
  color:#fff;
}

#hero h2{
  font-size:42px;
  margin-bottom:18px;
}

#hero p{
  max-width:820px;
  margin:auto;
  font-size:18px;
  opacity:.9;
}

/* ===== BUTTONS ===== */
.hero-btn{
  display:inline-block;
  margin:12px;
  padding:14px 34px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s ease;
  font-size:15px;
}

/* Primary Gold Button */
.hero-btn{
  background:linear-gradient(135deg,#d4af37,#f6e27a);
  color:#1f2937;
  box-shadow:0 8px 20px rgba(212,175,55,.35);
}

.hero-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 28px rgba(212,175,55,.5);
}

/* ===== SECTIONS ===== */
.section{
  padding:70px 25px;
}

.section h2{
  text-align:center;
  font-size:30px;
  margin-bottom:45px;
  color:#065f46;
  position:relative;
}

.section h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:#d4af37;
  margin:12px auto 0;
  border-radius:3px;
}

/* ===== GRID ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:28px;
}

.box{
  background:#ffffff;
  padding:28px;
  border-radius:16px;
  border:1px solid #e5e7eb;
  transition:.3s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.box:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.1);
}

/* ===== ABOUT SECTION ===== */
#about{
  background:#f9fafb;
}

#about strong{
  color:#065f46;
}

/* Faculty Title Styling */
#about h3{
  color:#111827;
  font-size:22px;
  margin-top:20px;
}

/* ===== CONTACT ===== */
#contact{
  background:#f3f4f6;
  text-align:center;
  font-size:17px;
}

/* ===== FOOTER ===== */
#footer{
  text-align:center;
  padding:30px 20px;
  background:#064e3b;
  color:#fff;
  font-size:14px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  #blog-title{font-size:32px;}
  #hero h2{font-size:28px;}
  .hero-btn{padding:12px 22px;}
  #nav a{display:inline-block;margin:10px;}
}
