* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* navbar */
.navbar {
  position: relative;
  z-index: 10;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  position: relative;
  font-weight: bold;
  font-size: 1.5rem;
  color: #4a4a4a;
}

.navbar-brand::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4a4a4a;
  transition: width 0.3s ease-in-out;
}

.navbar-brand::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4a4a4a;
  transition: width 0.3s ease-in-out;
}

.navbar-brand:hover::before,
.navbar-brand:hover::after {
  width: 0;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.8rem 1rem;
  color: #4a4a4a;
  font-weight: 900;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #4a4a4a;
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link::before {
  top: 0;
  left: 0;
}

.navbar-nav .nav-link::after {
  bottom: 0;
  right: 0;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #ff7f50;
}

@media (max-width: 992px) {
  .navbar {
    padding: 1rem;
  }
}

.language-select {
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
  color: #4a4a4a;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: auto;
  cursor: pointer;
}

.language-select:hover {
  background-color: #ff7f50;
  color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.language-select:focus {
  outline: none;
  border: 2px solid #ff7f50;
}

.language-select::after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #4a4a4a;
  transition: all 3.3s ease-in-out;
}

.language-select:hover::after {
  color: white;
}
/* end */

/* parallex */
.parallax-bg {
  height: 400px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* end */

/* home */
#home {
  height: 100vh;
  background: linear-gradient(135deg, #f7f3e9 20%, #ff7f50 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  color: #4a4a4a;
  text-align: center;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/6.jpg") no-repeat center center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content .btn {
  border: 2px solid #4a4a4a;
  color: #4a4a4a;
  font-weight: bold;
}

.hero-content .btn:hover {
  background-color: #ff7f50;
  color: #f7f3e9;
}

@media (max-width: 768px) {
  #home {
    height: auto;
    padding: 100px 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

.overview .overview-header {
  color: #4a4a4a;
}

.overview .overview-text {
  color: #4a4a4a;
}

/* end */

/* service */
.service_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-top: 45px;
  position: relative;
  margin-bottom: 50px;
}

.service_section .box .img-box {
  position: relative;
  width: 145px;
  height: 145px;
  margin-bottom: -72.5px;
}

.service_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
  border: 5px solid #ff7f50;
}

.service_section .box .detail-box {
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
  color: #4a4a4a;
  padding: 97.5px 25px 25px 25px;
}

.service_section .box .detail-box h5 {
  margin-bottom: 0;
  font-weight: 600;
}

.service_section .box .detail-box p {
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 15px;
}

.service_section .box a {
  display: inline-block;
  padding: 8px 30px;
  background-color: #ff7f50;
  border-radius: 5px;
  border: 1px solid #ff7f50;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.service_section .box a:hover {
  background-color: transparent;
  color: #ff7f50;
}

.blog_section .heading_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* gallery */

.gallery-carousel .card {
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
  border: 1px solid #ff7f50;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-carousel .card img {
  max-height: 180px;
  object-fit: cover;
  width: 100%;
}

.gallery-carousel .card-body {
  padding: 10px;
  text-align: center;
  font-size: 16px;
  color: #4a4a4a;
}

.gallery-carousel::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: rgba(255, 127, 80, 0.3);
  border-radius: 8px 8px 50% 50%;
  z-index: -1;
}

