background-image: linear-gradient(0deg, #00453b 1%, rgba(0, 69, 59, 0.95) 50%, rgba(0, 69, 59, 0.9) 100%);
  animation: gradientShift 15s ease infinite;
}

/* ======= Premium Fancybox Gallery ======= */
.fancybox__container {
  --fancybox-thumbs-border-radius: 50%;
  --fancybox-thumbs-ratio: 1;
  --fancybox-thumbs-width: 70px;
  --fancybox-thumbs-height: 70px;
  --fancybox-accent-color: var(--main-color);
}

.fancybox__container .fancybox__thumbs {
  padding-bottom: 30px;
}

.fancybox__thumbs .carousel__slide:not(:last-child) {
  margin-right: 10px;
}

[data-fancybox] {
  cursor: pointer;
  transition: var(--transition-smooth);
}

[data-fancybox]:hover {
  transform: scale(1.05);
}

/* ======= Premium Gallery Area */
.gallery-area {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-image: url(../img/slider/texture.webp);
  background-attachment: fixed;
}

.gallery-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 69, 59, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-item {
  position: relative;
  margin: 10px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 30px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 69, 59, 0.2);
}

.gallery-item img {
  border-radius: 25px;
  display: inline-block;
  height: 300px;
  object-fit: cover;
  width: 100%;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item .photo-gallery {
  display: block;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.gallery-item svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 50px;
  color: var(--main-color-three);
  transition: var(--transition-bounce);
  opacity: 0;
}

.gallery-item:hover svg {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}

.gallery-item:hover img {
  filter: brightness(0.5);
  transform: scale(1.1) rotate(2deg);
}

.more-btn {
  margin-top: 50px !important;
}

a.more {
  padding: 0 40px;
  background: transparent;
  border: 0;
  color: var(--main-color-two);
  position: relative;
  font-size: 18px;
  font-weight: 700;
  transition: var(--transition-smooth);
  display: inline-block;
}

a.more::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-two) 100%);
  border-radius: 100px;
  z-index: -1;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 5px 20px rgba(0, 69, 59, 0.3);
}

a.more:hover::after {
  width: 100%;
}

a.more:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* ======= Premium Why Choose Section ======= */
.why-choose {
  position: relative;
  z-index: 9;
  padding: 80px 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.why-choose .section-title p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.why-choose .card {
  border: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  margin-bottom: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 30px;
  margin: 15px 20px;
  transition: var(--transition-bounce);
  border: 2px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: scaleIn 0.8s ease forwards;
}

.why-choose .card:nth-child(1) {
  animation-delay: 0.2s;
}

.why-choose .card:nth-child(2) {
  animation-delay: 0.4s;
}

.why-choose .card:nth-child(3) {
  animation-delay: 0.6s;
}

.why-choose .card:nth-child(4) {
  animation-delay: 0.8s;
}

.why-choose .card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.why-choose .card .card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 20px;
}

.why-choose .card .card-img img {
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.why-choose .card .card-img img:hover {
  transform: scale(1.15) rotate(3deg);
  filter: brightness(1.1);
}

.why-choose .card .card-body h5 {
  color: var(--main-color-two);
  font-size: 28px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.why-choose .card .card-body p {
  color: var(--main-color);
  font-size: 18px;
  line-height: 1.7;
}

.why-choose.doctor .card .card-img {
  height: auto;
}

.why-choose.doctor .card .card-img img {
  height: 100px;
  width: 100px;
}

.why-choose.package,
.why-choose.package::before {
  background-image: none;
}

.why-choose.package .card {
  margin-top: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  background: #fff;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 0;
}

.why-choose.package .card.med {
  margin-top: 0 !important;
}

.why-choose.package .card .card-header {
  text-align: center;
  font-size: 35px;
  color: var(--main-color-two);
  background-color: #fff;
  border-radius: 30px 30px 0 0;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  padding: 25px;
}

.why-choose.package .card .card-body {
  text-align: center;
  padding: 30px;
}

.why-choose.package .card .card-body p {
  font-size: 21px;
  color: #777;
}

.why-choose.package .card .card-body ul li {
  justify-content: center;
}

.why-choose.package .card .card-body ul li .text p {
  color: #010101 !important;
}

.why-choose.package .card:hover {
  transform: translateY(-20px);
  box-shadow: 0 35px 80px rgba(0, 69, 59, 0.2);
}

.why-choose.package .card .card-body h3 {
  color: var(--main-color) !important;
  font-family: 'Playfair Display', serif;
}

.why-choose.package .card:hover .card-body ul li .text p {
  color: var(--main-color-two) !important;
}

p.description.med {
  color: #eee;
  font-size: 20px;
  line-height: 1.7;
}

/* ======= Premium Page Header ======= */
.page-header {
  position: relative;
  display: block;
  padding: 180px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 10s ease;
}

.page-header:hover .page-header__bg {
  transform: scale(1.1);
}

.page-header__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 69, 59, 0.6) 100%);
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 15;
  animation: fadeInUp 1s ease;
}

.page-header__inner h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.thm-breadcrumb {
  position: relative;
  display: block;
  padding: 0;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--main-color-two);
  font-size: 16px;
  text-transform: capitalize;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.thm-breadcrumb li + li {
  margin-left: 5px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  transition: var(--transition-smooth);
}

.thm-breadcrumb li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--main-color-two);
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.thm-breadcrumb li:hover a::after {
  width: 100%;
}

.thm-breadcrumb li:hover a {
  color: var(--main-color-two);
}

.thm-breadcrumb li span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 5px;
}

