@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
}

:root {
  --overlay-color: rgba(50, 104, 255, 0.4);
  --primary-color: #3268FF;
  --bg-color: #DDE6FF;
  --secondary-color: #b2b2b2;
  --primary-text: #040d1c;
}

body {
  font-family: "Poppins", sans-serif;
}

.container {
  padding-left: 5%;
  padding-right: 5%;
}

a{
	text-decoration:none;
}

h1 {
  font-size: clamp(2rem, 10vw, 10rem);
}

h2 {
  font-size: clamp(35px, 4vw, 45px);
  font-weight: 700;
}

h3 {
  font-size: clamp(25px, 4vw, 30px);
  font-weight: 700;
}

h4 {
  font-size: clamp(15px, 4vw, 20px);
  font-weight: 600;
}

h5 {
  font-size: 16px;
  font-weight: 600;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.top-bar.not-fixed {
  position: static;
  transform: none;
}

.navbar.fixed-top {
  z-index: 1040;
  transition: top 0.3s ease-in-out;
}

.navbar.fixed-top.no-offset {
  top: 0;
}


body {
  padding-top: 50px;
}

.navbar {
	
  padding: 0 20px;
  padding-left:50px;
  height: 90px;
  border-top: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}


@media (max-width: 768px) {
  .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
  }

  .top-bar.not-fixed {
    position: static;
    transform: none;
  }
  
  .navbar {
    padding: 0 10px;
  }

  .navbar.fixed-top {
    z-index: 1040;
    transition: top 0.3s ease-in-out;
  }

  .navbar.fixed-top.no-offset {
    top: 0;
  }

  body {
    padding-top: 80px;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 50px;
    overflow-y: auto;
    z-index: 1050;
    transition: all 0.3s ease-in-out;
  }

  .navbar-collapse .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }

  .navbar-collapse .nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
  }
}



header i {
  color: var(--primary-color);
}

.btn-border-line {
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 20px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.5s ease-in-out;
  color: var(--primary-color);
}

/* .btn-border-line:hover{
  background-color: var(--primary-color);
  color: #fff;
} */

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  border: none;
  padding: 10px 20px;
  display: block;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 15px var(--primary-color);
  transform: translateY(-2px);
  color: #fff;
}


