/* Global Styles */
:root {
  --primary-blue: #1a2a5e;
  --primary-gold: #c8a45c;
  --secondary-blue: #2c3e50;
  --text-dark: #333333;
  --text-light: #666666;
  --background-white: #ffffff;
  --background-light: #f5f5f5;
  --border-light: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-weight: 700;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-gold);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: var(--secondary-blue);
  color: white;
}

section {
  padding: 60px 0;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-blue);
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-blue);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 24px;
  max-width: 800px;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  background-color: var(--primary-blue);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 0;
}

/* Features Section */
.features {
  background-color: var(--background-white);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.feature h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

/* CTA Section */
.cta {
  background-color: var(--primary-blue);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

.cta .btn {
  background-color: var(--primary-gold);
  color: var(--primary-blue);
  font-weight: 700;
}

.cta .btn:hover {
  background-color: white;
}

/* Footer Styles */
footer {
  background-color: var(--secondary-blue);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* About Page Styles */
.about-intro,
.mission-vision {
  background-color: var(--background-white);
}

.mission-vision .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission,
.vision {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.leadership-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.leader {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.position {
  color: var(--primary-gold);
  font-weight: 500;
  margin-bottom: 15px;
}

/* Admissions Page Styles */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.step {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.requirements-list {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.requirements-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.requirements-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
}

.fee-table {
  overflow-x: auto;
  margin: 30px 0;
}

.fee-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fee-table th,
.fee-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.fee-table th {
  background-color: var(--primary-blue);
  color: white;
}

.fee-table tr:nth-child(even) {
  background-color: var(--background-light);
}

/* Policies Page Styles */
.policy-category {
  margin-bottom: 50px;
}

.policy-list {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.policy-list li {
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.policy-access {
  background-color: var(--background-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Blog Page Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.blog-post {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-date {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 15px;
}

.blog-read-more {
  color: var(--primary-blue);
  font-weight: 500;
}

.blog-subscribe {
  background-color: var(--primary-blue);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.blog-subscribe h2 {
  color: white;
}

.subscribe-form {
  max-width: 500px;
  margin: 30px auto 0;
}

.subscribe-form .form-group {
  display: flex;
}

.subscribe-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
}

.subscribe-button {
  background-color: var(--primary-gold);
  color: var(--primary-blue);
  border: none;
  padding: 12px 24px;
  border-radius: 0 4px 4px 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.subscribe-button:hover {
  background-color: #d9b66e;
}

/* Contact Page Styles */
.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.contact-item {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.submit-button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: var(--secondary-blue);
}

.map-container {
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 40px;
  }
  
  .hero p {
    font-size: 20px;
  }
  
  section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 15px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  section {
    padding: 30px 0;
  }
  
  .feature,
  .mission,
  .vision,
  .value-item,
  .leader,
  .step,
  .contact-item {
    padding: 20px;
  }
  
  .blog-title {
    font-size: 18px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea,
  .btn,
  .submit-button {
    font-size: 14px;
    padding: 10px;
  }
}
