
.scroll-to-top {
  
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #ffffffcc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
}

.scroll-to-top img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #C8B8D7;
  transform: scale(1.1);
}

.scroll-to-top:hover img {
  transform: scale(1.1);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f5f7fa;
  color: #4E5B73;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

                                                  /* Wrapper to push footer down */
.page-wrapper {
  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}

                                                       /* Header */
header {
  background-color: #4E5B73;
  padding: 10px 40px;
  
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  transition: top 0.4s ease;
  color: #FFFFFF;
}

header.hidden {
  top: -100px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.logo-container img {
  height: 55px;
  background: transparent;
}

.contact-info {
  font-size: 0.9rem;
  color: #FFFFFF;
  margin-top: 5px;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding-top: 10px;
}

nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

nav a,
.dropbtn {
  display: inline-block;
  background-color: #B7CDC2;
  color: #4E5B73;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  min-width: 150px;
  text-align: center;
}

nav a:hover,
.dropbtn:hover {
  background-color: #C8B8D7;
  color: #FFFFFF;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  min-width: 150px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  z-index: 999;
  top: 110%;
  left: 0;
}

.dropdown-content a {
  color: #4E5B73;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
  background-color: #fff;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #C8B8D7;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
  padding-left: 20px;
}

.social-links a {
  color: white;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #C8B8D7;
}


                                        /* Section Padding */
.section, .appointment-section {
  padding-top: 140px;
  text-align: center;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #4E5B73;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
}

                                      /* CTA Buttons */
.cta {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  background-color: #B7CDC2;
  color: #4E5B73;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta:hover {
  background-color: #C8B8D7;
  color: #fff;
}

                                 /* ====================== FOOTER ====================== */
footer {
  background-color: #4E5B73;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

footer img {
  height: 50px;
  
}

.footer-top-arrow img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.footer-top-arrow img:hover {
  transform: scale(1.1);
}

.footer-top-arrow {
  display: inline-block;
  margin-top: 10px;
}

                                                    /* Floating Dandelion Scroll-to-Top */


.scroll-to-top.show {
  opacity: 1;
}

.scroll-to-top:hover {
  background-color: #C8B8D7;
  transform: scale(1.1);
}

.scroll-to-top img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover img {
  transform: scale(1.1);
}


.scroll-to-top img {
  width: 30px;
  height: 30px;
}

.scroll-to-top.show {
  opacity: 1;
}


                                                                                    /* Tabs */
.tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 0;
}

.tab-btn, .tab-link {
  background-color: #B7CDC2;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  min-width: 160px;
  text-align: center;
  flex-shrink: 0;
}

.tab-btn:hover,
.tab-btn.active,
.tab-link:hover,
.tab-link.active {
  background-color: #C8B8D7;
  color: #4E5B73;
}

                                                                              /* Service Content */
#service-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  border: 1px solid #B7CDC2;
  padding: 20px;
  border-radius: 10px;
  background-color: #eef3f1;
}

#service-image {
  width: 300px;
  height: auto;
  border-radius: 8px;
}

#service-text {
  max-width: 500px;
  text-align: left;
}

#service-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

#service-text p {
  font-size: 16px;
  color: #333;
}

                                                                               /* Booking Form */
form {
  max-width: 600px;
  margin: auto;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #4E5B73;
}

form input,
form select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

form .cta {
  margin-top: 25px;
  width: 100%;
  font-size: 16px;
  padding: 14px;
  background-color: #B7CDC2;
  color: #4E5B73;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form .cta:hover {
  background-color: #C8B8D7;
  color: #fff;
}


                                                                          /* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

                                                                        /* Contact Box */
.contact-box {
  max-width: 600px;
  margin: auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
  color: #4E5B73;
}

.contact-box p {
  margin-bottom: 15px;
}

.contact-box a {
  color: #4E5B73;
  text-decoration: underline;
}

.contact-box a:hover {
  color: #C8B8D7;
}
.contact-box {
  padding-top: 140px;
  text-align: center;
}
@media (max-width: 600px) {
  .section, .appointment-section, .contact-box {
    padding-top: 160px;
  }
}

}
                                                                /* About Page Enhancements */
.about-section .container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h2 {
  font-size: 2.5rem;
  color: #4E5B73;
}

.subheading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #B7CDC2;
  margin: 10px 0;
}

.intro {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #333;
}

.about-block {
  margin-bottom: 35px;
}