/* ======= Premium More Cases ======= */
.more-cases {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.more-cases .table {
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.more-cases .table thead tr th {
  color: var(--main-color-two);
  font-size: 16px;
  font-weight: 700;
  padding: 20px;
  background: linear-gradient(135deg, rgba(0, 69, 59, 0.05) 0%, rgba(218, 182, 93, 0.05) 100%);
}

.more-cases .table tbody tr {
  transition: var(--transition-smooth);
}

.more-cases .table tbody tr:hover {
  background: rgba(0, 69, 59, 0.02);
  transform: scale(1.01);
}

.more-cases .table tbody tr th {
  text-align: left;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  padding: 18px;
}

.more-cases .table tbody tr td {
  padding: 18px;
}

.more-cases .table tbody tr td .dot {
  width: 12px;
  height: 12px;
  background-color: var(--bs-gray-500);
  margin: auto;
  margin-top: 8px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.more-cases .table tbody tr:hover td .dot {
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0, 69, 59, 0.5);
}

.more-cases .table tbody tr td img {
  width: 28px;
  transition: var(--transition-smooth);
}

.more-cases .table tbody tr:hover td img {
  transform: scale(1.2);
}

/* ======= Premium Aligner Shape ======= */
.aligner-shape {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.aligner-shape.home {
  padding-top: 150px;
  background: #fbfbfb;
}

.aligner-shape.home .card {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: var(--transition-bounce);
}

.aligner-shape.home .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.aligner-shape.home .card .card-body p {
  margin-bottom: 5px;
  color: #999;
}

.aligner-shape.home .card .card-body span {
  text-decoration: underline;
  color: var(--main-color-two);
  font-weight: 600;
}

.aligner-shape .card {
  border: none;
  margin-bottom: 50px;
  text-align: center;
  background: transparent;
  transition: var(--transition-smooth);
}

.aligner-shape .card:hover {
  transform: translateY(-5px);
}

.aligner-shape .card .card-img {
  width: 100%;
}

.aligner-shape .card .card-img img {
  width: 75%;
  transition: var(--transition-smooth);
}

.aligner-shape .card:hover .card-img img {
  transform: scale(1.1);
}

.aligner-shape .card .card-body h5 {
  color: var(--main-color);
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.aligner-shape.service {
  background-color: #fff;
}

.aligner-shape ul {
  margin: 0 20px;
  border: 0;
}

.aligner-shape ul li {
  padding: 15px;
  transition: var(--transition-smooth);
  border-radius: 15px;
}

.aligner-shape ul li a {
  font-size: 22px !important;
  transition: var(--transition-smooth);
  font-weight: 600;
}

.aligner-shape ul li.active,
.aligner-shape ul li:hover {
  background: linear-gradient(135deg, var(--main-color) 0%, #003329 100%);
  border-color: var(--main-color);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 69, 59, 0.3);
}

.aligner-shape ul li.active a,
.aligner-shape ul li:hover a {
  color: var(--main-color-two) !important;
}

.aligner-shape .content-slider {
  margin-top: 50px;
}

.aligner-shape .content-slider .content h5 {
  color: var(--main-color-two);
  font-size: 40px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.aligner-shape .content-slider .content ul {
  padding: 0;
}

.aligner-shape .content-slider .content ul li {
  padding: 10px 0;
  font-size: 20px;
}

.aligner-shape .content-slider .content ul li:hover {
  background-color: transparent;
  border-color: transparent;
}

.aligner-shape .content-slider .content ul li span {
  font-weight: 800;
  color: #333;
}

.aligner-shape .content-slider .slick-prev {
  left: inherit;
  position: absolute;
  top: -50px;
  right: 0;
}

.aligner-shape .content-slider .slick-next {
  position: absolute;
  top: -50px;
  left: 0;
}

/* ======= Premium FAQ Section ======= */
.faq-section {
  padding: 80px 0;
}

.faq-section .accordion .accordion-item {
  margin-bottom: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  border: 2px solid rgba(0, 69, 59, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-section .accordion .accordion-item:hover {
  box-shadow: 0 15px 50px rgba(0, 69, 59, 0.15);
  transform: translateY(-5px);
}

.faq-section .accordion .accordion-item .accordion-header {
  border-radius: 20px;
}

.faq-section .accordion .accordion-item .accordion-header button {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: var(--main-color-two);
  font-size: 22px;
  border-radius: 20px;
  font-weight: 600;
  padding: 20px 25px;
  transition: var(--transition-smooth);
}

.faq-section .accordion .accordion-item .accordion-header button:not(.collapsed) {
  background: linear-gradient(135deg, var(--main-color) 0%, #003329 100%);
  color: var(--main-color-two);
  box-shadow: 0 10px 30px rgba(0, 69, 59, 0.2);
}

.faq-section .accordion .accordion-item .accordion-collapse .accordion-body {
  background-color: #fff;
  color: var(--main-color);
  font-size: 16px;
  padding: 25px;
  line-height: 1.8;
}

/* ======= Premium Blog Section ======= */
.blog-section {
  padding: 80px 0;
}

.blog-section .card {
  border: 0;
  border-radius: 30px;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: var(--transition-bounce);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.blog-section .card:nth-child(1) {
  animation-delay: 0.2s;
}

.blog-section .card:nth-child(2) {
  animation-delay: 0.4s;
}

.blog-section .card:nth-child(3) {
  animation-delay: 0.6s;
}

.blog-section .card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(0, 69, 59, 0.15);
}

.blog-section .card .card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}

.blog-section .card .card-img img {
  border-radius: 30px 30px 0 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.blog-section .card .card-img img:hover {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1);
}

.blog-section .card .card-body {
  padding: 30px;
}

.blog-section .card .card-body h5 {
  color: var(--main-color);
  font-size: 28px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  transition: var(--transition-smooth);
}

.blog-section .card:hover .card-body h5 {
  color: var(--main-color-two);
}

.blog-section .card .card-body p {
  color: #999;
  font-size: 18px;
  line-height: 1.7;
}

.blog-section .card .card-body h6 {
  color: var(--main-color-two);
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition-smooth);
  position: relative;
}

.blog-section .card .card-body h6::after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition-smooth);
}

.blog-section .card .card-body h6:hover {
  transform: translateX(10px);
}

.blog-section.practice .card .card-img {
  height: 450px;
}

.blog-section.practice .card .card-img img {
  width: 100%;
  object-fit: cover;
}

/* ======= Premium Blog Details ======= */
.blog-details {
  padding: 80px 0 0;
}

.blog-details .content .blog-body h2 {
  color: var(--main-color-two);
  font-size: 50px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 25px;
}

.blog-details .content .blog-body p {
  font-size: 20px;
  line-height: 1.8;
  color: #4a4a4a;
}

.blog-details .content .blog-body a {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--main-color) 0%, #003329 100%);
  color: var(--main-color-two);
  padding: 14px 35px;
  border-radius: 50px;
  width: max-content;
  transition: var(--transition-bounce);
  box-shadow: 0 5px 20px rgba(0, 69, 59, 0.3);
}

.blog-details .content .blog-body a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 69, 59, 0.4);
}

.blog-details .med-content {
  padding-top: 30px;
}

.blog-details .med-content .content {
  margin: 25px 0;
}

.blog-details .med-content .content h3 {
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 35px;
  font-family: 'Playfair Display', serif;
}

.blog-details .med-content .content h4 {
  color: var(--main-color-two);
  font-size: 30px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.blog-details .med-content .content ul {
  list-style: none;
  padding-left: 0;
}

.blog-details .med-content .content ul li {
  font-size: 18px;
  line-height: 1.8;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.blog-details .med-content .content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--main-color-two);
  font-weight: 700;
  font-size: 20px;
}

.blog-details .med-content .content p {
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.8;
}

.blog-details .med-content .faq-section .accordion .accordion-item .accordion-body ul {
  list-style: disc;
  font-size: 20px;
  font-weight: 700;
  padding-left: 25px;
}

/* ======= Premium Slick Arrows ======= */
.slick-arrow {
  position: relative;
  color: #fff;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.slick-prev {
  position: absolute;
  top: -50px;
  left: 50px;
}

.slick-prev::before {
  content: "\f061";
  font-family: 'FontAwesome';
  color: var(--main-color);
  visibility: visible;
  border: 2px solid var(--main-color);
  padding: 15px;
  border-radius: 50%;
  transition: var(--transition-bounce);
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 20px;
  text-align: center;
}

.slick-prev:hover::before {
  background: var(--main-color);
  color: var(--main-color-two);
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 69, 59, 0.3);
}

.slick-next {
  position: absolute;
  top: -50px;
}

.slick-next::before {
  content: "\f060";
  font-family: 'FontAwesome';
  color: var(--main-color);
  visibility: visible;
  border: 2px solid var(--main-color);
  padding: 15px;
  border-radius: 50%;
  transition: var(--transition-bounce);
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 20px;
  text-align: center;
}

.slick-next:hover::before {
  background: var(--main-color);
  color: var(--main-color-two);
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 69, 59, 0.3);
}

/* ======= Premium Contact Section ======= */
.contact-section {
  padding: 80px 0;
}

.contact-form form button.btn-dark {
  padding: 14px 35px;
  color: #fff;
  background: linear-gradient(135deg, var(--main-color) 0%, #003329 100%);
  border-radius: 50px;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  border: 0;
  transition: var(--transition-bounce);
  box-shadow: 0 5px 20px rgba(0, 69, 59, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form form button.btn-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--main-color-two) 0%, var(--main-color) 100%);
  transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

.contact-form form button.btn-dark:hover::before {
  left: 0;
}

.contact-form form button.btn-dark:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(218, 182, 93, 0.4);
}

.find-doctor {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-form form {
  padding: 40px 30px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 25px;
  border: 2px solid rgba(0, 69, 59, 0.05);
}

.select2-container--default .select2-selection--single {
  border-radius: 15px;
  border: 2px solid rgba(0, 69, 59, 0.15);
  height: 52px;
  transition: var(--transition-smooth);
}

.select2-container--default .select2-selection--single:hover {
  border-color: var(--main-color-two);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 52px;
  padding: 0px 24px;
  font-weight: 500;
}

.select2-container {
  margin-bottom: 1rem !important;
  max-width: 100%;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-two) 100%);
  color: white;
}

/* ======= Premium Product Section ======= */
.product {
  padding-bottom: 80px;
}

.product-img {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 69, 59, 0.1);
  transition: var(--transition-smooth);
}

.product-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 69, 59, 0.2);
}

.product-img img {
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.product-img:hover img {
  transform: scale(1.1);
}

.form-check-input:checked {
  background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-two) 100%);
  border-color: var(--main-color);
}