/* hero section */
.hero-section {
  padding-top: 100px;
  background-image: url('../img/hero_banner_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 650px;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0));
  z-index: 1;
}

.hero-section>* {
  position: relative;
  z-index: 2;
}

.hero-section .hero-left-section h1 {
  font-weight: 700;
  font-size: 4em;
}

/* .hero-section .hero-right-section {
  padding: 50px 50px 0 50px;
} */

/*
.hero-section .hero-img {
  width: 80%;
  z-index: -1;
}
*/

@media (max-width: 768px) {
  .hero-section .hero-left-section h1 {
    font-size: 3.5em;
  }

  .hero-section .hero-img {
    width: 100%;
    z-index: -1;
  }
}

@media (max-width: 480px) {
  .hero-section .hero-left-section h1 {
    font-size: 2.5em;
  }

  .hero-section .hero-img {
    width: 100%;
    z-index: -1;
  }
}

/* appoinment-section */
.appoinment-section {
  z-index: 99;
}

.appoinment-section .appoinment-from {
  margin-top: -25px;
  background-color: #fff;
  padding: 30px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* soft shadow */
  border-radius: 8px;
  /* optional: smooth corners */
}

.appoinment-section .appoinment-from input {
  border: 1px solid var(--primary-text);
  height: 45px;
}

/* why-chose-us */
.why-chose-us {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* best-dental-clinic */

.best-dental-clinic a {
  text-decoration: none;
}

.best-dental-clinic li i {
  color: var(--primary-color);
}

.best-dental-clinic .left-section img {
  width: auto;
  height: 35rem;
  object-fit: cover;
  display: flex;
}

.best-dental-clinic .right-section {
  padding-top: 80px;
}

@media (max-width: 768px) {

  .best-dental-clinic .left-section img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

}

@media (max-width: 480px) {

  .best-dental-clinic .left-section img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* helping-deltal-problem */

.helping-deltal-problem .left-section {
  position: relative;
  top: 50px;
}

.helping-deltal-problem .right-section img {
  width: auto;
  height: 35rem;
  object-fit: cover;
  display: flex;
}

.helping-deltal-problem .progress-bar-1,
.progress-bar-2 p {
  font-weight: 600;
}

.progress-bar-1 .progress {
  margin-top: -15px;
}

.progress-bar-2 .progress {
  margin-top: -15px;
}

@media (max-width: 768px) {
  .helping-deltal-problem .left-section {
    position: relative;
    top: 20px;
  }

  .helping-deltal-problem .right-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .helping-deltal-problem .left-section {
    position: relative;
    top: 20px;
  }

  .helping-deltal-problem .right-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

}

/* exp-count */
.exp-count {
  background-color: #DDE6FF;
  padding: 50px;
}

/* video-section */
.video-section .container {
  padding: 50px;
}

.video-section .container iframe {
  border-radius: 20px;
}

@media (max-width: 768px) {
  .video-section .container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .video-section .container {
    padding: 20px;
  }
}

/* services */
.service-box {
  position: relative;
  height: 400px;
  width: 100%;
  /* border: 1px solid #000; */
  overflow: hidden;
}

.service-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: -2;
}

.service-box .content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  color: #000;
  padding: 20px;
  height: 50%;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-box a {
  text-decoration: none;
}

/* testimonial */

.testimonial a {
  text-decoration: none;
}

.testimonials {
  padding-bottom: 20px;
}


@media (max-width: 767.98px) {
  .swiper-slide {
    align-items: center !important;
    text-align: center;
  }

  .swiper-slide>div {
    align-items: center !important;
    justify-content: center;
    text-align: center;
  }

  .swiper-slide img {
    margin-left: auto;
    margin-right: auto;
  }
}

/* best-service-section */
.best-service-section {
  background-color: #f0f4ff;
  position: relative;
  overflow: hidden;
}

.best-service-section .angle-bg {
  background-color: #DDE6FF;
  clip-path: polygon(0 0, 80% 0, 70% 100%, 0% 100%);
  height: 100%;
  width: 80%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.best-service-section .service-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 8%;
}

.best-service-section i {
  margin-right: 15px;
}

.best-service-section .service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .best-service-section .angle-bg {
    display: none;
  }

  .best-service-section .service-content {
    padding: 10%;
  }

  .best-service-section .service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .best-service-section .angle-bg {
    display: none;
  }

  .best-service-section .service-content {
    padding: 10%;
  }

  .best-service-section .service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* blogs */
.search-input {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 5px;
}

.search-input input {
  border: none;
}

input:focus,
.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit;
}

.blogs img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blogs .first-column img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.blogs .second-column .image-wrap {
  width: 350px;
  height: 120px;
}

.blogs .second-column img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.blogs .content {
  padding: 20px;
}

.blogs .blog-read-more {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
}

.blogs .image-wrapper {
  width: 350px;
  position: relative;
  display: inline-block;
}

.new-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 3px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .blogs .image-wrapper {
    width: 100%;
    height: 300px;
  }

  .blogs img {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .blogs .image-wrapper {
    width: 100%;
    height: 300px;
  }

  .blogs img {
    width: 100%;
    height: 300px;
  }
}

/* book-appoinment-section */
.book-appoinment-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.book-appoinment-section .container {
  position: relative;
  background-color: var(--bg-color);
  border-radius: 15px;
  height: 500px;
}

.book-appoinment-section .container .right-image-section {
  position: absolute;
  top: -50px;
}

.book-appoinment-section .container .right-image-section img {
  height: 550px;
}

.book-appoinment-section .container .left-section {
  padding: 100px 20px;
}

@media (max-width: 768px) {
  .book-appoinment-section {
    padding-bottom: 0px;
  }

  .book-appoinment-section .container .left-section {
    padding: 40px 20px 20px 20px;
  }

  .book-appoinment-section .container {
    height: auto;
  }

  .book-appoinment-section .container .right-image-section {
    position: static;
    width: 100%;
    text-align: center;
  }

  .book-appoinment-section .container .right-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .book-appoinment-section {
    padding-bottom: 0px;
  }

  .book-appoinment-section .container .left-section {
    padding: 40px 20px 20px 20px;
  }

  .book-appoinment-section .container {
    height: auto;
  }

  .book-appoinment-section .container .right-image-section {
    position: static;
    width: 100%;
    text-align: center;
  }

  .book-appoinment-section .container .right-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* footer */
footer {
  padding: 40px 40px;
  color: #fff;
  background-color: var(--primary-text);
  height: 70vh;
}

footer .container{
  padding: 0;
}


footer .news-letter-input {
  background-color: #fff;
  padding: 10px;
}

footer .news-letter-input input {
  border: none;
  width:100%;
}

footer .news-letter-input .btn-subcribe {
  border-radius: 0;
}

footer .copyright {
  border-top: 1px solid var(--secondary-color);
  padding: 20px;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px 40px 20px;
    background-color: var(--primary-text);
    height: 100%;
  }
}

/* about-page-hero */
.about-page {
  /*background-image: url(../img/about_hero_img.jpg);*/
}

.page-hero {
  background-size: cover;
  /* Cover the entire section */
  background-position: center;
  /* Center the background image */
  height: 400px;
  /* Set the height of the section to cover the viewport */
  position: relative;
  /* To position the text within it */
  display: flex;

  /* For centering the text vertically and horizontally */
  align-items: center;

  /* Vertically center the content */
  /* justify-content: center; */


}

/* Add the overlay using a ::before pseudo-element */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-color);
  /* Semi-transparent black overlay */
  z-index: 0;
  /* Ensures overlay is behind the text */
}