.gallery-carousel .owl-nav {
  margin-top: 35px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.gallery-carousel .owl-nav .owl-prev,
.gallery-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7f50, #ff7f50);
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-carousel .owl-nav .owl-prev::before {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.gallery-carousel .owl-nav .owl-next::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.gallery-carousel .owl-nav .owl-prev:hover,
.gallery-carousel .owl-nav .owl-next:hover {
  background: linear-gradient(135deg, #f7f3e9, #ff7f50);
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

.gallery-carousel .card-body h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 0;
  color: #4a4a4a;
}

.gallery-carousel .card-body p {
  font-size: 14px;
  margin: 5px 0 0;
  color: #4a4a4a;
}

/* end */

/* contact */
.contact-appointment-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
  color: #4a4a4a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-card-3d {
  perspective: 1500px;
}

.card-inner {
  width: 350px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.card-inner:hover {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
}

.card-front {
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
  color: #ffffff;
  text-align: center;
}

.card-back {
  background: rgba(255, 127, 80, 0.7);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-form-advanced,
.appointment-form-advanced {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-form-advanced input,
.contact-form-advanced textarea,
.appointment-form-advanced input {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid #ff7f50;
  border-radius: 10px;
  color: #4a4a4a;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.contact-form-advanced input:focus + label,
.contact-form-advanced textarea:focus + label,
.contact-form-advanced input:not(:placeholder-shown) + label,
.contact-form-advanced textarea:not(:placeholder-shown) + label,
.appointment-form-advanced input:focus + label,
.appointment-form-advanced input:not(:placeholder-shown) + label {
  top: -14px;
  left: 10px;
  font-size: 0.8rem;
  color: #ff7f50;
}

.contact-form-advanced input:focus,
.contact-form-advanced textarea:focus,
.appointment-form-advanced input:focus {
  border-color: #ff7f50;
  box-shadow: 0 0 15px rgba(255, 127, 80, 0.5);
}

.btn-submit-advanced {
  background: linear-gradient(135deg, #ff7f50, #ff7f50);
  padding: 12px 25px;
  color: #ffffff; /* White */
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit-advanced:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #f7f3e9, #ff7f50);
}

.input-group {
  position: relative;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  font-size: 1rem;
  color: rgba(74, 74, 74, 0.7);
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.contact-orb,
.appointment-orb {
  padding: 15px 30px;
  background: linear-gradient(135deg, #f7f3e9, #ff7f50);
  border: none;
  color: #ffffff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-orb:hover,
.appointment-orb:hover {
  background: linear-gradient(135deg, #ff7f50, #ff7f50);
  transform: scale(1.1);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(100%);
}

input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(100%);
}

.contact-forms {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.contact-section {
  width: 48%;
  margin-left: 250px;
}

.appointment-section {
  width: 48%;
  margin-right: 20px;
}

.contact-section h3,
.appointment-section h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #4a4a4a;
  font-weight: bold;
  position: relative;
  margin-right: 130px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-section,
  .appointment-section {
    width: 90%;
    margin: 0 auto 20px auto;
  }

  .contact-card-3d {
    width: 100%;
    height: auto;
  }

  .contact-form-advanced,
  .appointment-form-advanced {
    padding: 10px;
    gap: 15px;
  }

  .btn-submit-advanced {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .contact-section h3,
  .appointment-section h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}


/* end */

/* footer */
.footer-section {
  position: relative;
  padding: 50px 20px;
  color: #4a4a4a;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4a4a4a;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

.footer-nav a {
  text-decoration: none;
  color: #4a4a4a;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  color: #ff7f50;
  transform: scale(1.1);
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  color: #4a4a4a;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #ff7f50;
}

.footer-credits {
  margin-top: 20px;
  text-align: center;
}

.animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 1200px) {
  .logo-text {
    font-size: 2rem;
  }

  .footer-nav ul {
    gap: 15px;
  }

  .footer-nav a {
    font-size: 0.9rem;
  }

  .footer-socials a {
    font-size: 1.25rem;
  }
}

@media (max-width: 992px) {
  .footer-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav a {
    margin: 5px 0;
  }

  .footer-socials {
    margin: 10px 0;
  }

  .footer-credits {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 30px 10px;
  }

  .logo-text {
    font-size: 1.8rem;
  }

  .footer-socials a {
    font-size: 1.1rem;
  }

  .rotating-globe {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .footer-nav a {
    font-size: 0.8rem;
  }

  .footer-socials a {
    font-size: 1rem;
  }

  .rotating-globe {
    width: 60px;
    height: 60px;
  }
}
/* end */
