* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0a294d;
  --secondary: #ff6d34;
  --accent: #ff6d34;
  --gold: #0a294d;
  --light-gold: #fff9d6;
  --light: #f8f9fa;
  --dark: #0a294d;
  --transition: all 0.3s ease;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header & Navigation - GOLDEN STYLE */
header {
  background-color: var(--gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  height: 70px;
  justify-content: center;
  align-items: center;
  display: flex;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo-img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-links a:hover {
  color: var(--accent);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}

/* Home Section */
#home {
  height: 100vh;
  background: linear-gradient(
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.3)
    ),
    url("images/Dla01.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--transition);
  transition: background 1.5s ease;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  background-color: transparent;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
  color: #fff;
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
  color: #012b24;
  font-weight: bold;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn:hover {
  background: var(--gold);
  color: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background: var(--gold);
  bottom: 0;
  left: 25%;
}

/* About Section */
#about {
  background-color: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-10px);
}

.about-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-card h3 {
  color: var(--secondary);
}

/* Programs Section */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.program-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-img {
  height: 200px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-content {
  padding: 1.5rem;
}

.program-content h3 {
  color: var(--primary);
}

.program-content ul {
  list-style: none;
  margin: 1rem 0;
}

.program-content ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.program-content ul li i {
  color: var(--accent);
  margin-right: 0.5rem;
}

/* Tutors Section */
#tutors {
  background-color: var(--light);
}

.tutors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tutor-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: var(--transition);
}

.tutor-card:hover {
  transform: translateY(-10px);
}

.tutor-img {
  height: 250px;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tutor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tutor-info {
  padding: 1.5rem;
}

.tutor-info h3 {
  color: var(--primary);
}

.tutor-role {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--dark);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent);
}

/* Contact Section with Map */
#contact {
  padding: 5rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info {
  padding-right: 2rem;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-details li i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
}

.contact-form {
  background: var(--light);
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.error {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  display: none;
}

/* Map Section */
.map-container {
  margin-top: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  list-style: none;
  margin: 1.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links li {
  margin: 0 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  margin-top: 1.5rem;
  opacity: 0.8;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--gold);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1.5rem 0;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-right: 0;
  }
}