.form-check label {
  line-height: 32px;
  margin: 0 10px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-check label:hover {
  color: var(--main-color-two);
}

.form-check-input {
  width: 2em;
  height: 2em;
  border-color: rgba(0, 69, 59, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-check-input:hover {
  border-color: var(--main-color);
  transform: scale(1.1);
}

.desc {
  position: relative;
}

.desc .content-col {
  width: 350px;
  position: absolute;
  top: 20%;
  transition: var(--transition-smooth);
}

.desc .content-col:hover {
  transform: scale(1.05);
}

.desc .content-col.one {
  left: 60%;
}

.desc .content-col.two {
  right: 30%;
}

.desc .content-col.three {
  top: 80%;
  left: 30%;
}

.desc .content-col .btn.collapsed {
  background: linear-gradient(135deg, var(--main-color) 0%, #003329 100%);
  border-color: var(--main-color);
  color: #fff;
  box-shadow: 0 5px 20px rgba(0, 69, 59, 0.3);
}

.desc .content-col .btn {
  transition: var(--transition-bounce);
  background: linear-gradient(135deg, var(--main-color-two) 0%, #e8c66f 100%);
  border-color: var(--main-color-two);
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 50px;
}

.desc .content-col .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(218, 182, 93, 0.4);
}

.desc .content-col .btn svg {
  transform: rotate(45deg);
  transition: var(--transition-smooth);
}

.desc .content-col .btn.collapsed svg {
  transform: rotate(0deg);
}

.desc .content-col .collapse .card-body {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
  content: "\f078";
  font-family: 'FontAwesome';
  background-image: none;
  transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed)::after {
  content: "\f077";
  font-family: 'FontAwesome';
  background-image: none;
  transform: rotate(180deg);
}

/* ======= Premium Terms Section ======= */
.terms {
  padding: 80px 0;
}

.terms .content {
  margin-bottom: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.terms .content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 69, 59, 0.1);
}

.terms .content h3 {
  color: var(--main-color);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.terms .content p,
.terms .content ul li {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.8;
}

/* ======= Premium Doctor Details ======= */
.doctor-details {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.doctor-details .doctor-media {
  padding: 50px 30px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
  transition: var(--transition-smooth);
}

.doctor-details .doctor-media:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 69, 59, 0.12);
}

.doctor-details .content {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-details .content img {
  width: 64px;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.doctor-details .content:hover img {
  transform: scale(1.1) rotate(5deg);
}

.doctor-details .btn-group {
  display: flex;
  gap: 15px;
}

.doctor-details .btn-group .butn-dark {
  border: 2px solid var(--main-color);
  border-radius: 50px;
}

.doctor-details .btn-group .butn-trans {
  margin: 0;
  border-radius: 50px;
}

.doctor-details .case-img {
  text-align: center;
  transition: var(--transition-smooth);
}

.doctor-details .case-img:hover {
  transform: scale(1.05);
}

.doctor-details .case-img img {
  height: 250px;
  border-radius: 20px;
}

.doctor-details .medd {
  margin-top: 70px;
  position: relative;
}

.doctor-details .medd::before {
  content: "";
  position: absolute;
  max-width: 962px;
  height: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  border-bottom: 4px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(270.01deg, rgba(218, 219, 221, 0) 0%, rgba(218, 219, 221, 0.5) 12.33%, #dadbdd 51.91%, rgba(218, 219, 221, 0.5) 87.85%, rgba(218, 219, 221, 0) 100%);
  margin: auto;
}

.doctor-details ul {
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.doctor-details ul li {
  padding: 15px;
  transition: var(--transition-smooth);
  border-radius: 12px;
}

.doctor-details ul li:hover {
  background: rgba(0, 69, 59, 0.03);
  transform: translateX(10px);
}

.doctor-details ul li h5 {
  color: var(--main-color);
  font-size: 22px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.doctor-details ul li p {
  font-size: 16px;
  line-height: 1.7;
}

.doctor-details.profil .content {
  padding: 30px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
}

.doctor-details.profil .doctor-desc {
  padding: 30px;
  background: linear-gradient(135deg, var(--main-color) 0%, #003329 100%);
  box-shadow: 0 15px 50px rgba(0, 69, 59, 0.3);
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 25px;
  transition: var(--transition-smooth);
}

.doctor-details.profil .doctor-desc:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 69, 59, 0.4);
}

.doctor-details.profil .doctor-desc h3 {
  color: var(--main-color-two);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.doctor-details.profil .doctor-desc h5 {
  color: #fff;
  font-weight: 600;
}

.doctor-details.profil .doctor-desc p {
  color: rgba(255, 255, 255, 0.8);
}

/* ======= Premium Cases Gallery ======= */
.cases-gallery {
  padding: 80px 0;
}

.cases-gallery .slick-dots {
  display: none !important;
}

.cases-gallery .main .slider-for img {
  height: 350px;
  margin: auto;
  margin-bottom: 35px;
  border-radius: 25px;
  transition: var(--transition-smooth);
}

.cases-gallery .main .slider-for img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 69, 59, 0.2);
}

.cases-gallery .main .slider-nav img {
  height: 200px;
  object-fit: cover;
  width: 95%;
  border-radius: 20px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.cases-gallery .main .slider-nav img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 69, 59, 0.2);
}

/* ======= Premium Social Section ======= */
.social-sec {
  padding: 0;
  z-index: 10000;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  list-style: none;
  position: fixed;
  bottom: 10rem;
  left: 0;
  transform: translate(-100%, 100%);
}

.slick-arrow {
  display: none !important;
}

.social-sec .Icon {
  position: relative;
  padding: 15px;
  margin: 0;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition-bounce);
  background: linear-gradient(135deg, var(--main-color-two) 0%, #e8c66f 100%);
  margin-bottom: 8px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.dsn-socials {
  padding: 0;
}

.social-sec i {
  color: #fff;
  transition: var(--transition-smooth);
}

.social-sec .Icon:hover {
  transform: translateX(10px) scale(1.1);
  box-shadow: 0 15px 40px rgba(218, 182, 93, 0.4);
}

.social-sec .Icon:hover i {
  color: #fff;
  transform: rotate(360deg);
}

.social-sec .Icon.contact a {
  transform: rotate(90deg);
  width: 130px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.social-sec .Icon:hover span {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.social-sec .Icon:hover a {
  color: #fff;
}

/* ======= Premium Video Section ======= */
.video-section {
  position: relative;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 69, 59, 0.5) 100%);
  z-index: 1;
  animation: gradientShift 10s ease infinite;
}

video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.video-section img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 750px;
  opacity: 0.6;
  z-index: 2;
  transition: var(--transition-smooth);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.video-section img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* ======= Premium Responsive ======= */
@media (max-width: 1200px) {
  h1, .h1 {
    font-size: 42px;
  }
  
  h2, .h2 {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .header .navbar-collapse ul.last li a.btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--main-color);
    box-shadow: 0 5px 20px rgba(0, 69, 59, 0.15);
  }
  
  .header .navbar-collapse ul.last li a.btn:hover {
    background: linear-gradient(135deg, var(--main-color) 0%, #003329 100%);
    color: var(--main-color-two);
  }
}

@media (max-width: 767px) {
  .about {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .video-section img {
    width: 350px;
  }
  
  .page-header__inner h2 {
    font-size: 42px;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .blog-section .card .card-body h5 {
    font-size: 24px;
  }
  
  .why-choose .card {
    margin: 15px 0;
  }
}

@media (max-width: 575px) {
  .page-header__inner h2 {
    font-size: 36px;
  }
  
  .video-section img {
    width: 280px;
  }
  
  .desc .content-col {
    width: 280px;
  }
}

@media (max-width: 450px) {
  .page-header__inner h2 {
    font-size: 30px;
  }
}

/* ======= Premium Service Body ======= */
.service-body {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1.8;
  padding: 25px;
  background: linear-gradient(135deg, rgba(0, 69, 59, 0.03) 0%, transparent 100%);
  border-radius: 20px;
  border-left: 4px solid var(--main-color-two);
  transition: var(--transition-smooth);
}

.service-body:hover {
  background: linear-gradient(135deg, rgba(0, 69, 59, 0.05) 0%, rgba(218, 182, 93, 0.03) 100%);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 69, 59, 0.1);
}

/* ======= Premium Additional Effects ======= */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer-effect {
  animation: shimmer 3s infinite;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  background-size: 1000px 100%;
}

/* Smooth Page Transitions */
.page-transition {
  animation: pageTransition 0.8s ease;
}

@keyframes pageTransition {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium Loading State */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid var(--main-color-two);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Premium Tooltip Enhancement */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  padding: 8px 15px;
  background: var(--main-color);
  color: var(--main-color-two);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

[data-tooltip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* End of Premium CSS */@import url("nice-select.css");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

/*****************************
  Premium Typography
*****************************/
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: 15px;
  color: #4a4a4a;
  overflow-x: hidden;
  line-height: 1.7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RTL Support for Arabic */
body[dir="rtl"] {
  text-align: right;
  direction: rtl;
}

body[dir="ltr"] {
  text-align: left;
  direction: ltr;
}

:root {
  --main-color: #00453b;
  --main-color-two: #dab65d;
  --main-color-three: #fcf49d;
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --shadow-soft: 0 10px 40px rgba(0, 69, 59, 0.08);
  --shadow-hover: 0 20px 60px rgba(0, 69, 59, 0.15);
}

a {
  outline: medium none !important;
  color: var(--main-color);
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
}

a:focus {
  color: var(--main-color);
  text-decoration: none !important;
}

a:hover {
  color: var(--main-color-two);
  text-decoration: none !important;
  transform: translateY(-2px);
}

input {
  outline: medium none !important;
  color: var(--main-color);
  transition: var(--transition-smooth);
}

.border-img {
  border-radius: 25px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.border-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 0px;
  text-transform: capitalize;
  line-height: 1.3;
  letter-spacing: -0.5px;
  transition: var(--transition-smooth);
}

h1 a, .h1 a,
h2 a, .h2 a,
h3 a, .h3 a,
h4 a, .h4 a,
h5 a, .h5 a,
h6 a, .h6 a {
  color: inherit;
}

.container-3 {
  width: 100%;
  max-width: 1508px;
  margin-left: auto;
  margin-right: auto;
  font-size: 11px;
}

section {
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium Fade Animations for Different Elements */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

label {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  transition: var(--transition-smooth);
}

h1, .h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
}

h2, .h2 {
  font-size: 42px;
  font-weight: 700;
}

h3, .h3 {
  font-size: 32px;
  font-weight: 600;
}

h4, .h4 {
  font-size: 26px;
  font-weight: 600;
}

h5, .h5 {
  font-size: 22px;
  font-weight: 600;
}

h6, .h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

p {
  font-weight: 400;
  line-height: 1.8;
  color: #4a4a4a;
  font-size: 15px;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  transition: var(--transition-smooth);
}

img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.section-title {
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RTL/LTR Animation for Section Title */
body[dir="rtl"] .section-title {
  animation: slideInFromRight 0.8s ease 0.2s forwards;
}

body[dir="ltr"] .section-title {
  animation: slideInFromLeft 0.8s ease 0.2s forwards;
}

.section-title p {
  color: var(--main-color-two);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title p::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--main-color-two);
  transition: width 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.section-title:hover p::after {
  width: 100%;
}

.section-title h2 {
  color: var(--main-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title.white h2 {
  color: var(--main-color-two);
}

*::-moz-selection {
  background: var(--main-color);
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--main-color);
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: var(--main-color);
  color: #ffffff;
  text-shadow: none;
}

.container-fluid.container-space {
  padding: 0 100px;
}

.form-control {
  border: 2px solid rgba(0, 69, 59, 0.15);
  border-radius: 15px;
  height: 52px;
  padding: 12px 24px;
  box-shadow: none;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  background-clip: inherit !important;
  transition: var(--transition-smooth);
  font-family: 'Montserrat', sans-serif;
}

.form-control option {
  padding: 12px;
}

.form-control:focus {
  box-shadow: var(--shadow-soft);
  border-color: var(--main-color);
  transform: translateY(-2px);
}

.form-control:hover {
  border-color: var(--main-color-two);
}

.form-control::-moz-placeholder {
  color: #999999;
  font-weight: 400;
}

.form-control::-ms-input-placeholder {
  color: #999999;
  font-weight: 400;
}

.form-control::-webkit-input-placeholder {
  color: #999999;
  font-weight: 400;
}

textarea.form-control {
  height: auto;
  min-height: 120px;
}

form .form-group .input-group-text {
  border: 2px solid var(--main-color);
  border-radius: 0px;
  height: 100%;
  transition: var(--transition-smooth);
}

form .form-group .input-group-text:hover {
  background: var(--main-color);
  color: white;
}

.custom-file {
  height: 52px;
}

.custom-file .custom-file-input {
  height: 52px;
  color: #333333;
  border-radius: 15px;
  border-color: rgba(0, 69, 59, 0.15);
  transition: var(--transition-smooth);
}

.custom-file .custom-file-input:focus {
  box-shadow: var(--shadow-soft);
  border-color: var(--main-color);
}

.custom-file .custom-file-label {
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  border-color: rgba(0, 69, 59, 0.15);
  padding: 16px 90px 16px 24px;
  border-radius: 15px;
  transition: var(--transition-smooth);
}

.custom-file .custom-file-label:after {
  height: 50px;
  padding: 15px 25px;
}

.custom-file-input:focus ~ .custom-file-label {
  box-shadow: var(--shadow-soft);
  border-color: var(--main-color);
}

.input-group-prepend .input-group-text,
.input-group-append .input-group-text {
  width: 50px;
  background: transparent;
  border-color: rgba(0, 69, 59, 0.15);
  box-shadow: none;
  justify-content: center;
  transition: var(--transition-smooth);
}

.custom-control-input:checked ~ .custom-control-label:before {
  background: var(--main-color);
  border-color: var(--main-color);
  transform: scale(1.1);
}

.custom-control-input:not(:disabled):active ~ .custom-control-label:before {
  background: transparent;
  border-color: transparent;
}

.custom-control-input:focus ~ .custom-control-label:before {
  box-shadow: 0 0 0 4px rgba(0, 69, 59, 0.1);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
  border-color: var(--main-color);
}

.custom-control-label:before {
  top: 2px;
  transition: var(--transition-smooth);
}

.custom-control-label:after {
  top: 2px;
  transition: var(--transition-smooth);
}

.custom-checkbox .custom-control-label:before {
  border-radius: 6px;
  border: 2px solid #dfdfdf;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  cursor: pointer;
  user-select: none;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 2px;
  transition: var(--transition-smooth);
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
  transition: var(--transition-smooth);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.back-to-top {
  background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-two) 100%);
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-bounce);
  z-index: 9999;
  border-radius: 15px !important;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  color: #ffffff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-hover);
}

.back-to-top:focus {
  color: #ffffff;
}

.back-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 96%;
  }
  
  .blog-post .blog-post-image img {
    width: 100%;
  }
  
  h1, .h1 {
    font-size: 38px;
  }
  
  h2, .h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  .container {
    max-width: 100%;
  }
  
  .blog-post .blog-post-image img {
    width: 100%;
  }
  
  .order-mob {
    order: -1;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  
  .blog-post .blog-post-image img {
    width: 100% !important;
  }
  
  .section-title {
    margin-bottom: 35px;
  }
}

/*****************************
  Premium Header with Smooth Animations
*****************************/
header {
  position: relative;
}

.main-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(10px);
  z-index: 999;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(218, 182, 93, 0.2);
}

.main-header.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  width: 100%;
  border-bottom: 1px solid rgba(218, 182, 93, 0.3);
  animation: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0s normal forwards 1 running headerSlideDown;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 5px 30px rgba(0, 69, 59, 0.08);
  z-index: 999;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.home-header.main-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 69, 59, 0.05);
}

.home-header.main-header .navbar .navbar-nav .nav-link:hover,
.home-header.main-header .navbar-light .navbar-nav .nav-link.active,
.home-header.main-header .navbar-light .navbar-nav .show > .nav-link {
  color: var(--main-color);
}

.main-header.header-sticky .navbar-nav li > a:hover {
  color: var(--main-color);
}

.header .container-fluid {
  padding: 0 60px;
  align-items: initial;
}

/* Premium Topbar */
.header .topbar {
  background: linear-gradient(135deg, var(--main-color) 0%, #003329 100%);
  padding: 12px 20px;
  transition: var(--transition-smooth);
  opacity: 0;
  animation: fadeIn 0.6s ease 0.1s forwards;
}

.header .topbar a {
  color: #ffffff;
  transition: var(--transition-smooth);
  position: relative;
}

.header .topbar a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--main-color-two);
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body[dir="rtl"] .header .topbar a::after {
  right: 0;
}

body[dir="ltr"] .header .topbar a::after {
  left: 0;
}

.header .topbar a:hover::after {
  width: 100%;
}

.header .topbar a:hover {
  color: var(--main-color-two);
  transform: translateY(-2px);
}

.header .topbar .dropdown {
  opacity: 0;
  animation: scaleIn 0.5s ease 0.3s forwards;
}

body[dir="rtl"] .header .topbar .dropdown {
  margin-left: 20px;
  margin-right: 0;
}

body[dir="ltr"] .header .topbar .dropdown {
  margin-right: 20px;
  margin-left: 0;
}

.header .topbar .dropdown .dropdown-toggle {
  padding: 12px 0;
  font-weight: 500;
}

.header .topbar .dropdown .dropdown-toggle i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.header .topbar .dropdown.show .dropdown-toggle i {
  transform: rotate(180deg);
}

.header .topbar .dropdown .dropdown-menu a {
  color: #333333;
  transition: var(--transition-smooth);
}

.header .topbar .dropdown .dropdown-menu a:hover {
  color: var(--main-color);
  padding-left: 25px;
}

.header .topbar .social {
  display: inline-block;
}

.header .topbar .social ul {
  margin: 0;
}

.header .topbar .social ul li {
  display: inline-block;
  padding: 0 6px;
}

.header .topbar .social ul li a {
  color: #ffffff;
  transition: var(--transition-bounce);
  display: inline-block;
}

.header .topbar .social ul li a:hover {
  color: var(--main-color-two);
  transform: translateY(-3px) rotate(5deg);
}

.header .topbar .login {
  display: inline-block;
}

.header .topbar .login a {
  color: #ffffff;
  font-weight: 500;
}

.header .topbar .login a:hover {
  color: var(--main-color-two);
}

/* Premium Dropdown Menu */
.topbar .dropdown .dropdown-menu {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 15px;
  margin-top: 10px;
  animation: dropdownSlide 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topbar .dropdown .dropdown-menu a {
  font-size: 14px;
  padding: 12px 20px;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.topbar .dropdown .dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(0, 69, 59, 0.1) 0%, rgba(218, 182, 93, 0.1) 100%);
  color: var(--main-color);
  transform: translateX(5px);
}

/* Premium Navbar */
.navbar {
  padding: 15px 0;
  background-color: transparent !important;
}

/* RTL Support for Navbar */
body[dir="rtl"] .navbar .navbar-brand {
  margin-right: 0;
  margin-left: 40px;
}

body[dir="ltr"] .navbar .navbar-brand {
  margin-left: 0;
  margin-right: 40px;
}

/* Logo Animation */
.navbar-brand {
  opacity: 0;
  animation: fadeInRight 0.8s ease 0.2s forwards;
}

body[dir="rtl"] .navbar-brand {
  animation: fadeInLeft 0.8s ease 0.2s forwards;
}

/* Menu Items Animation */
.navbar .navbar-nav {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.4s forwards;
}

.navbar .navbar-nav .nav-item {
  opacity: 0;
  animation: fadeInRight 0.6s ease forwards;
}

body[dir="rtl"] .navbar .navbar-nav .nav-item {
  animation: fadeInLeft 0.6s ease forwards;
}

/* Stagger animation for menu items */
.navbar .navbar-nav .nav-item:nth-child(1) {
  animation-delay: 0.5s;
}

.navbar .navbar-nav .nav-item:nth-child(2) {
  animation-delay: 0.6s;
}

.navbar .navbar-nav .nav-item:nth-child(3) {
  animation-delay: 0.7s;
}

.navbar .navbar-nav .nav-item:nth-child(4) {
  animation-delay: 0.8s;
}

.navbar .navbar-nav .nav-item:nth-child(5) {
  animation-delay: 0.9s;
}

.navbar .navbar-nav .nav-item:nth-child(6) {
  animation-delay: 1s;
}

.navbar .navbar-nav .nav-link {
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  color: var(--main-color-two);
  text-transform: capitalize;
  transition: var(--transition-smooth);
  position: relative;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

.navbar .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--main-color-two) 0%, var(--main-color-three) 100%);
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* RTL/LTR positioning for nav-link underline */
body[dir="rtl"] .navbar .navbar-nav .nav-link::before {
  right: 20px;
}

body[dir="ltr"] .navbar .navbar-nav .nav-link::before {
  left: 20px;
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before,
.navbar-light .navbar-nav .show > .nav-link::before {
  width: calc(100% - 40px);
}

.navbar .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
  transform: translateY(-2px);
}

.navbar .navbar-nav .nav-link svg {
  transition: transform 0.3s ease;
}

body[dir="rtl"] .navbar .navbar-nav .nav-link svg {
  margin: 0 0 0 5px;
}

body[dir="ltr"] .navbar .navbar-nav .nav-link svg {
  margin: 0 5px 0 0;
}

.navbar .navbar-nav .nav-link:hover svg {
  transform: rotate(180deg);
}

/* Premium Dropdown & Mega Menu */
.dropdown-menu {
  z-index: 9999;
}

.navbar-collapse {
  position: relative;
}

.navbar-light {
  color: #ffffff;
  background-color: #f6f6f6;
  border-color: rgba(0, 69, 59, 0.1);
}

.navbar-light .navbar-nav > li > a {
  color: #ffffff;
}

.navbar-light .navbar-nav > .dropdown > a .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.navbar-brand {
  padding: 30px 0px;
  margin-right: 0;
  display: inline-block;
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand img {
  height: 30px;
  transition: var(--transition-smooth);
}

.navbar .navbar-brand {
  color: #ffffff;
  flex: 0 0 180px;
}

.header .navbar-nav > li {
  display: flex;
}

.header .navbar-nav li > a {
  align-items: center;
  display: flex;
  padding: 3px 0px;
  color: #333333;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.header .navbar-nav li > a:hover {
  color: var(--main-color);
  transform: translateX(3px);
}

.header .navbar-nav li > a i {
  margin-right: 8px;
  font-size: 14px;
  font-weight: normal;
  color: var(--main-color);
  transition: var(--transition-smooth);
}

.header .navbar-nav li > a:hover i {
  transform: scale(1.2);
}

.header .add-listing {
  align-self: center;
  flex: 0 0 170px;
  text-align: right;
}

/* Premium Megamenu */
.megamenu {
  padding: 25px 25px;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
}

.megamenu > div > li > ul {
  padding: 0;
  margin: 0;
}

.megamenu > div > li > ul > li {
  list-style: none;
  transition: var(--transition-smooth);
}

.megamenu > div > li > ul > li:hover {
  transform: translateX(5px);
}

.megamenu .card {
  outline: none;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  border-radius: 12px;
}

.megamenu .card:hover,
.megamenu .card:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.megamenu > div > li > ul > li > a {
  display: block;
  padding: 10px 20px;
  clear: both;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  white-space: normal;
  transition: var(--transition-smooth);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.megamenu > div > li > ul > li > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color-two) 100%);
  opacity: 0.1;
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 0;
}

.megamenu > div > li > ul > li > a:hover::before {
  width: 100%;
}

.megamenu > div > li > ul > li > a:hover,
.megamenu > div > li > ul > li > a:focus {
  text-decoration: none;
  color: var(--main-color);
  background-color: transparent;
  padding-left: 30px;
}

.megamenu.disabled > a,
.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
  color: #999;
  opacity: 0.5;
}

.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  cursor: not-allowed;
}

.megamenu.dropdown-header {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.header li > .dropdown-item:focus,
.header li > .dropdown-item:hover {
  color: var(--main-color);
  background: linear-gradient(90deg, rgba(0, 69, 59, 0.05) 0%, transparent 100%);
  transform: translateX(5px);
}

.header .dropdown-item.active,
.header .dropdown-item:active,
.header .dropdown-item:focus,
.header .dropdown-item:hover {
  background: none;
}

.header .dropdown-toggle::after {
  content: none;
}

.header .navbar-collapse {
  align-items: inherit;
  justify-content: space-between !important;
}

.header .navbar-collapse ul.last li a.btn {
  background: linear-gradient(135deg, var(--main-color) 0%, #003329 100%);
  color: #fff;
  text-decoration: none !important;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-bounce);
  box-shadow: 0 5px 15px rgba(0, 69, 59, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header .navbar-collapse ul.last li a.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--main-color-two) 0%, var(--main-color) 100%);
  transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

.header .navbar-collapse ul.last li a.btn:hover::before {
  left: 0;
}

.header .navbar-collapse ul.last li a.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 69, 59, 0.4);
}

