/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* ===== Top Header ===== */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 8px 30px;
  font-size: 14px;
}

.top-header .contact span {
  margin-right: 15px;
}

.top-header .social a {
  color: #fff;
  margin-left: 12px;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}
.top-header .social a:hover {
  color: #f39c12;
}


/* ===== Navigation ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

nav .nav-links {
  display: flex;
  list-style: none;
}

nav .nav-links li {
  margin-left: 25px;
}

nav .nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s;
}
nav .nav-links a:hover {
  color: #f39c12;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background: url("../assets/images/t2.jpg") no-repeat center center/cover; 
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero h1 {
  position: relative;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  z-index: 1;
}

/* Facilities Section */
.facilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
  background: #f9f9f9;
}
.facility-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
  padding: 25px;
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s ease;
}
.facility-card:hover {
  transform: translateY(-8px);
}
.facility-card h2 {
  background: #003366;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 20px;
}
.facility-card ul {
  list-style: none;
}
.facility-card li {
  margin: 12px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}
.facility-card i {
  color: #007bff;
  margin-right: 10px;
}


/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #4CAF50, #00BCD4);
  color: white;
  padding: 15px 30px;
  font-size: 14px;
}

/* Left section */
.footer-left a {
  color: white;
  text-decoration: underline;
}

/* Center social icons */
.footer-center {
  display: flex;
  gap: 15px;
}

.footer-center a {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  border-radius: 4px;
  transition: 0.3s;
}

.footer-center a:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Right section */
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right a {
  color: white;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-right span {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

