/* Reset & General Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #222;
  transition: background 0.3s, color 0.3s;
  line-height: 1.6;
}

.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(to right, #002244, #003366);
  color: white;
  flex-wrap: wrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #ffcc00;
}

.navbar a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  position: relative;
}

.navbar a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffcc00;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
  color: #ffcc00;
}




/* Dark Mode Toggle */
#darkToggle {
  background: #444;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  margin-left: auto;
  margin-right: 10px;
  z-index: 1000;
}

/* Hero Section */
.hero-section {
  background: center/cover no-repeat;
  padding: 80px 40px;
  text-align: center;
  position: relative;
}

.hero-overlay {
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(12px) saturate(150%) brightness(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(150%) brightness(1.1);
  padding: 40px;
  border-radius: 15px;
  display: inline-block;
  color: #fff;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.square-profile {
  width: 300px;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.square-profile:hover {
  transform: scale(1.05);
}

.speciality-badge {
  display: inline-block;
  background: #ffcc00;
  color: #003366;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 14px;
  margin-top: 10px;
  font-weight: bold;
}

.qualifications {
  font-size: 1rem;
  margin-top: 10px;
  color: #fff;
}

/* Sections */
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section h2 {
  color: #003366;
  margin-bottom: 20px;
}

.about-text {
  text-align: justify;
  font-size: 1.05rem;
  color: #003366;
  line-height: 1.8;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-top: 4px solid #00b8b8;
  position: relative;
  backdrop-filter: blur(25px) saturate(160%);
  -webkit-backdrop-filter: blur(25px) saturate(160%);
  transition: all 0.3s ease;
}

.about-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #00b8b8;
  border-radius: 2px;
}

.about-text:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.intro-text {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #dddddd;
}

/* (The rest remains unchanged) */

/* (The rest remains unchanged) */

/* Booking Form */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

form label {
  margin: 10px 0 5px;
  font-weight: 500;
}

form input,
form select,
form button {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

form button {
  background-color: #003366;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

form button:hover {
  background-color: #00509e;
}

/* Social Icons */
.social-icons {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

/* Scroll Down Animation */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  position: relative;
}

.scroll-down span::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

/* Footer */
.footer {
  background: #003366;
  color: #ffffff;
  text-align: center;
  padding: 30px 20px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-content p {
  margin: 12px 0;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.moving-banner {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 25px 0;
  margin: 0;
  z-index: 1000;
  width: 100%;
}

.moving-banner p {
  position: absolute;
  white-space: nowrap;
  animation: scroll-text 15s linear infinite;
  left: 100%;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Admin Login & Dashboard */
.login-container {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.login-container h2 {
  margin-bottom: 20px;
  color: #003366;
  text-align: center;
}

.login-container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-container button {
  background-color: #003366;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.login-container .error {
  color: red;
  margin-top: 10px;
  text-align: center;
}

.admin-container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.admin-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.admin-container th,
.admin-container td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.admin-container th {
  background-color: #003366;
  color: white;
}

/* Background image & glassmorphism only for #adminBody wrapper 
#adminBody {
  background: url('img/admin-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  padding: 40px 0;
  font-family: 'Segoe UI', sans-serif;
}
*/
/* Glassmorphism effect for admin container 
#adminBody .admin-container {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: #003366;
}

*/

/* Responsive Enhancements */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-overlay {
    width: 100%;
    padding: 20px;
  }

  .square-profile {
    width: 100%;
    height: auto;
  }

  .section {
    padding: 30px 10px;
  }

  .footer {
    padding: 20px 10px;
  }

  #darkToggle {
    top: 70px;
    right: 10px;
  }

  .moving-banner {
    font-size: 0.9rem;
    padding: 15px 0;
  }
}

/* Gallery Grid Section */
.gallery-grid-section {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 40px 20px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-grid-section h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover,
.gallery-item video:hover {
  transform: scale(1.03);
}

.skf-float-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skf-float-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.skf-float-bubble img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  object-fit: cover;
}

/* === Full-Width Background Wrapper for Booking (and About if needed) === */
.full-bg-section {
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: scroll;
  display: block;
}

.bg-booking {
  background-image: url('img/background section.png');
}

.bg-about {
  background-image: url('img/background section.jpg');
}

.full-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 1;
}

.full-bg-section > * {
  position: relative;
  z-index: 2;
}


/* Enhanced Marquee Band */
.marquee-band {
  background: linear-gradient(to right, #555, #999);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  padding-left: 100%; /* start fully outside */
}

@keyframes marquee-scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* Optional: Make text smaller and lighter on mobile */
@media (max-width: 768px) {
  .marquee-text {
    font-size: 0.95rem;
  }
}