.header .navbar-collapse ul.last li a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--main-color-two);
  transition: var(--transition-smooth);
}

.header .navbar-collapse ul.last li a:hover {
  text-decoration-thickness: 2px;
}

.header .megamenu .dropdown-item {
  padding: 0px;
}

.header .navbar .dropdown-menu a.dropdown-item {
  min-width: 180px;
  transition: var(--transition-smooth);
}

.header .navbar .dropdown-menu {
  padding: 20px;
  min-width: 14rem !important;
  border-radius: 15px;
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.header .navbar .dropdown-menu li a i {
  margin-right: auto;
  transition: var(--transition-smooth);
}

.header .navbar .dropdown-menu li a:hover i {
  color: var(--main-color-two);
  transform: scale(1.2) rotate(10deg);
}

.navbar .dropdown > .dropdown-menu li > a {
  font-size: 14px;
  padding: 12px 20px 12px 0px;
  border-radius: 10px;
  position: relative;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.navbar .dropdown > .dropdown-menu li > a:hover {
  padding-right: 15px;
  padding-left: 10px;
}

.navbar .dropdown > .dropdown-menu li > a:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 10px;
}

.navbar .dropdown > .dropdown-menu li > a:hover:before {
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 69, 59, 0.08) 0%, rgba(218, 182, 93, 0.08) 100%);
}

