/*
Theme Name: Vidyapul Theme
Author: Vidyapul Education
Version: 1.0
Description: Custom WordPress theme for Vidyapul Education
*/

/* =====================
   RESET
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fb;
  color: #1f2937;
  line-height: 1.6;
}

/* =====================
   CONTAINER
===================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================
   HEADER
===================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: #111827;
}

.site-logo span {
  color: #16a34a;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: 0.3s;
}

.main-nav a:hover {
  color: #16a34a;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 30px;
}

.btn-hero {
  display: inline-block;
  background: #16a34a;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-hero:hover {
  background: #15803d;
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 80px 0;
}

.section--light {
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

/* =====================
   UNIVERSITY CARDS
===================== */
.uni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.uni-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.uni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.uni-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.uni-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.uni-card p {
  color: #6b7280;
  margin-bottom: 20px;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #16a34a;
  color: #16a34a;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #16a34a;
  color: #ffffff;
}

/* =====================
   TRUST SECTION
===================== */
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.trust-text p {
  color: #6b7280;
  margin-top: 15px;
}

.trust-list {
  list-style: none;
}

.trust-item {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.trust-icon {
  color: #16a34a;
  font-weight: bold;
  margin-right: 10px;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background: #111827;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 28px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .main-nav ul {
    gap: 14px;
  }

}/*
Theme Name: Vidyapul Theme
Author: Vidyapul Education
Version: 1.0
Description: Custom WordPress theme for Vidyapul Education
*/
