/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f9;
  color: #333;
  
}

h1, h2, h3 {
  font-weight: 700;
}

p {
  font-weight: 400;
  line-height: 1.6;
}

/* Navbar Styles */


/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1d4f91;
  color: #fff;
  padding: 67px; 
}

.hero-text {
  max-width: 500px;
  height: 450px;
  align-items: top;
 margin-block-start: 0%;
}

h1 {
  font-size: 43px; /* Increased font size */
  margin-bottom: 20px;
  font-weight: 700; /* Bolder font */
  margin-top: 15%;
}

.hero-text p {
  font-size: 15px;
  margin-bottom: 30px;
}

.btn-hero button {
  padding: 12px 24px;
  background-color: #fff;
   border: 1px solid #f4f4f9;
  color: #800000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.btn-hero button:hover {
  transform: translateY(-5px);
}

.hero-image img {
  width: 670px;
  border-radius: 20px 10px 20px 10px;
  height: 420px;
  text-align: end;
  margin-left: 1%;
}

.hero-image {
  flex-shrink: 0; 
}

/* Features Section */
.features {
  text-align: center;
  background-color: #f9f9f9;
  padding: 50px 20px;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.features p {
  margin-bottom: 30px;
  font-size: 18px;
}

.features-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}

.card {
  background-color: #fff;
  padding: 20px;
  width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #045ab1;
}

.card p {
  font-size: 16px;
  color: #555;
}

/* Library Statistics Section */
.statistics {
  text-align: center;
  background-color: #f9f9f9;
  padding: 50px 20px;
}
.statistics h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.statistics p {
  margin-bottom: 20px;
  font-size: 18px;
}
.stats-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-card {
  background-color: #fff;
  padding: 20px;
  width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #045ab1;
}

.stat-card span {
  font-size: 36px;
  color: #045ab1;
  font-weight: 700;
}

/* University Info Section */
.university-info {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  background-color: #f9f9f9;
}

.info-image img {
  width: 598px;
  border-radius: 10px;
  object-fit: cover;
}

.info-text {
  max-width: 600px;
}

.info-text h2 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  color: #1d4f91;
}

.info-text ul {
  list-style-type: none;
}

.info-text ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}

/* Footer Section */
footer {
  text-align: left;
  padding: 20px;
  background-color: #fff;
  color: #3f3e3e;
  margin-left: 10px;
}

footer .social-icons img {
  width: 24px;
  margin: 0 10px;
 
}
