body {
  font-family: 'Lato', sans-serif;
}

/* Header */
header {
  background-color: #eeede7;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  text-align: center;
}

/* Navigation */
nav {
  text-align: center;
  margin-top: 15px;
}

nav a {
  color: #000000;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #f39c12;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

/* Intro Section */
#intro-section {
  background-color: #261e06;
  color: #f2dfa5;
}

.intro-heading {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  line-height: 1.4;
}

.intro-text {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* Team Section */
#team-section {
  background-color: #f9f9f9;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.05);
}

.team-member h4 {
  font-family: 'Merriweather', serif;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 5px;
}

.team-member p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #555;
}

.team-description {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  max-width: 800px;
  margin: auto;
  color: #333;
}

/* Featured Section */
.featured {
  background-color: #261e06;
  padding: 60px 20px;
}

.featured h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

/* Cards */
.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Buttons */
.btn-custom {
  background-color: #816f46;
  color: white;
  border: none;
}

.btn-custom:hover {
  background-color: #d35400;
  color: white;
}

/* CONTACT PAGE SPECIFIC STYLES */

/* Contact page header section */
.contact-header {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.contact-header h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

/* Custom button style */
.btn-custom {
  background-color: #f39c12;
  color: white;
  border: none;
}

.btn-custom:hover {
  background-color: #d35400;
  color: white;
}

/* Form section styling */
.form-section {
  padding: 60px 20px;
}

.form-section h3 {
  font-family: 'Merriweather', serif;
  margin-bottom: 20px;
}

/* Contact info text spacing */
.contact-info p {
  margin-bottom: 10px;
}

/* Responsive form adjustments */
@media (max-width: 767px) {
  .form-section .row > div {
    margin-bottom: 30px;
  }
}

/* PAPERS PAGE SPECIFIC STYLES */

/* Featured section */
.featured {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.featured h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

/* Card styling for papers */
.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Custom download button */
.btn-custom {
  background-color: #f39c12;
  color: white;
  border: none;
}

.btn-custom:hover {
  background-color: #d35400;
  color: white;
}

/* Articles section spacing */
.articles {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* INTERNSHIPS PAGE SPECIFIC STYLES */

/* Featured internship banner */
.featured {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.featured h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

/* Internship cards */
.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Custom button */
.btn-custom {
  background-color: #f39c12;
  color: white;
  border: none;
}

.btn-custom:hover {
  background-color: #d35400;
  color: white;
}

/* BLOGS PAGE SPECIFIC STYLES */

/* Featured blogs section */
.featured {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.featured h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

/* Blog card styling */
.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Custom blog buttons */
.btn-custom {
  background-color: #f39c12;
  color: white;
  border: none;
}

.btn-custom:hover {
  background-color: #d35400;
  color: white;
}

/* Blog category filter dropdown */
.filter-dropdown {
  margin: 2rem 0;
  text-align: center;
}

.filter-dropdown label {
  font-weight: bold;
  margin-right: 10px;
}

.filter-dropdown select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ARTICLE PAGE SPECIFIC STYLES */

body {
  font-family: 'Lato', sans-serif;
}

header {
  background-color: #eeede7;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  text-align: center;
}

nav {
  text-align: center;
  margin-top: 15px;
}

nav a {
  color: #000000;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #f39c12;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

.featured {
  background-color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

.featured h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

.article-section {
  padding: 40px 20px;
}

.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.btn-read-more {
  background-color: #f39c12;
  color: white;
  border: none;
}

.btn-read-more:hover {
  background-color: #d35400;
  color: white;
}

footer {
  background-color: #eeede7;
  color: #000000;
  text-align: center;
  padding: 20px 0;
}

/* webinar Styles */
body {
  font-family: 'Lato', sans-serif;
}

header {
  background-color: #eeede7;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  text-align: center;
}

nav {
  text-align: center;
  margin-top: 15px;
}

nav a {
  color: #000000;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #f39c12;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

.featured {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.featured h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.btn-custom {
  background-color: #f39c12;
  color: white;
  border: none;
}

.btn-custom:hover {
  background-color: #d35400;
  color: white;
}

footer {
  background-color: #eeede7;
  color: #000000;
  text-align: center;
  padding: 20px 0;
}

/* about Styles */

body {
  font-family: 'Lato', sans-serif;
}

header {
  background-color: #eeede7;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  text-align: center;
}

nav {
  text-align: center;
  margin-top: 15px;
}

nav a {
  color: #000000;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #f39c12;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

.about-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.about-section h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

footer {
  background-color: #eeede7;
  color: #000000;
  text-align: center;
  padding: 20px 0;
}




/* Footer */
footer {
  background-color: #eeede7;
  color: #000000;
  text-align: center;
  padding: 20px 0;
}
