/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(to right, #eef2f3, #dfe9f3);
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 8px 10%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* HEADER (ENHANCED SIZE + GLASS EFFECT) */
header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* NAVBAR BIGGER */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 60px;
  border-radius: 50%;
  transition: 0.3s;
}

.logo img:hover {
  transform: rotate(10deg) scale(1.1);
}

.logo h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0a3d62;
}

/* NAV MENU */
.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 30px;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* UNDERLINE HOVER EFFECT */
.navbar ul li a::after {
  content: "";
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.navbar ul li a:hover::after {
  width: 100%;
}

/* HERO (MORE ATTRACTIVE) */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://via.placeholder.com/1400x600');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 180px 20px;
  animation: fadeIn 2s ease;
}

.hero h1 {
  font-size: 55px;
  font-weight: 700;
}

.hero p {
  margin-top: 15px;
  font-size: 20px;
  opacity: 0.9;
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* SECTION */
.section {
  padding: 70px 10%;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #0a3d62;
}

/* CARDS (GLASS EFFECT) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

.card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  background: linear-gradient(135deg, #74ebd5, #acb6e5);
  color: white;
}

/* FACILITY BOX */
.facility-box i {
  font-size: 30px;
}

/* GALLERY */
.gallery img {
  border-radius: 12px;
  transition: 0.4s;
}

.gallery img:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* FORM */
form input, form textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

form input:focus, form textarea:focus {
  border-color: #0072ff;
  outline: none;
  box-shadow: 0 0 10px rgba(0,114,255,0.2);
}

/* BUTTON */
button {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 50px 10%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
}

footer h3 {
  margin-bottom: 15px;
}

footer ul li a:hover {
  color: #00c6ff;
}

/* SOCIAL ICONS */
.social i {
  font-size: 20px;
  margin-right: 10px;
  transition: 0.3s;
}

.social i:hover {
  transform: scale(1.3);
  color: #00c6ff;
}

/* MOBILE */
.menu-toggle {
  display: none;
}

@media(max-width:768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    right: 10%;
    top: 80px;
    padding: 15px;
    border-radius: 10px;
  }

  .navbar ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 22px;
  }

  .hero h1 {
    font-size: 35px;
  }
}