.about-block h3 {
  font-size: 1.5rem;
  color: #4E5B73;
  margin-bottom: 10px;
}

.about-block p {
  font-size: 1rem;
  color: #444;
}

.about-list {
  list-style: disc;
  padding-left: 20px;
  color: #4E5B73;
}

.identity-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.identity-box h4 {
  font-size: 1.1rem;
  color: #4E5B73;
  margin-bottom: 5px;
}

.identity-box p {
  font-size: 0.95rem;
  color: #333;
}

@media (min-width: 768px) {
  .identity-boxes {
    flex-direction: row;
    justify-content: space-between;
  }

  .identity-box {
    width: 32%;
  }
}
.service-category {
  margin-bottom: 40px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-category h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #4E5B73;
  border-bottom: 2px solid #B7CDC2;
  padding-bottom: 5px;
}

.service-list {
  list-style: disc;
  padding-left: 20px;
  color: #333;
}

.service-list li {
  margin-bottom: 8px;
}
                                                                 /* dentistry Page styling*/
																 
#service .service-sm-heading {
  color: #B7CDC2;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

#service .service-main {
  font-size: 28px;
  color: #4E5B73;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.service-box {
  background-color: #ffffff;
  border: 1px solid #B7CDC2;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease;
}
.service-box:hover {
  transform: translateY(-5px);
}

}

.teeth-icon {
  font-size: 36px;
  color: #B7CDC2;
  margin-bottom: 15px;
}

.service-inner-head {
  font-size: 20px;
  color: #4E5B73;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-inner-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.service_btn a {
  background-color: #B7CDC2;
  color: #4E5B73;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.service_btn a:hover {
  background-color: #C8B8D7;
  color: white;
}

}
.service-box i {
  font-size: 36px;
  color: #4E5B73;
  margin-bottom: 15px;
}
.service-box h4 {
  font-size: 20px;
  color: #4E5B73;
  margin-bottom: 10px;
}
.service-box p {
  font-size: 15px;
  color: #4E5B73;
  margin-bottom: 20px;
}
                                                              /* HERO SLIDER STYLING */
.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.slides {
  width: 500%;
  height: 100%;
  display: flex;
  transition: 0.6s;
}