/* Premium Header Transparent */
.header-transparent {
  position: absolute;
  background: transparent;
  width: 100%;
  z-index: 999;
}

.header-transparent .navbar-brand {
  display: block;
}

body[dir="rtl"] .header-transparent .navbar-brand {
  margin-left: 40px;
  margin-right: 0;
}

body[dir="ltr"] .header-transparent .navbar-brand {
  margin-right: 40px;
  margin-left: 0;
}

.header-transparent .navbar .navbar-nav .nav-link {
  color: #333333;
}

.header-transparent .navbar .navbar-nav .nav-link:hover {
  color: var(--main-color);
}

.navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--main-color);
  font-weight: 600;
}

.navbar .dropdown > .dropdown-menu li.active > a {
  padding-left: 15px;
  color: var(--main-color);
  font-weight: 600;
}

.navbar .navbar-nav .dropdown-menu li.active > a:before {
  background: linear-gradient(90deg, rgba(0, 69, 59, 0.15) 0%, rgba(218, 182, 93, 0.15) 100%);
  width: 100%;
}

.header-transparent .add-listing {
  align-self: inherit;
  flex: inherit;
  text-align: right;
}

.header-transparent .login a {
  color: #ffffff;
  font-weight: 600;
}

.header-transparent .login a:hover {
  color: var(--main-color-two);
}

