/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0a14;
  color: #eee;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Links */
a { text-decoration: none; transition: 0.3s; }

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(10,10,20,0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%; /* Circle logo */
  border: 2px solid #ff6a00;
}

.logo span {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  background: linear-gradient(45deg, #ff6a00, #ee0979, #ffdd00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 15px rgba(255,150,0,0.5);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #eee;
  font-weight: 500;
}

.nav-links a:hover, .nav-links .active {
  color: #ff6a00;
}

/* Hero Section */
.hero {
  height: 80vh;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,10,20,0.8), rgba(10,10,20,0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeInUp 1s ease forwards;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00c3ff, #ff4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.3rem;
  color: #ddd;
}

.btn {
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  background: linear-gradient(90deg, #00c3ff, #ff4dff);
  color: #fff;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,77,255,0.5);
}

/* About Section */
.about-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 2rem;
}

.about-preview img {
  max-width: 400px;
  border-radius: 20px;
}

.about-preview .text {
  max-width: 500px;
}

.about-preview h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(45deg, #00c3ff, #ff4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-preview p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Services Section */
.services-preview {
  padding: 4rem 2rem;
  text-align: center;
}

.services-preview h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #00c3ff, #ff4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(15px);
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 50px rgba(0,195,255,0.3);
}

.service-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #00c3ff, #ff4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card p {
  color: #ccc;
  font-size: 1rem;
}

/* Appointment Section */
.appointment-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  background: #0d1b2a; /* dark blue background */
}

.appointment-section .container {
  width: 100%;
  max-width: 700px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.appointment-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #00c3ff, #ff4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 16px;
  outline: none;
  box-shadow: 0 0 10px rgba(0,195,255,0.2);
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,195,255,0.5);
}

textarea {
  min-height: 120px;
  resize: none;
}

/* Footer */
footer {
  background: #0a0a14;
  padding: 2rem 0;
  text-align: center;
  color: #aaa;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin-top: 0.5rem;
}

.footer-links a {
  color: #aaa;
}

.footer-links a:hover {
  color: #00c3ff;
}

footer .socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 22px;
  transition: 0.3s;
}

footer .socials a:hover {
  color: #00c3ff;
  transform: scale(1.3);
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media(max-width:768px){
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .services-preview h2,
  .appointment-section h2 { font-size: 1.5rem; }
  .about-preview { flex-direction: column; text-align: center; }
  .about-preview img,
  .about-preview .text { max-width: 100%; }
}