.slide {
  width: 100%;
  height: 100vh;
  position: relative;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-text .cta {
  background-color: #B7CDC2;
  color: #4E5B73;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.hero-text .cta:hover {
  background-color: #C8B8D7;
  color: white;
}

.hero-slider-vertical {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
}

.hero-image-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-image-track {
  display: flex;
  flex-direction: column;
  animation: verticalScroll 40s linear infinite;
  height: calc(100vh * 22); /* 22 images */
}

.hero-image-track img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

@keyframes verticalScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-2100%); } /* 100vh * 21 */
}
.hero-slider-vertical {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image-track {
  height: 400%;
  animation: verticalScroll 24s infinite ease-in-out;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

@keyframes verticalScroll {
  0% { transform: translateY(0); }
  25% { transform: translateY(-100vh); }
  50% { transform: translateY(-200vh); }
  75% { transform: translateY(-300vh); }
  100% { transform: translateY(0); }
}

/* Make sure hero section appears behind header */
header {
  
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: #4E5B73;
}


                                                /* Hide default radio buttons */
input[type="radio"] {
  display: none;
}

.nav-manual {
  position: absolute;
  width: 100%;
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.manual-btn {
  border: 2px solid #fff;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.manual-btn:hover {
  background-color: #fff;
}

#slide1:checked ~ .first { margin-left: 0; }
#slide2:checked ~ .first { margin-left: -100%; }
#slide3:checked ~ .first { margin-left: -200%; }

/* Optional Auto Nav */
.nav-auto {
  display: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
}
.hero-wrapper {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .overlay {
  background-color: rgba(0, 0, 0, 0.45);
  color: white;
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
}
.hero .overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero .overlay p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.cta {
  background-color: #B7CDC2;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta:hover {
  background-color: #4E5B73;
}

.scroll-to-top img {
  width: 40px;
  height: 40px;
}
.hero-1 { background-image: url('images/main room 1.jpg'); }
.hero-2 { background-image: url('images/main room 5.jpg'); }
.hero-3 { background-image: url('images/main room 2.jpg'); }
.hero-4 { background-image: url('images/patient 2.jpg'); }
.hero-5 { background-image: url('images/sitting room 1.jpg'); }
@media screen and (max-width: 768px) {
  .hero .overlay h1 {
    font-size: 1.8rem;
  }
  .hero .overlay p {
    font-size: 1rem;
  }
}
.scroll-insert {
  padding: 80px 40px;
  background-color: #f5f7fa;
  text-align: center;
}

.scroll-insert h2 {
  font-size: 2.2rem;
  color: #4E5B73;
  margin-bottom: 20px;
}

.insert-subtext {
  color: #666;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Staff Section */
.staff-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.staff-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  max-width: 220px;
  text-align: center;
}

.staff-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.staff-card h3 {
  color: #4E5B73;
  font-size: 18px;
  margin-bottom: 5px;
}

.staff-card p {
  color: #888;
  font-size: 14px;
}









/*****************************************************/

/* BRAND CAROUSEL STYLING */
.brand-carousel {
  overflow: hidden;
  width: 100%;
  background: #ffffffdd;
  padding: 20px 0;
  position: relative;
}

.brand-track {
  display: flex;
  width: fit-content;
  animation: scrollBrands 15s linear infinite; /* Speed of carousel */
  align-items: center;
  gap: 50px;
}

/* Each brand logo */
.brand-carousel img {
  max-height: 60px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Animate left-to-right scroll */
@keyframes scrollBrands {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive improvements */
@media (max-width: 768px) {
  .brand-carousel img {
    max-height: 45px;
  }

  .brand-track {
    gap: 35px;
    animation-duration: 35s;
  }
}



/**********************************************/









html, body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
footer {
  background-color: #4E5B73;
  color: white;
  text-align: center;
  padding: 20px;
}
footer {
  background-color: #4E5B73;
  color: white;
  text-align: center;
  padding: 20px;
}
/* FINALIZED STYLESHEET FOR OPTIONS DENTAL CARE + FACIAL AESTHETICS */

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  background-color: #f5f7fa;
  color: #4E5B73;
  line-height: 1.6;
}
.page-wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer {
  flex-shrink: 0;
  background-color: #4E5B73;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
footer img {
  height: 50px;
}
.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #ffffffcc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-to-top.show {
  opacity: 1;
}
.scroll-to-top img {
  width: 30px;
  height: 30px;
}
.scroll-to-top:hover {
  background-color: #C8B8D7;
  transform: scale(1.1);
}
.scroll-to-top:hover img {
  transform: scale(1.1);
}
/* Staff Cards */
.scroll-insert {
  padding: 80px 40px;
  background-color: #f5f7fa;
  text-align: center;
}
.scroll-insert h2 {
  font-size: 2.2rem;
  color: #4E5B73;
  margin-bottom: 20px;
}
.insert-subtext {
  color: #666;
  font-size: 1rem;
  margin-bottom: 40px;
}
.staff-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.staff-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  max-width: 220px;
  text-align: center;
}
.staff-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.staff-card h3 {
  color: #4E5B73;
  font-size: 18px;
  margin-bottom: 5px;
}
.staff-card p {
  color: #888;
  font-size: 14px;
}

.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #ffffffcc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
}

.scroll-to-top img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #C8B8D7;
  transform: scale(1.1);
}

.scroll-to-top:hover img {
  transform: scale(1.1);
}
body.dentistry-bg {
  background-image: url('../images/main room 5.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services-grid {
  background-color: transparent;
  padding: 60px 20px;
}

.service-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.service-inner-head,
.service-inner-text {
  color: #fff;
}

.service_btn a {
  background-color: #B7CDC2;
  color: #4E5B73;
  border-radius: 5px;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.service_btn a:hover {
  background-color: #C8B8D7;
  color: #fff;
}
                                        /* Aesthetics Page Background */
.aesthetics-bg {
  background-image: url('../images/main room 2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Transparent glass-style service cards */
.services-grid .service-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Semi-transparent icons */
.services-grid .service-box i.teeth-icon {
  opacity: 0.5;
}
/* Appointment Page Background */
.appointment-bg {
  background-image: url('../images/sitting room 1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Semi-transparent glass-style form container */
.appointment-section .container {
  background-color: rgba(255, 255, 255, 0.85); /* Less transparent for readability */
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 700px;
  margin: 80px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
/* CONTACT PAGE HERO */
.contact-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px 60px;
  border-radius: 10px;
  text-align: center;
  color: white;
  max-width: 800px;
}

.contact-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.contact-overlay p {
  font-size: 1.2rem;
}

/* INFO BLOCKS SECTION */
.contact-info-section {
  background-color: #f5f7fa;
  padding: 60px 20px;
}

.contact-info-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.info-box {
  flex: 1;
  min-width: 250px;
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.info-box h3 {
  font-size: 1.4rem;
  color: #4E5B73;
  margin-bottom: 10px;
}

.info-box p {
  color: #4E5B73;
  margin: 5px 0;
}

/* SOCIAL ICON ROW */
.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icons-row a {
  font-size: 20px;
  color: #4E5B73;
  transition: color 0.3s ease;
}

.social-icons-row a:hover {
  color: #C8B8D7;
}

                      /* MAP SECTION */
.map-section {
  width: 100%;
  margin-top: 40px;
}
.map-full-width {
  width: 100%;
  padding: 0;
  margin-top: 40px;
}

.map-full-width iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}


.contact-page {
  background-image: url('../images/main room outisde 2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 80px 40px;
  color: #fff;
}

.contact-glassbox {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-glassbox h2, .contact-glassbox p, .contact-glassbox a {
  color: #fff;
}
/* Glassmorphism Container Style */
.contact-glassbox {
  background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  margin: 20px auto;
  width: 90%;
  max-width: 800px;
  color: #fff; /* white text for contrast */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* Fix text colors */
.contact-glassbox h1,
.contact-glassbox h2,
.contact-glassbox h3,
.contact-glassbox p,
.contact-glassbox a {
  color: #ffffff;
}

/* WhatsApp button contrast tweak */
.contact-glassbox .cta {
  background-color: #B7CDC2;
  color: #2b2b2b;
  padding: 8px 16px;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

/* Contact info layout */
.contact-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Background image stretch for full page */
.contact-page {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}


/*ABOUT PAGE*/


.about-hero {
  background: url("../images/staff 123firi together.jpg") center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.about-quote-overlay {
  background: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
}

.about-grid-section {
  background-color: #f9fafc;
  padding: 60px 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.grid-item {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.grid-item h3 {
  margin-top: 0;
  color: #4E5B73;
}

.grid-item ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
}

.grid-item .icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #B7CDC2;
}

.book-section {
  text-align: center;
}

.book-section .cta {
  padding: 12px 30px;
  background-color: #B7CDC2;
  color: #333;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}
                                                /* Staff Flip Card Animation */
.staff-card.flip-card {
  background: transparent;
  perspective: 1000px;
  width: 240px;
  height: 420px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 20px;
  text-align: center;
}

/* Flip front face */
.flip-front img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Flip back face (bio section) */
.flip-back {
  transform: rotateY(180deg);
  background: #C8B8D7;
  color: #4E5B73;
  padding: 24px;
  overflow-y: auto; /* 🔁 allows scroll if content exceeds height */
}

/* Optional: Smooth scroll bar for flip-back */
.flip-back::-webkit-scrollbar {
  width: 5px;
}
.flip-back::-webkit-scrollbar-thumb {
  background-color: #4E5B73;
  border-radius: 4px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  min-width: 150px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  z-index: 999;
  top: 110%;
  left: 0;
}

.dropdown.open .dropdown-content {
  display: block;
}
.services-header-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px 20px;
  margin: 50px auto 20px;
  border-radius: 12px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.services-header-glass h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.services-header-glass p {
  font-size: 1.1rem;
  color:#333;
}
.services-header-darkbox {
  background-color: rgba(0, 0, 0, 0.5); /* Darker and more visible */
  padding: 50px 35px;
  margin: 60px auto 40px;
  border-radius: 14px;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.services-header-darkbox h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.services-header-darkbox p {
  font-size: 1.2rem;
  font-style: italic; /* Make it italic */
  color: #fff;
}

@media (max-width: 600px) {
  .nav-container nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-container nav a {
    display: block;
    margin: 8px 0;
    width: 100%;
    text-align: left;
    padding-left: 16px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-container img {
    max-width: 180px;
    height: auto;
  }

  .contact-info {
    font-size: 14px;
    padding-top: 8px;
  }

  .social-links {
    padding-top: 8px;
    gap: 10px;
    justify-content: flex-start;
  }

  .scroll-overlay h1 {
    font-size: 1.7rem;
  }

  .scroll-overlay p {
    font-size: 1rem;
  }
}