/* Premium Sticky Header */
.header.is-sticky .main-header {
  position: fixed !important;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 5px 30px rgba(0, 69, 59, 0.1) !important;
  top: 0;
  z-index: 999;
  left: 0;
  animation: headerSlideDown 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header.is-sticky .main-header .header-contact-info {
  display: none !important;
}

.header.is-sticky .main-header .navbar {
  position: relative;
  top: 0px;
  right: 0px;
  left: 0;
  border-top: none !important;
  width: 100%;
}

.header.is-sticky .main-header .navbar .navbar-brand {
  padding: 20px 0px;
}

.header-transparent .is-sticky {
  position: fixed !important;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 5px 30px rgba(0, 69, 59, 0.1) !important;
  top: 0;
  z-index: 999;
}

.header-transparent .is-sticky .header-contact-info {
  display: none !important;
}

.header-transparent .is-sticky .navbar {
  position: relative;
  top: 0px;
  right: 0px;
  left: 0;
  border-top: none !important;
  width: 100%;
}

/* Premium Shopping Cart */
.medi-tools-actions {
  padding: 0;
  display: flex;
  margin: 0;
  align-items: center;
}

.medi-tools-actions .medi-tools-action {
  margin: 0 15px;
  position: relative;
  transition: var(--transition-smooth);
}

.medi-tools-actions .medi-tools-action:hover {
  transform: translateY(-3px);
}

.medi-tools-actions .medi-tools-action i {
  font-size: 24px;
  transition: var(--transition-smooth);
}

.medi-tools-actions .medi-tools-action:hover i {
  color: var(--main-color-two);
  transform: scale(1.15);
}

.medi-tools-wishlist .wishlist.medistore-wishlist-count {
  font-weight: 600;
  font-style: normal;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  margin-top: -5px;
  margin-right: -22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-two) 100%);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 69, 59, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.medi-tools-cart .cart-link {
  display: flex;
  align-items: center;
  position: relative;
}

.medi-tools-cart .cart-link .cart-count {
  font-weight: 600;
  font-style: normal;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  margin-top: -5px;
  margin-right: -22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-two) 100%);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 69, 59, 0.3);
  animation: pulse 2s infinite;
}

.medi-tools-cart .cart-contents {
  box-shadow: none;
  color: #333333;
  position: absolute;
  top: 100%;
  right: -13px;
  width: 360px;
  z-index: 9999;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  border-radius: 15px;
  padding: 0px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateY(-10px);
}

.medi-tools-cart .cart-contents .shopping_cart .shopping_cart_content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  border-radius: 15px;
  border: 2px solid rgba(0, 69, 59, 0.1);
}

.medi-tools-cart .cart-contents .shopping_cart .shopping_cart_content p {
  color: #4a4a4a;
  margin: 15px 0;
  font-size: 15px;
}

.medi-tools-cart:hover .cart-contents {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Premium Responsive Dropdown */
@media (min-width: 992px) {
  .header .navbar .dropdown-menu {
    margin: 0px;
    font-size: 14px;
    border-radius: 15px;
    border: none;
    left: 0;
    transform: translate3d(-50%, 20px, 0);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-property: opacity, visibility, transform;
    transform-origin: top center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    visibility: hidden;
    opacity: 0;
    display: block !important;
    top: 100%;
  }
  
  .header .navbar .dropdown-menu.megamenu {
    left: 50%;
  }
  
  .navbar-nav .dropdown-menu.dropdown-menu-lg {
    min-width: 600px;
  }
  
  .navbar-nav .mega-menu {
    position: static;
  }
  
  .header .navbar .dropdown:hover > .dropdown-menu {
    transform: translate3d(-50%, 0, 0);
    visibility: visible;
    opacity: 1;
  }
  
  .header .navbar .dropdown > .dropdown-menu .dropdown > .dropdown-menu {
    top: -10px;
    right: 100%;
    transform: translate(10px, 0);
  }
  
  .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
    left: 100%;
    right: auto;
    transform: translate3d(20px, 20px, 0);
  }
  
  .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu.left-side {
    right: 100%;
    left: auto;
    transform: translate3d(-20px, 20px, 0);
  }
  
  .navbar-nav li:hover > ul.dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
  
  .dropdown-submenu {
    position: relative;
  }
  
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
  }
  
  .dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
  }
}

/* Premium Responsive Media Queries */
@media (max-width: 1400px) {
  .navbar .navbar-nav .nav-link {
    padding: 10px 12px;
  }
}

