/* Root Variables for Consistent Color Scheme */
:root {
  --skyblue: #87CEEB;
  --light-skyblue: #B0E2FF;
  --deep-skyblue: #00BFFF;
  --nav-dark: #005f99;
  --nav-light: #E6F7FF;
  --white: #fff;
  --text-dark: #333;
  --text-muted: #666;
}

/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light-skyblue);
  color: var(--text-dark);
}
/* Top info bar */
.top-bar {
  background: linear-gradient(to right, #3bb0d6, #1e5799);
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar .left-info span,
.top-bar .right-info span {
  margin-right: 20px;
}

.top-bar i {
  margin-right: 5px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Header / Navigation */
header {
  background: linear-gradient(to right, var(--skyblue), var(--deep-skyblue));
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  max-height: 80px;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.main-nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  transition: background 0.3s, color 0.3s;
}

.main-nav ul li a:hover {
  background-color: var(--nav-light);
  color: var(--nav-dark);
  border-radius: 5px;
}
/* Hide menu and show toggle button on phones */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    z-index: 1000;
  }

  .main-nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: relative;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--deep-skyblue), var(--skyblue));
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 3rem;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #28a745;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Services Section */
.services {
  background-color: #f9fafb;
  padding: 60px 20px;
  border-radius: 10px;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--deep-skyblue);
  font-size: 2.5rem;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 300px;
}

.service-card h3 {
  margin: 20px 0 10px;
  font-size: 1.5rem;
  color: var(--deep-skyblue);
}

.service-card img {
  max-width: 100px;
  margin-bottom: 20px;
}

.service-card p {
  color: #555;
}

.oral-hygiene-tips {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.oral-hygiene-tips .tip {
  flex: 1 1 30%;
  text-align: center;
}

.oral-hygiene-tips img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .oral-hygiene-tips {
    flex-direction: column;
    align-items: center;
  }

  .oral-hygiene-tips .tip {
    width: 100%;
    max-width: 300px;
  }
}

/* Testimonials Section */
.testimonials {
  background-color: var(--deep-skyblue);
  color: white;
  padding: 60px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.testimonial-card {
  background-color: var(--nav-dark);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  color: #f8f9fa;
}

/* Add Testimonial Form */
.add-testimonial {
  padding: 2rem;
  background-color: var(--nav-light);
  border-radius: 10px;
}

.add-testimonial h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.add-testimonial form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.add-testimonial textarea,
.add-testimonial input {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
}

.add-testimonial button {
  padding: 0.8rem 1.5rem;
  background-color: var(--deep-skyblue);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-testimonial button:hover {
  background-color: var(--nav-dark);
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

footer a {
  color: var(--skyblue);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  text-decoration: underline;
  color: var(--light-skyblue);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .service-cards,
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}



.contact {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-box .icon {
  font-size: 30px;
  color: #17b4a1;
  margin-bottom: 15px;
}

.contact-box h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.contact-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.map-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

