/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}
.logo img {
  height: 60px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold; /* Programs, Branches, Contact now bold */
  transition: color 0.3s;
}
nav a:hover {
  color: #ffe14c;
}

/* === HERO === */
.hero {
  background: url('https://i.ibb.co/Dgr4Z1f6/your-image.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  position: relative;
  padding-left: 80px;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}
.hero h1 .highlight {
  color: #ffdd32;
  display: block;
  font-family: "Palatino Linotype", Palatino, serif;
}
.line {
  width: 70px;
  height: 4px;
  background: #ffdd32;
  margin: 20px 0;
  border-radius: 2px;
}
.btn {
  background: #ffdd32;
  padding: 14px 36px;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Bookman Old Style", serif;
}
.btn:hover {
  background: #ffe97f;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* === MAIN CONTENT === */
.main {
  padding: 100px 40px;
  background: #fff;
}
.content-block {
  margin-bottom: 60px;
}
.content-block h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: left;
  color: #111;
}
#programs h2,
#branches h2 {
  font-family: "Times New Roman", Times, serif; /* Programs & Branches titles */
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  background: #ffe566;
}

/* === CONTACT / FOOTER === */
.footer {
  background: url('https://i.ibb.co/Dgr4Z1f6/your-image.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 60px 40px 20px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
}
.footer-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  z-index: 1;
}
.footer-col h3 {
  margin-bottom: 20px;
  color: #ffdd32;
  font-weight: normal;
}
.footer-col p, .footer-col a {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
  text-decoration: none; /* Removed underline */
}
.footer-col a {
  font-weight: bold; /* Phone, Mail, Insta now bold */
}
.footer-col p strong {
  font-weight: bold; /* Headquarters & Branch bold */
}
.footer-col a:hover {
  color: #ffe566;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold; /* Quick Links bold */
}
.footer-links a:hover {
  color: #ffdd32;
}
.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.85rem;
  z-index: 1;
  position: relative;
}
.footer-col i {
  color: #ffdd32;
  font-size: 1.1rem;
}