@media (max-width: 1199px) {
  .navbar .navbar-nav .nav-link {
    padding: 10px 7px;
    font-size: 14px;
  }
  
  .header-transparent .login {
    display: none;
  }
  
  .header-transparent .navbar-brand {
    margin-right: 20px;
  }
  
  .header.header-02.header-transparent .navbar .navbar-nav .nav-link {
    padding: 20px 15px;
  }
  
  .header.header-03 .container-fluid {
    padding: 0 20px;
  }
  
  .header.header-03 .add-listing .btn {
    padding: 12px 20px;
  }
}

@media (max-width: 1023px) {
  .header.header-03 .container-fluid {
    padding: 0 15px;
  }
  
  .header.header-03 .add-listing .btn {
    padding: 12px 15px;
  }
  
  .header.header-03 .navbar.is-sticky {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .header .is-sticky .navbar {
    top: 0;
    right: 0;
  }
  
  .header .container-fluid {
    padding: 0 20px;
  }
  
  .navbar-toggler {
    border: none;
    position: absolute;
    height: 75px;
    right: 0;
    box-shadow: none !important;
    transition: var(--transition-smooth);
  }
  
  .navbar-toggler:hover {
    transform: scale(1.1);
  }
  
  .navbar-brand {
    padding: 20px 0px;
  }
  
  .header-sticky.is-sticky .navbar-brand {
    padding: 20px 0px 20px 15px;
  }
  
  .megamenu {
    margin-left: 0;
    margin-right: 0;
  }
  
  .megamenu > li {
    margin-bottom: 30px;
    animation: slideInFromLeft 0.5s ease;
  }
  
  .megamenu > li:last-child {
    margin-bottom: 0;
  }
  
  .megamenu.dropdown-header {
    padding: 3px 15px !important;
  }
  
  .navbar-nav .open .dropdown-menu .dropdown-header {
    color: #ffffff;
  }
  
  .header .navbar-nav > li {
    display: block;
  }
  
  .header .navbar .dropdown-menu {
    margin: 0px;
    font-size: 14px;
    border-radius: 12px;
    border: none;
    box-shadow: none;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 14px 30px;
    font-size: 13px;
    max-height: 300px;
    overflow-y: auto;
  }
  
  .header .navbar .dropdown-menu .dropdown-menu {
    background: #ffffff;
  }
  
  .header .navbar .dropdown-menu .dropdown-menu .dropdown-menu {
    background: #f8f9fa;
  }
  
  .header .navbar-collapse {
    position: absolute;
    top: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    left: 0;
    border-top: 1px solid rgba(0, 69, 59, 0.1);
    border-bottom: 1px solid rgba(0, 69, 59, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .navbar-brand img {
    height: 34px;
  }
  
  .navbar .navbar-nav {
    padding: 10px 0;
  }
  
  .navbar .navbar-nav .nav-link {
    padding: 10px 20px;
  }
  
  .navbar .navbar-nav .nav-link i {
    margin-left: auto;
  }
  
  .header .navbar .nav-title {
    margin-bottom: 10px !important;
    margin-top: 20px;
  }
  
  .add-listing .btn {
    font-size: 12px;
    padding: 6px 17px;
  }
  
  .navbar .dropdown > .dropdown-menu li > a {
    font-size: 13px;
  }
  
  .header .navbar-nav > li {
    border-bottom: 1px solid rgba(0, 69, 59, 0.05);
    transition: var(--transition-smooth);
  }
  
  .header .navbar-nav > li:hover {
    background: rgba(0, 69, 59, 0.02);
  }
  
  .header .navbar-nav > li:last-child {
    border-bottom: 0;
  }
  
  .header-transparent {
    position: relative;
    background: #333333;
  }
  
  .header-transparent .navbar .navbar-nav .nav-link {
    color: #333333;
  }
  
  .header .add-listing {
    margin-right: 60px;
  }
  
  .header.header-02 .is-sticky .navbar-brand {
    padding: 14px 0;
  }
  
  .header-02.header-transparent {
    background: #2EABEB;
  }
  
  .header-02.header-sticky .navbar-brand {
    display: inline-block;
  }
  
  .header-02.header-sticky .main-header .navbar-brand {
    display: block;
  }
  
  .header.header-02 .add-listing {
    margin-right: 60px;
  }
  
  .header-02 .navbar-toggler i {
    color: #ffffff;
  }
  
  .header.header-02 .navbar .navbar-nav .nav-link {
    color: #2EABEB;
    padding: 10px 20px;
  }
  
  .header.header-02.header-transparent .navbar .navbar-nav .nav-link {
    color: #2EABEB;
  }
  
  .header.header-02 .navbar .navbar-nav .nav-link:hover,
  .header.header-02 .navbar .navbar-nav .nav-item.active .nav-link {
    color: #4EC6B5;
  }
  
  .header-03.header-transparent {
    background: #4EC6B5;
  }
  
  .header.header-03 .add-listing {
    margin-right: 80px;
  }
  
  .header.header-03 .is-sticky .add-listing {
    margin-right: 50px;
  }
  
  .header.header-03 .navbar .navbar-nav .nav-link,
  .header.header-03 .navbar-nav li > a i {
    color: #2EABEB;
  }
  
  .header.header-03 .navbar.is-sticky .navbar-nav .nav-item.active .nav-link,
  .header.header-03 .navbar.is-sticky .navbar-nav li.active > a i,
  .header.header-03 .navbar.is-sticky .navbar-nav .nav-link:hover,
  .header.header-03 .navbar.is-sticky .navbar-nav .nav-link:hover i {
    color: #4EC6B5;
  }
  
  .header.shop-header .navbar.is-sticky .navbar-brand {
    padding: 15px 0px;
  }
}

@media (max-width: 767px) {
  .header .topbar .dropdown .dropdown-toggle {
    padding: 4px 0;
    display: inline-block;
  }
}

@media (max-width: 575px) {
  .navbar-light .navbar-brand {
    flex: none;
  }
  
  .header .add-listing {
    flex: none;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding-top: 27px;
    padding-bottom: 27px;
  }
  
  .navbar .navbar-nav .nav-link i {
    margin-top: 5px;
  }
}

/* ======= Premium Footer ======= */
.main-footer {
  position: relative;
  z-index: 9;
  padding: 120px 0 0px;
  background-image: url(../img/bg/1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.main-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(180deg);
  background-image: linear-gradient(0deg, #00453b 1%, rgba(0, 69, 59, 0.95) 50%, rgba(0, 69, 59, 0.9) 100%);
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.95;
  }
}

.contact-info svg {
  margin: 0 5px;
  color: var(--main-color-two);
  transition: var(--transition-smooth);
}

.contact-info:hover svg {
  transform: scale(1.2) rotate(5deg);
  filter: brightness(1.2);
}

.main-footer .bottom-footer {
  padding: 30px 0 0 0;
  background-color: transparent;
  color: #999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.main-footer .bottom-footer .container {
  font-size: 14px;
  display: block;
  justify-content: space-between;
  text-align: center;
}

.main-footer .call-action .contact-info .section-subtitle {
  color: var(--main-color-two);
  font-size: 32px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease;
}

.main-footer .call-action .contact-info p a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  display: inline-block;
}

.main-footer .call-action .contact-info p a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--main-color-two);
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.main-footer .call-action .contact-info p a:hover::after {
  width: 100%;
}

.main-footer .call-action .contact-info p a:hover {
  color: var(--main-color-two);
  transform: translateX(5px);
}

.main-footer .bottom-footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.main-footer .bottom-footer p a:hover {
  color: var(--main-color-two);
}

/* Premium Footer Social */
.main-footer .bottom-footer .container .social {
  margin: 0 0 20px 0;
  padding: 0;
  display: inline-flex;
  gap: 10px;
}

.main-footer .bottom-footer .container .social li {
  list-style-type: none;
  margin: 0;
  height: 45px;
  width: 45px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 16px;
  line-height: 41px;
  border-radius: 50%;
  transition: var(--transition-bounce);
  transform: scale(1);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.main-footer .bottom-footer .container .social li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--main-color-two);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

.main-footer .bottom-footer .container .social li:hover::before {
  width: 100%;
  height: 100%;
}

.main-footer .bottom-footer .container .social li:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: var(--main-color-two);
  box-shadow: 0 10px 25px rgba(218, 182, 93, 0.3);
}

.main-footer .bottom-footer .container .social li a {
  color: #fff;
  transition: var(--transition-smooth);
  display: block;
  position: relative;
  z-index: 1;
}

.main-footer .bottom-footer .container .social li a:hover {
  color: #fff;
}

/***************************************
Premium Scrollbar
***************************************/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--main-color) 0%, var(--main-color-two) 100%);
  height: 100px;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--main-color-two) 0%, var(--main-color) 100%);
  box-shadow: 0 0 10px rgba(218, 182, 93, 0.5);
}