/* Style for the text within the hero section */
.hero-text {
  /* Horizontally center the content */
  color: white;
  /* Change text color for visibility */
  text-align: left;
  /* Center the text inside */
  z-index: 1;
  /* Ensures the text is above the background image */
  padding: 20px 100px 20px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-text {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-text {
    padding: 20px;
  }
}


/* about-page-content */
.about-page-content-sec-1 .image-section img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.about-page-content-sec-1 .right-section .box {
  padding: 30px 70px;
  border: 1px solid var(--primary-text);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.about-page-content-sec-2 {
  background-color: var(--bg-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-page-content-sec-2 .image-section img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 15px;
}

.about-page-content-sec-2 .left-content {
  width: 80%;
}


.about-page-content-sec-2 .left-heading-text {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.about-page-content-sec-2 .left-title-text {
  font-size: clamp(20px, 5vw, 35px);
  line-height: 40px;
}

.about-page-content-sec-2 .box {
  padding: 30px 70px;
  border: 1px solid var(--primary-text);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-page-content-sec-2 .box h5 {
  font-size: 2rem;
  font-weight: 500;
}

.about-page-content-sec-3 .image-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.about-page-content-sec-3 .right-section .right-heading-text {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.about-page-content-sec-3 .right-section li i {
  color: var(--primary-color);
}

.about-page-content-sec-4 {
  background-image: url(../img/about-page-sec-4-bg_img.jpg);
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

.about-page-content-sec-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-text);
  opacity: 0.5;
  z-index: 0;
}

.about-page-content-sec-4 .content {
  color: white;
  text-align: left;
  z-index: 1;
}

.about-page-content-sec-4 .content a {
  padding: 10px 30px;
  border: 1px solid #fff;
  border-radius: 10px;
}


@media (max-width: 768px) {
  .about-page-content-sec-2 .left-content {
    width: 100%;
  }

  .about-page-content-sec-4 {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-page-content-sec-2 .left-content {
    width: 100%;
  }

  .about-page-content-sec-4 {
    height: 300px;
  }
}

/* our-service-page */
.our-service-page {
  background-image: url(../img/our_service_hero_img.jpg);
}

/* service details */
.service-details-header .container {
  padding: 0px;
}

.service-details-header .image-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-appoinment-section .container {
  padding: 0px;
  z-index: 99;
}

.service-appoinment-section .appoinment-from {
  margin-top: -25px;
  background-color: #fff;
  padding: 30px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.service-appoinment-section .appoinment-from input {
  border: 1px solid var(--primary-text);
  height: 45px;
}

@media (max-width: 768px) {
  .service-details-header .container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .service-appoinment-section .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 480px) {
  .service-details-header .container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .service-appoinment-section .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* our-blogs-page-hero */
.our-blogs-page {
  background-image: url(../img/our_blogs_hero_img.jpg);
}


.blogs .nav-tabs .nav-item .nav-link {
  border: 1px solid #898989;
  border-radius: 10px;
  color: #5e5e5e;
}

.blogs .nav-item .active {
  background-color: var(--primary-color);
  color: #fff !important;
}

.blogs .nav-tabs {
  border: none;
}

.blogs h5 a{
	color: #000000 !important;
}

/* contact page */
.contact-page {
  /*background-image: url(../img/contact-page-hero-img.jpg);*/
}

.contact-page-content input,
.contact-page-content textarea {
  border: 1px solid #000;
}

.contact-page-content input,
.contact-page-content textarea,
.contact-page-content button {
  border-radius: 0;
}