/* Premium About Section ======= */
.about {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(0, 69, 59, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

body[dir="rtl"] .about::before {
  left: auto;
  right: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0, 69, 59, 0.03) 0%, transparent 50%);
}

body[dir="ltr"] .about::before {
  left: 0;
  right: auto;
}

.about:last-child {
  margin-bottom: 0px;
}

.about figure {
  margin: 0;
  position: relative;
  width: 66.666667%;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 69, 59, 0.15);
  transition: var(--transition-smooth);
  opacity: 0;
  animation: scaleIn 0.8s ease 0.3s forwards;
}

body[dir="rtl"] .about figure {
  margin-right: auto;
  margin-left: 0;
}

body[dir="ltr"] .about figure {
  margin-left: auto;
  margin-right: 0;
}

.about figure:hover {
  box-shadow: 0 30px 80px rgba(0, 69, 59, 0.25);
  transform: translateY(-10px);
}

.about.left figure {
  opacity: 0;
  animation: scaleIn 0.8s ease 0.3s forwards;
}

body[dir="rtl"] .about.left figure {
  margin-right: 0;
  margin-left: auto;
}

body[dir="ltr"] .about.left figure {
  margin-left: 0;
  margin-right: auto;
}

.about figure img:hover {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(1.1);
}

.about figure img {
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              filter 0.5s ease;
}

.about .caption {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(20px);
  position: absolute;
  top: 50%;
  width: 50%;
  transform: translate(0, -50%);
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
  opacity: 0;
  animation: fadeInRight 0.8s ease 0.5s forwards;
}

body[dir="rtl"] .about .caption {
  right: 0;
  left: auto;
  padding: 5% 0% 5% 4%;
  animation: fadeInLeft 0.8s ease 0.5s forwards;
}

body[dir="ltr"] .about .caption {
  left: 0;
  right: auto;
  padding: 5% 4% 5% 0%;
  animation: fadeInRight 0.8s ease 0.5s forwards;
}

.about .caption:hover {
  transform: translate(0, -50%) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.about .caption.equal {
  width: 40%;
}

.about.left .caption {
  opacity: 0;
  animation: fadeInLeft 0.8s ease 0.5s forwards;
}

body[dir="rtl"] .about.left .caption {
  left: 0;
  right: auto;
  padding: 5% 4% 5% 0%;
  animation: fadeInRight 0.8s ease 0.5s forwards;
}

body[dir="ltr"] .about.left .caption {
  right: 0;
  left: auto;
  padding: 5% 0% 5% 4%;
  animation: fadeInLeft 0.8s ease 0.5s forwards;
}

.about.left .caption h4 {
  color: #fff;
}

.about .caption h4 {
  text-transform: uppercase;
  font-size: 45px;
  color: #fff;
  line-height: 1.25em;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  animation: fadeInUp 0.8s ease;
}

.about .caption h5 {
  color: var(--main-color-two);
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.caption p.about-par {
  font-size: 16px !important;
  line-height: 1.8;
  color: #4a4a4a;
}

.about .section-subtitle {
  color: var(--main-color-two);
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.about .section-subtitle h1 {
  color: var(--main-color);
  font-family: 'Playfair Display', serif;
}

.about .section-subtitle h1 span {
  color: var(--main-color-two);
  font-weight: 700;
}

.about .section-title {
  color: var(--main-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0;
  font-family: 'Playfair Display', serif;
}

.about .caption p {
  font-size: 20px;
  margin-top: 20px;
  line-height: 1.7;
}

/* Premium Buttons */
.butn-light a {
  padding: 14px 35px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: var(--main-color);
  border-radius: 50px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition-bounce);
  box-shadow: 0 5px 20px rgba(0, 69, 59, 0.2);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.butn-light a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-two) 100%);
  transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

.butn-light a:hover::before {
  left: 0;
}

.butn-light a:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 69, 59, 0.3);
}

.butn-dark a {
  padding: 14px 35px;
  color: #fff;
  background: linear-gradient(135deg, var(--main-color) 0%, #003329 100%);
  border-radius: 50px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  transition: var(--transition-bounce);
  box-shadow: 0 5px 20px rgba(0, 69, 59, 0.3);
  position: relative;
  overflow: hidden;
}

.butn-dark a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--main-color-two) 0%, var(--main-color) 100%);
  transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

.butn-dark a:hover::before {
  left: 0;
}

.butn-dark a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(218, 182, 93, 0.4);
}

.butn-trans a {
  padding: 14px 35px;
  color: var(--main-color);
  background-color: transparent;
  border-radius: 50px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--main-color);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.butn-trans a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--main-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

.butn-trans a:hover::before {
  width: 300%;
  height: 300%;
}

.butn-trans a:hover {
  color: #fff;
  border-color: var(--main-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 69, 59, 0.3);
}

/* Premium About List */
.about-list {
  position: relative;
  display: block;
  padding: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  padding: 10px;
  border-radius: 12px;
  opacity: 0;
  animation: fadeInRight 0.6s ease forwards;
}

body[dir="rtl"] .about-list li {
  animation: fadeInLeft 0.6s ease forwards;
}

.about-list li:nth-child(1) {
  animation-delay: 0.5s;
}

.about-list li:nth-child(2) {
  animation-delay: 0.6s;
}

.about-list li:nth-child(3) {
  animation-delay: 0.7s;
}

.about-list li:nth-child(4) {
  animation-delay: 0.8s;
}

.about-list li:nth-child(5) {
  animation-delay: 0.9s;
}

.about-list li:hover {
  background: rgba(0, 69, 59, 0.03);
}

body[dir="rtl"] .about-list li:hover {
  transform: translateX(-10px);
}

body[dir="ltr"] .about-list li:hover {
  transform: translateX(10px);
}

.about-list li + li {
  margin-top: 15px;
}

.about-list li .icon {
  display: flex;
  align-items: center;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, rgba(218, 182, 93, 0.1) 0%, rgba(0, 69, 59, 0.1) 100%);
  border-radius: 50%;
  justify-content: center;
  transition: var(--transition-smooth);
}

.about-list li:hover .icon {
  transform: scale(1.2) rotate(360deg);
  background: linear-gradient(135deg, var(--main-color-two) 0%, var(--main-color) 100%);
}

.about-list li .icon svg {
  color: var(--main-color-two);
  font-size: 18px;
  transition: var(--transition-smooth);
}

.about-list li:hover .icon svg {
  color: #fff;
}

.about-list li .text {
  margin-left: 15px;
}

body[dir="rtl"] .about-list li .text {
  margin-left: 0;
  margin-right: 15px;
}

body[dir="ltr"] .about-list li .text {
  margin-right: 0;
  margin-left: 15px;
}

.about-list li .text p {
  color: #4a4a4a;
  font-weight: 500;
  margin: 0;
  font-size: 15px;
}

@media (max-width: 991.98px) {
  .about figure {
    width: auto;
    margin: 0;
  }
  
  .about.left .caption {
    padding: 30px 20px;
  }
  
  .about .caption {
    position: relative;
    top: 0;
    width: auto;
    padding: 30px 20px;
    transform: translate(0, 0);
    margin-top: 20px;
  }
  
  .about .caption:hover {
    transform: translate(0, 0) scale(1);
  }
}

/*************************************** Premium Section Padding ******************************************/
.section-padding2 {
  position: relative;
  z-index: 9;
  padding: 120px 0 0px;
  background-attachment: fixed;
  background-image: url(../img/bg/1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section-padding2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(180deg);
  background-image: linear-gradient(0deg, #00453b 1%, rgba(0, 69, 59, 0.95) 50%, rgba(0, 69, 59, 0.9) 100%);
  animation: gradientShift 15s ease infinite;
}