@charset "UTF-8";


:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Lato",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3c4049; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #112344; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #175cdd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3c4049;  /* The default color of the main navmenu links */
  --nav-hover-color: #175cdd; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3c4049; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #175cdd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f8ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-16 {
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 100px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer-16 .footer-main {
  margin-bottom: 80px;
}

.footer-16 .brand-section .logo {
  text-decoration: none;
  margin-top: -30px;
}

.footer-16 .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.footer-16 .brand-section .brand-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}

.footer-16 .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 6px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer-16 .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-16 .brand-section .contact-info .contact-item span {
  line-height: 1.6;
}

.footer-16 .footer-nav-wrapper {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .footer-16 .footer-nav-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }
}

.footer-16 .nav-column {
  margin-bottom: 40px;
}

.footer-16 .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer-16 .nav-column .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-16 .nav-column .footer-nav a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.footer-16 .nav-column .footer-nav a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer-16 .footer-social {
  padding: 50px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer-16 .footer-social .newsletter-section h5 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.footer-16 .footer-social .newsletter-section p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
  max-width: 340px;
}

.footer-16 .footer-social .social-section {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer-16 .footer-social .social-section {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.footer-16 .footer-social .social-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 576px) {
  .footer-16 .footer-social .social-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.footer-16 .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link span {
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-16 .footer-social .social-links .social-link:hover i {
  transform: scale(1.1);
}

.footer-16 .footer-bottom {
  padding: 30px 0;
}

.footer-16 .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 300;
}

.footer-16 .footer-bottom .copyright p .sitename {
  color: var(--heading-color);
  font-weight: 400;
}

.footer-16 .footer-bottom .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 991px) {
  .footer-16 .footer-bottom .legal-links {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

.footer-16 .footer-bottom .legal-links a {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-16 .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}

.footer-16 .footer-bottom .legal-links .credits {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .footer-16 .footer-bottom .legal-links .credits {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    margin-top: 12px;
  }
}

.footer-16 .footer-bottom .legal-links .credits a {
  color: var(--accent-color);
  font-size: 12px;
}

.footer-16 .footer-bottom .legal-links .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-16 {
    padding: 70px 0 0;
  }

  .footer-16 .brand-section {
       text-align: left;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-16 .brand-section .brand-description {
        max-width: 100%;
    width: 100%;
    text-align: left;
    line-height: 1.8;
  }

  .footer-16 .brand-section .contact-info {
    text-align: left;
    display: inline-block;
  }

  .footer-16 .footer-nav-wrapper .nav-column {
    text-align: left;
  }

  .footer-16 .footer-nav-wrapper .nav-column h6 {
    margin-bottom: 16px;
  }

  .footer-16 .footer-nav-wrapper .nav-column .footer-nav {
    gap: 10px;
  }

  .footer-16 .footer-social {
    text-align: center;
  }

  .footer-16 .footer-social .newsletter-section p {
    max-width: none;
  }

  .footer-16 .footer-social .social-links {
    justify-content: center;
  }

  .footer-16 .footer-bottom {
    text-align: center;
  }

  .footer-16 .footer-bottom .legal-links {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 20px;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 500;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/bg/abstract-bg-3.webp") center/cover;
  opacity: 0.08;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  padding: 2rem 0;
}

.hero .hero-content .trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero .hero-content .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero .hero-content .trust-badges .badge-item i {
  font-size: 1rem;
}

@media (max-width: 576px) {
  .hero .hero-content .trust-badges {
    gap: 0.75rem;
  }

  .hero .hero-content .trust-badges .badge-item {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1.5rem 0;
  color: var(--heading-color);
}

.hero .hero-content h1 .highlight {
  color: var(--accent-color);
  position: relative;
}

.hero .hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 2rem;
}

.hero .hero-content .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}

.hero .hero-content .hero-stats .stat-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    gap: 1rem;
  }

  .hero .hero-content .hero-stats .stat-item h3 {
    font-size: 1.5rem;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero .hero-content .hero-actions .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero .hero-content .hero-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .hero-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.hero .hero-content .hero-actions .btn.btn-outline {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: transparent;
}

.hero .hero-content .hero-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .hero-content .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }
}

.hero .hero-content .emergency-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.hero .hero-content .emergency-contact .emergency-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero .hero-content .emergency-contact .emergency-info small {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.hero .hero-content .emergency-contact .emergency-info strong {
  color: var(--heading-color);
  font-size: 1.125rem;
  font-weight: 600;
}

.hero .hero-visual {
  position: relative;
  height: 600px;
}

.hero .hero-visual .main-image {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-visual .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-visual .main-image .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-visual .main-image .floating-card.appointment-card {
  top: 20px;
  right: 350px;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 250px;
}


.hero .hero-visual .main-image .floating-card.appointment-card .card-content h6 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.805rem;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-content p {
  margin: 0 0 0.25rem 0;
  color: var(--default-color);
  font-weight: 600;
  font-size: 1rem;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-content small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
}

.hero .hero-visual .main-image .floating-card.rating-card {
  bottom: 20px;
  left: 20px;
  text-align: center;
  min-width: 140px;
}

.hero .hero-visual .main-image .floating-card.rating-card .rating-stars {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.hero .hero-visual .main-image .floating-card.rating-card .rating-stars i {
  font-size: 1rem;
}

.hero .hero-visual .main-image .floating-card.rating-card h6 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.125rem;
}

.hero .hero-visual .main-image .floating-card.rating-card small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .hero .hero-visual .main-image .floating-card.appointment-card {
    right: 170px;
    top: 1px;
    padding: 0.25rem;
    min-width: auto;
  }

  .hero .hero-visual .main-image .floating-card.rating-card {
    left: 10px;
    bottom: 10px;
    padding: 1rem;
    min-width: 120px;
  }
}

.hero .hero-visual .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero .hero-visual .background-elements .element {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.1;
}

.hero .hero-visual .background-elements .element.element-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation: float1 6s ease-in-out infinite;
}

.hero .hero-visual .background-elements .element.element-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -30px;
  animation: float2 8s ease-in-out infinite;
}

.hero .hero-visual .background-elements .element.element-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  animation: float3 7s ease-in-out infinite;
}

@media (max-width: 992px) {
  .hero .hero-visual {
    height: 400px;
    margin-top: 2rem;
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(-180deg);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }

  50% {
    transform: translateY(-70%) rotate(180deg);
  }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about {
  padding: 100px 0;
  background-color: var(--surface-color);
}

.home-about .about-content .section-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .home-about .about-content .section-heading {
    font-size: 2rem;
  }
}

.home-about .about-content .lead-text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.home-about .about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.home-about .about-content .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .home-about .about-content .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.home-about .about-content .stats-grid .stat-item {
  text-align: center;
}

.home-about .about-content .stats-grid .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

.home-about .about-content .stats-grid .stat-item .stat-number::after {
  content: "+";
  font-size: 1.5rem;
  margin-left: 2px;
}

.home-about .about-content .stats-grid .stat-item .stat-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
  font-weight: 400;
}

.home-about .about-content .cta-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-about .about-content .cta-section .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.home-about .about-content .cta-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.home-about .about-content .cta-section .btn-secondary {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.home-about .about-content .cta-section .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.home-about .about-content .cta-section .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.home-about .about-visual {
  position: relative;
}

.home-about .about-visual .main-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.home-about .about-visual .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.home-about .about-visual .main-image:hover img {
  transform: scale(1.05);
}

.home-about .about-visual .floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 768px) {
  .home-about .about-visual .floating-card {
    position: static;
    margin-top: 2rem;
    left: auto;
    bottom: auto;
  }

}

.home-about .about-visual .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-about .about-visual .floating-card .card-content .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-about .about-visual .floating-card .card-content .icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.home-about .about-visual .floating-card .card-content .card-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.home-about .about-visual .floating-card .card-content .card-text p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.4;
}

.home-about .about-visual .experience-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.25rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 768px) {
  .home-about .about-visual .experience-badge {
    position: static;
    margin-bottom: 2rem;
    right: auto;
    top: auto;
    display: inline-block;
    margin-top: 20px;
  }
}

.home-about .about-visual .experience-badge .badge-content .years {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.home-about .about-visual .experience-badge .badge-content .text {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 0.25rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .home-about {
    padding: 80px 0;
  }

  .home-about .row {
    text-align: center;
  }

  .home-about .about-content .stats-grid {
    margin: 2rem 0;
  }
}


/* =========================================
   Comprehensive Dental Services Section
========================================= */

.dental-services-section {
  padding: 90px 0;
  background: #f8fafc;
  overflow: hidden;
}

.dental-services-section .container {
  max-width: 1400px;
  margin: auto;
  padding: 0 15px;
}


.dental-services-section .section-title {
  text-align: center;
  margin-bottom: 65px;
}

.dental-services-section .section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}


.dental-services-section .title-divider {
  width: 170px;
  height: 2px;
  background: #cbd5e1;
  margin: 0 auto 28px;
  position: relative;
}

.dental-services-section .title-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 4px;
  background: #2563eb;
  border-radius: 30px;
}

.dental-services-section .section-title p {
 margin-bottom: 0;
}

.dental-services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}


.dental-services-section .service-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid #dbe4f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  overflow: hidden;

  /* SAME HEIGHT */
  min-height: 420px;

  /* FLEX */
  display: flex;
  flex-direction: column;
  align-items: center;
}


.dental-services-section .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #2563eb;
}


.dental-services-section .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
}


.dental-services-section .service-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.dental-services-section .service-icon i {
  font-size: 32px;
  color: #ffffff;
}

.dental-services-section .service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  margin-bottom: 22px;
  text-align: center;

  /* EXACT SAME HEIGHT */
  height: 78px;

  /* PERFECT CENTER */
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}


.dental-services-section .service-card p {
  font-size: 15px;
  line-height: 2;
  color: #64748b;
  margin: 0;
  text-align: center;

  /* SAME PARAGRAPH AREA */
  width: 100%;
  max-width: 320px;

  /* ALIGN ALL TEXT SAME */
  display: flex;
  align-items: flex-start;
  justify-content: center;

  /* UNIFORM HEIGHT */
  min-height: 150px;
}


@media (max-width: 1200px) {

  .dental-services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dental-services-section .section-title h2 {
    font-size: 50px;
  }

}


@media (max-width: 992px) {

  .dental-services-section {
    padding: 70px 0;
  }

  .dental-services-section .section-title {
    margin-bottom: 50px;
  }

  .dental-services-section .section-title h2 {
    font-size: 42px;
  }

  .dental-services-section .section-title p {
    font-size: 16px;
  }

  .dental-services-section .service-card {
    min-height: 390px;
    padding: 32px 22px;
  }

  .dental-services-section .service-card h3 {
    font-size: 22px;
    height: 70px;
  }

  .dental-services-section .service-card p {
    min-height: 130px;
  }

}


@media (max-width: 767px) {

  .dental-services-section {
    padding: 60px 0;
  }

  .dental-services-section .section-title {
    margin-bottom: 40px;
  }

  .dental-services-section .section-title h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .dental-services-section .title-divider {
    width: 140px;
    margin-bottom: 22px;
  }

  .dental-services-section .title-divider span {
    width: 60px;
  }

  .dental-services-section .section-title p {
    font-size: 15px;
    line-height: 1.8;
  }

  .dental-services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dental-services-section .service-card {
    min-height: auto;
    padding: 30px 22px;
    border-radius: 18px;
  }

  .dental-services-section .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

  .dental-services-section .service-icon i {
    font-size: 28px;
  }

  .dental-services-section .service-card h3 {
    height: auto;
    min-height: auto;
    font-size: 22px;
    margin-bottom: 14px;
  }

  .dental-services-section .service-card p {
    min-height: auto;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.8;
  }

}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 100px 0;
}

.featured-services .featured-service-main {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-services .service-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.featured-services .service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-services .service-image-wrapper:hover img {
  transform: scale(1.02);
}

.featured-services .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 20%) 0%, transparent 70%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px;
}

.featured-services .service-badge {
  background: var(--surface-color);
  padding: 16px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-services .service-badge i {
  font-size: 20px;
  color: var(--accent-color);
}

.featured-services .service-badge span {
  font-weight: 500;
  color: var(--heading-color);
  font-size: 14px;
}

.featured-services .service-details {
  padding: 40px 0 0 0;
}

.featured-services .service-details h2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.featured-services .service-details p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 32px;
}

.featured-services .main-cta {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.featured-services .main-cta::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-color);
  transition: transform 0.3s ease;
}

.featured-services .main-cta:hover {
  color: var(--heading-color);
}

.featured-services .main-cta:hover::after {
  transform: scaleX(1.1);
}

.featured-services .services-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 60px;
}

.featured-services .service-item {
  padding: 32px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.featured-services .service-item:last-child {
  border-bottom: none;
}

.featured-services .service-item:hover {
  transform: translateX(8px);
}

.featured-services .service-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.featured-services .service-icon-wrapper i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-item:hover .featured-services .service-icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.1);
}

.service-item:hover .featured-services .service-icon-wrapper i {
  color: var(--contrast-color);
}

.featured-services .service-info {
  flex: 1;
}

.featured-services .service-info h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.4;
}

.featured-services .service-info p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
}

.featured-services .service-link {
  font-size: 13px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.featured-services .service-link:hover {
  color: var(--heading-color);
}

/* Desktop */
.featured-services .specialties-grid {
  margin-top: 80px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 20px;
}

.featured-services .specialties-grid::-webkit-scrollbar {
  display: none;
}

.featured-services .specialties-grid .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  margin: 0;
}

.featured-services .specialties-grid .col-lg-3,
.featured-services .specialties-grid .col-md-6 {
  flex: 0 0 300px;
  max-width: 300px;
  padding: 0;
}

.featured-services .specialty-card {
  text-align: center;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.featured-services .specialty-card:hover {
  transform: translateY(-8px);
}

.featured-services .specialty-card:hover .specialty-image img {
  transform: scale(1.05);
}

.featured-services .specialty-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  position: relative;
}

.featured-services .specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-services .specialty-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.featured-services .specialty-content span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.6;
}


/* Tablet & Mobile */
@media (max-width: 992px) {

  .featured-services .services-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .featured-services .service-details h2 {
    font-size: 28px;
  }

  .featured-services .specialties-grid {
    padding-bottom: 15px;
  }

  .featured-services .specialties-grid .row {
    gap: 18px;
  }

  .featured-services .specialties-grid .col-lg-3,
  .featured-services .specialties-grid .col-md-6 {
    flex: 0 0 260px;
    max-width: 260px;
  }

  .featured-services .specialty-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .featured-services .specialty-image {
    width: 100px;
    height: 100px;
  }

  .featured-services .specialty-content h5 {
    font-size: 18px;
  }

  .featured-services .specialty-content span {
    font-size: 13px;
  }
}
@media (max-width: 768px) {

  .featured-services .specialties-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 25px;
  }

  .featured-services .specialties-grid::-webkit-scrollbar {
    display: none;
  }

  .featured-services .specialties-grid .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    margin: 0;
    padding: 0 15px;
    width: max-content;
  }

  .featured-services .specialties-grid .col-lg-3,
  .featured-services .specialties-grid .col-md-6 {
    flex: 0 0 260px;
    max-width: 260px;
    padding: 0;
  }

  .featured-services .specialty-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);

    box-shadow:
      0 10px 30px rgba(0,0,0,0.06),
      0 2px 8px rgba(0,0,0,0.03);

    transition: all 0.3s ease;
  }

  .featured-services .specialty-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
  }

  .featured-services .specialty-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;

    box-shadow:
      0 10px 25px rgba(37,99,235,0.18);

    border: 4px solid #fff;
  }

  .featured-services .specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .featured-services .specialty-content h5 {
    font-size: 21px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .featured-services .specialty-content span {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    display: block;
    padding: 0 6px;
  }
}

/* =========================================
   PREMIUM BEFORE AFTER SECTION
========================================= */

.premium-before-after {
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.premium-before-after .container {
  max-width: 1450px;
  margin: auto;
  padding: 0 15px;
}

/* =========================================
   HEADER
========================================= */

.premium-before-after .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.premium-before-after .section-header h2 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 18px;
}

.premium-before-after .section-header p {
  font-size: 18px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 900px;
  margin: 0 auto;
}

/* =========================================
   CARD
========================================= */

.premium-before-after .smile-card {
  background: #ffffff;
}

/* =========================================
   COMPARISON SLIDER
========================================= */

.comparison-slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 18px;
}

/* IMAGES */

.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* AFTER IMAGE */

.after-image {
  position: absolute;
  inset: 0;
}

/* BEFORE WRAPPER */

.before-wrapper {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

/* IMPORTANT FIX */

.before-image {
  position: absolute;
  top: 0;
  left: 0;

  width: 100vw;
  max-width: none;
  height: 100%;

  object-fit: cover;
}

/* LINE */

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;

  width: 2px;
  height: 100%;

  background: #ffffff;

  transform: translateX(-50%);
  z-index: 3;
}

/* BUTTON */

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #ffffff;
  color: #111827;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 700;

  transform: translate(-50%, -50%);
  z-index: 5;

  pointer-events: none;

  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* RANGE */

.comparison-range {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  cursor: ew-resize;

  z-index: 10;
}

/* LABELS */

.label {
  position: absolute;
  top: 18px;

  padding: 8px 16px;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 600;

  color: #ffffff;

  z-index: 5;
}

.label.before {
  left: 18px;
  background: rgba(0,0,0,0.5);
}

.label.after {
  right: 18px;
  background: rgba(0,0,0,0.5);
}

/* =========================================
   CONTENT
========================================= */

.premium-before-after .card-content {
  padding: 24px 10px 0;
}

.premium-before-after .card-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
}

.premium-before-after .card-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.premium-before-after .card-content span {
  font-size: 13px;
  color: #9ca3af;
}

/* =========================================
   PAGINATION
========================================= */

.premium-before-after .swiper-pagination {
  position: relative;
  margin-top: 50px;
}

.premium-before-after .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  opacity: 1;
}

.premium-before-after .swiper-pagination-bullet-active {
  background: #2563eb;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .premium-before-after {
    padding: 80px 0;
  }

  .premium-before-after .section-header h2 {
    font-size: 42px;
  }

  .comparison-slider {
    height: 380px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .premium-before-after {
    padding: 60px 0;
  }

  .premium-before-after .section-header {
    margin-bottom: 40px;
  }

  .premium-before-after .section-header h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .premium-before-after .section-header p {
    font-size: 15px;
    line-height: 1.8;
  }

  .comparison-slider {
    height: 320px;
    border-radius: 16px;
  }

  .slider-button {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

}


/* =========================================
   CERTIFICATIONS SECTION
========================================= */

.certifications-section {
  padding: 110px 0;
  background: #f8fbff;
  overflow: hidden;
}

.certifications-section .container {
  max-width: 1450px;
  margin: auto;
  padding: 0 15px;
}

/* =========================================
   SECTION HEADER
========================================= */

.certifications-section .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.certifications-section .sub-title {
   text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.certifications-section .section-header h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.certifications-section .section-header p {
  margin-bottom: 0;
}

/* =========================================
   CERTIFICATE CARD
========================================= */

.certifications-section .certificate-card {
  background: #ffffff;

  border-radius: 24px;

  overflow: hidden;

  border: 1px solid #e5edf8;

  transition: 0.4s ease;

  box-shadow: 0 10px 30px rgba(0,0,0,0.04);

  height: 100%;
}

.certifications-section .certificate-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.12);
}

/* =========================================
   IMAGE
========================================= */

.certifications-section .certificate-image {
  position: relative;

  overflow: hidden;

  background: #ffffff;
}

.certifications-section .certificate-image img {
  width: 100%;
  height: 350px;

  object-fit: cover;

  transition: 0.5s ease;

  display: block;
}

.certifications-section .certificate-card:hover img {
  transform: scale(1.04);
}

/* =========================================
   CONTENT
========================================= */

.certifications-section .certificate-content {
  padding: 28px 28px 32px;
  text-align: center;
}

.certifications-section .certificate-content h3 {
  font-size: 24px;
  font-weight: 700;

  line-height: 1.4;

  color: #102a5c;

  margin-bottom: 16px;
}

.certifications-section .certificate-content p {
  font-size: 16px;
  line-height: 1.9;

  color: #6b7280;

  margin: 0;
}

/* =========================================
   SWIPER BUTTONS
========================================= */

.certifications-section .swiper-button-next,
.certifications-section .swiper-button-prev {
  width: 54px;
  height: 54px;

  border-radius: 50%;

  background: #ffffff;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  color: #2563eb;

  transition: 0.3s ease;
}

.certifications-section .swiper-button-next:hover,
.certifications-section .swiper-button-prev:hover {
  background: #2563eb;
  color: #ffffff;
}

.certifications-section .swiper-button-next::after,
.certifications-section .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* =========================================
   PAGINATION
========================================= */

.certifications-section .swiper-pagination {
  position: relative;
  margin-top: 55px;
}

.certifications-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;

  background: #cbd5e1;
  opacity: 1;
}

.certifications-section .swiper-pagination-bullet-active {
  background: #2563eb;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .certifications-section {
    padding: 80px 0;
  }

  .certifications-section .section-header {
    margin-bottom: 50px;
  }

  .certifications-section .section-header h2 {
    font-size: 42px;
  }

  .certifications-section .section-header p {
    font-size: 16px;
  }

  .certifications-section .certificate-image img {
    height: 300px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .certifications-section {
    padding: 60px 0;
  }

  .certifications-section .section-header h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .certifications-section .section-header p {
    font-size: 15px;
    line-height: 1.8;
  }

  .certifications-section .certificate-image img {
    height: 240px;
  }

  .certifications-section .certificate-content {
    padding: 24px 20px 28px;
  }

  .certifications-section .certificate-content h3 {
    font-size: 22px;
  }

  .certifications-section .certificate-content p {
    font-size: 15px;
  }

  .certifications-section .swiper-button-next,
  .certifications-section .swiper-button-prev {
    display: none;
  }

}




/* =========================================
   HAPPY PATIENTS SECTION
========================================= */

.happy-patients-section {
  padding: 100px 0;
  background: #f8fbff;
  overflow: hidden;
}

.happy-patients-section .container {
  max-width: 1450px;
  margin: auto;
  padding: 0 15px;
}

/* =========================================
   SECTION HEADER
========================================= */

.happy-patients-section .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.happy-patients-section .section-header h2 {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
  color: #102a5c;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.happy-patients-section .section-header p {
  max-width: 850px;
  margin: auto;

  font-size: 18px;
  line-height: 1.9;
  color: #7b8ba7;
}

/* =========================================
   TESTIMONIAL CARD
========================================= */

.happy-patients-section .testimonial-card {
  background: #ffffff;
  border-radius: 26px;

  padding: 40px 38px;

  height: 100%;

  border: 1px solid #e5edf8;

  transition: 0.4s ease;

  box-shadow: 0 10px 30px rgba(16, 42, 92, 0.04);
}

.happy-patients-section .testimonial-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.10);
}

/* =========================================
   QUOTE ICON
========================================= */

.happy-patients-section .quote-icon {
  margin-bottom: 28px;
}

.happy-patients-section .quote-icon i {
  font-size: 38px;
  color: #4f7df3;
}

/* =========================================
   PATIENT INFO
========================================= */

.happy-patients-section .patient-info {
  margin-bottom: 28px;
}

.happy-patients-section .patient-info h4 {
  font-size: 24px;
  font-weight: 700;
  color: #102a5c;
  margin-bottom: 6px;
}

.happy-patients-section .patient-info span {
  font-size: 15px;
  color: #94a3b8;
}

/* =========================================
   TESTIMONIAL TEXT
========================================= */

.happy-patients-section .testimonial-card p {
  font-size: 17px;
  line-height: 2;
  color: #667085;
  margin: 0;
}

/* =========================================
   PAGINATION
========================================= */

.happy-patients-section .swiper-pagination {
  position: relative;
  margin-top: 55px;
}

.happy-patients-section .swiper-pagination-bullet {
  width: 11px;
  height: 11px;

  background: #cbd5e1;
  opacity: 1;
}

.happy-patients-section .swiper-pagination-bullet-active {
  background: #4f7df3;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .happy-patients-section {
    padding: 80px 0;
  }

  .happy-patients-section .section-header {
    margin-bottom: 50px;
  }

  .happy-patients-section .section-header h2 {
    font-size: 44px;
  }

  .happy-patients-section .section-header p {
    font-size: 16px;
  }

  .happy-patients-section .testimonial-card {
    padding: 34px 28px;
  }

  .happy-patients-section .testimonial-card p {
    font-size: 16px;
    line-height: 1.9;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .happy-patients-section {
    padding: 60px 0;
  }

  .happy-patients-section .section-header {
    margin-bottom: 40px;
  }

  .happy-patients-section .section-header h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .happy-patients-section .section-header p {
    font-size: 15px;
    line-height: 1.8;
  }

  .happy-patients-section .testimonial-card {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .happy-patients-section .quote-icon i {
    font-size: 30px;
  }

  .happy-patients-section .patient-info h4 {
    font-size: 22px;
  }

  .happy-patients-section .testimonial-card p {
    font-size: 15px;
    line-height: 1.9;
  }

}



/* =========================================
   MODERN DENTAL CTA
========================================= */

.modern-dental-cta {
  padding: 110px 0;
  background: #ffffff;
  overflow: hidden;
}

.modern-dental-cta .container {
  max-width: 1450px;
  margin: auto;
  padding: 0 15px;
}

/* =========================================
   CTA WRAPPER
========================================= */

.modern-dental-cta .cta-wrapper {
  position: relative;

  background: linear-gradient(135deg, #0f2b5b 0%, #2563eb 100%);

  border-radius: 36px;

  overflow: hidden;

  padding: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Background Glow */

.modern-dental-cta .cta-wrapper::before {
  content: "";

  position: absolute;
  top: -100px;
  right: -100px;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background: rgba(255,255,255,0.08);

  filter: blur(20px);
}

.modern-dental-cta .cta-wrapper::after {
  content: "";

  position: absolute;
  bottom: -120px;
  left: -120px;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background: rgba(255,255,255,0.06);

  filter: blur(20px);
}

/* =========================================
   CONTENT
========================================= */

.modern-dental-cta .cta-content {
  position: relative;
  z-index: 2;

  max-width: 650px;
}

.modern-dental-cta .cta-badge {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 40px;

  background: rgba(255,255,255,0.14);

  backdrop-filter: blur(10px);

  color: #ffffff;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 28px;
}

.modern-dental-cta .cta-content h2 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;

  color: #ffffff;

  margin-bottom: 24px;
}

.modern-dental-cta .cta-content p {
  font-size: 18px;
  line-height: 1.9;

  color: rgba(255,255,255,0.82);

  margin-bottom: 38px;
}

/* =========================================
   BUTTONS
========================================= */

.modern-dental-cta .cta-buttons {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 38px;
}

.modern-dental-cta .primary-btn,
.modern-dental-cta .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 58px;

  padding: 0 30px;

  border-radius: 16px;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;

  transition: 0.3s ease;
}

/* Primary Button */

.modern-dental-cta .primary-btn {
  background: #ffffff;
  color: #102a5c;
}

.modern-dental-cta .primary-btn:hover {
  transform: translateY(-3px);

  background: #f1f5ff;
}

/* Secondary Button */

.modern-dental-cta .secondary-btn {
  border: 1px solid rgba(255,255,255,0.25);

  color: #ffffff;

  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);
}

.modern-dental-cta .secondary-btn:hover {
  background: rgba(255,255,255,0.16);

  transform: translateY(-3px);
}

/* =========================================
   FEATURES
========================================= */

.modern-dental-cta .cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.modern-dental-cta .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #ffffff;
}

.modern-dental-cta .feature-item i {
  color: #7ef29a;
  font-size: 18px;
}

.modern-dental-cta .feature-item span {
  font-size: 15px;
  font-weight: 500;
}

/* =========================================
   IMAGE
========================================= */

.modern-dental-cta .cta-image {
  position: relative;
  z-index: 2;
}

.modern-dental-cta .cta-image img {
  width: 450px;
  max-width: 100%;

  border-radius: 30px;

  object-fit: cover;

  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Floating Card */

.modern-dental-cta .floating-card {
  position: absolute;
  bottom: 30px;
  left: -40px;

  background: #ffffff;

  border-radius: 20px;

  padding: 20px 22px;

  min-width: 250px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.modern-dental-cta .rating {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 10px;
}

.modern-dental-cta .rating i {
  color: #fbbf24;
  font-size: 18px;
}

.modern-dental-cta .rating strong {
  font-size: 20px;
  color: #102a5c;
}

.modern-dental-cta .floating-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .modern-dental-cta {
    padding: 80px 0;
  }

  .modern-dental-cta .cta-wrapper {
    flex-direction: column;
    text-align: center;

    padding: 60px 40px;
  }

  .modern-dental-cta .cta-content h2 {
    font-size: 52px;
  }

  .modern-dental-cta .cta-buttons,
  .modern-dental-cta .cta-features {
    justify-content: center;
  }

  .modern-dental-cta .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .modern-dental-cta {
    padding: 60px 0;
  }

  .modern-dental-cta .cta-wrapper {
    padding: 45px 25px;
    border-radius: 28px;
  }

  .modern-dental-cta .cta-content h2 {
    font-size: 38px;
    line-height: 1.25;
  }

  .modern-dental-cta .cta-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .modern-dental-cta .cta-buttons {
    flex-direction: column;
  }

  .modern-dental-cta .primary-btn,
  .modern-dental-cta .secondary-btn {
    width: 100%;
  }

  .modern-dental-cta .cta-features {
    flex-direction: column;
    align-items: center;
  }

  .modern-dental-cta .floating-card {
    position: relative;

    left: 0;
    bottom: 0;

    transform: none;

    margin-top: 20px;

    width: 100%;
  }

}




/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
}

.about .about-content h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about .about-content p.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about .about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.about .stats-grid .stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transition: transform 0.3s ease;
}

.about .stats-grid .stat-item:hover {
  transform: translateY(-5px);
}

.about .stats-grid .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.about .stats-grid .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper .main-image {
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  height: 500px;
}



@media (max-width: 768px) {
  .about .image-wrapper .floating-image {
    width: 150px;
    height: 150px;
    bottom: -20px;
    right: -20px;
    border-width: 6px;
  }
  .about .image-wrapper .main-image {
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  height: 280px;
}
}



.about .values-section {
  margin-top: 120px;
}

.about .values-section h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about .values-section .section-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.about .values-section .value-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.about .values-section .value-item:hover {
  transform: translateY(-5px);
}

.about .values-section .value-item .value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.about .values-section .value-item .value-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about .values-section .value-item h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.about .values-section .value-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about .values-section .value-item:hover .value-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.about .values-section .value-item:hover .value-icon i {
  color: var(--contrast-color);
}

.about .certifications-section {
  margin-top: 80px;
  padding: 4rem 0;
  background: color-mix(in srgb, var(--accent-color), transparent 98%);
  border-radius: 16px;
}

.about .certifications-section h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about .certifications-section .section-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  padding-bottom: 60px;
}

.about .certifications-section .certification-item {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.about .certifications-section .certification-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .certifications-section .certification-item img {
  
  max-width: 100%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.about .certifications-section .certification-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .about {
    padding: 80px 0;
  }

  .about .about-content {
    margin-bottom: 3rem;
  }

  .about .about-content h2 {
    font-size: 2.4rem;
  }

  .about .values-section {
    margin-top: 80px;
  }

  .about .image-wrapper .floating-image {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 2rem auto 0;
    display: block;
  }
}

@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 2rem;
  }

  .about .stats-grid .stat-item .stat-number {
    font-size: 2rem;
  }

  .about .values-section .value-item {
    margin-bottom: 2rem;
  }

  .about .certifications-section {
    margin-top: 60px;
    padding: 3rem 1rem;
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}


/* ===========================
SERVICES PAGE TITLE
=========================== */

.services-page-title{

padding:50px 0 90px;

background:

linear-gradient(
180deg,
#f8fbff 0%,
#ffffff 100%
);

position:relative;

overflow:hidden;

}

/* LEFT GLOW */

.services-page-title::before{

content:"";

position:absolute;

left:-120px;

top:50px;

width:280px;

height:280px;

background:

radial-gradient(

circle,

rgba(37,99,235,.08),

transparent 70%

);

border-radius:50%;

}

/* RIGHT GLOW */

.services-page-title::after{

content:"";

position:absolute;

right:-120px;

bottom:-80px;

width:300px;

height:300px;

background:

radial-gradient(

circle,

rgba(15,43,91,.06),

transparent 70%

);

border-radius:50%;

}

.services-heading{

position:relative;

z-index:2;

}

/* TITLE */

.services-heading-title{

font-size:68px;

font-weight:800;

line-height:1.08;

color:#0f2b5b;

margin-bottom:35px;

letter-spacing:-2px;

max-width:900px;

margin-left:auto;

margin-right:auto;

}

/* TEXT */

.services-heading-text{

font-size:21px;

line-height:1.9;

color:#64748b;

max-width:900px;

margin:auto;

}

/* TABLET */

@media(max-width:991px){

.services-page-title{

padding:100px 0 80px;

}

.services-heading-title{

font-size:52px;

}

.services-heading-text{

font-size:18px;

}

}

/* MOBILE */

@media(max-width:768px){

.services-page-title{

padding:80px 0 65px;

}

.services-heading-title{

font-size:38px;

line-height:1.2;

letter-spacing:-1px;

margin-bottom:24px;

}

.services-heading-text{

font-size:16px;

line-height:1.8;

padding:0 10px;

}

}

/* SMALL MOBILE */

@media(max-width:480px){

.services-heading-title{

font-size:32px;

}

.services-heading-text{

font-size:15px;

}

}

.services .service-item {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services .service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.services .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services .service-image .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.services .service-image .service-overlay i {
  font-size: 3rem;
  color: var(--contrast-color);
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.services .service-image:hover img {
  transform: scale(1.05);
}

.services .service-image:hover .service-overlay {
  opacity: 0.9;
}

.services .service-image:hover .service-overlay i {
  transform: scale(1);
}

.services .service-content {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services .service-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.services .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.services .service-content .service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.services .service-content .service-features .feature-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--default-color);
}

.services .service-content .service-features .feature-item i {
  color: var(--accent-color);
  font-size: 0.75rem;
  margin-right: 8px;
}

.services .service-content .service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 5%);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.services .service-content .service-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.services .service-content .service-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-content .service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .service-image {
    height: 200px;
  }

  .services .service-content {
    padding: 25px 20px;
  }

  .services .service-content h3 {
    font-size: 1.3rem;
  }

  .services .service-content p {
    font-size: 0.9rem;
  }

  .services .service-content .service-features .feature-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .services .service-features {
    flex-direction: column;
    gap: 10px;
  }

  .services .service-features .feature-item {
    justify-content: flex-start;
  }
}
/* ======================
SERVICES CTA
====================== */

.services-cta{

padding:100px 0;

background:

linear-gradient(
135deg,
#0f2b5b,
#2563eb
);

position:relative;

overflow:hidden;

}

/* GLOW EFFECT */

.services-cta::before{

content:"";

position:absolute;

width:320px;

height:320px;

background:

rgba(255,255,255,.06);

border-radius:50%;

top:-120px;

left:-100px;

}

.services-cta::after{

content:"";

position:absolute;

width:280px;

height:280px;

background:

rgba(255,255,255,.05);

border-radius:50%;

bottom:-100px;

right:-80px;

}

.services-cta-box{

background:

rgba(255,255,255,.08);

backdrop-filter:

blur(10px);

padding:70px 60px;

border-radius:32px;

text-align:center;

position:relative;

z-index:2;

border:

1px solid rgba(255,255,255,.12);

box-shadow:

0 20px 60px
rgba(0,0,0,.15);

}

/* BADGE */

.services-cta-badge{

display:inline-block;

padding:12px 24px;

border-radius:50px;

background:

rgba(255,255,255,.15);

font-size:14px;

font-weight:600;

color:#fff;

margin-bottom:24px;

}

/* TITLE */

.services-cta h2{

font-size:54px;

font-weight:800;

line-height:1.1;

color:#fff;

margin-bottom:25px;

}

/* TEXT */

.services-cta p{

font-size:18px;

line-height:1.9;

color:

rgba(255,255,255,.9);

max-width:780px;

margin:auto;

margin-bottom:35px;

}

/* BUTTONS */

.services-cta-buttons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

}

.services-btn-primary{

background:#fff;

color:#0f2b5b;

padding:16px 34px;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.3s;

}

.services-btn-primary:hover{

background:#eaf2ff;

transform:

translateY(-4px);

}

.services-btn-secondary{

background:transparent;

border:2px solid #fff;

color:#fff;

padding:16px 34px;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.3s;

}

.services-btn-secondary:hover{

background:#fff;

color:#0f2b5b;

}

/* TABLET */

@media(max-width:991px){

.services-cta-box{

padding:60px 35px;

}

.services-cta h2{

font-size:42px;

}

}

/* MOBILE */

@media(max-width:768px){

.services-cta{

padding:70px 0;

}

.services-cta-box{

padding:45px 25px;

border-radius:24px;

}

.services-cta h2{

font-size:32px;

}

.services-cta p{

font-size:16px;

}

.services-btn-primary,

.services-btn-secondary{

width:100%;

text-align:center;

}

}

/*--------------------------------------------------------------
# Service Details 2 Section
--------------------------------------------------------------*/
.service-details-2 .service-header .service-category span {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.service-details-2 .service-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}

@media (max-width: 768px) {
  .service-details-2 .service-header h2 {
    font-size: 2.2rem;
  }
}

.service-details-2 .service-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 400;
  line-height: 1.5;
}

.service-details-2 .service-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-details-2 .service-details .detail-item .icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details-2 .service-details .detail-item .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.service-details-2 .service-details .detail-item .content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details-2 .service-details .detail-item .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0;
}

.service-details-2 .service-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.service-details-2 .service-visual img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 

.service-details-2 .service-visual .visual-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.service-details-2 .service-visual .stats-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details-2 .service-visual .stats-card .stat {
  text-align: center;
}

.service-details-2 .service-visual .stats-card .stat .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.service-details-2 .service-visual .stats-card .stat .label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  margin-top: 0.3rem;
} */

.service-details-2 .service-overview {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.service-details-2 .service-overview h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .service-details-2 .service-overview h3 {
    font-size: 1.6rem;
  }
}

.service-details-2 .service-overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
}

.service-details-2 .service-overview .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 576px) {
  .service-details-2 .service-overview .features-grid {
    grid-template-columns: 1fr;
  }
}

.service-details-2 .service-overview .features-grid .feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.service-details-2 .service-overview .features-grid .feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.service-details-2 .service-overview .features-grid .feature span {
  font-weight: 500;
  color: var(--heading-color);
}

.service-details-2 .service-overview .treatment-areas {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 2rem;
  border-radius: 16px;
}

.service-details-2 .service-overview .treatment-areas h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.service-details-2 .service-overview .treatment-areas .condition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.service-details-2 .service-overview .treatment-areas .condition-tags .tag {
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details-2 .service-overview .treatment-areas .condition-tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .service-details-2 .service-overview {
    padding: 2rem;
  }

  .service-details-2 .service-overview .treatment-areas {
    margin-top: 2rem;
  }
}

/* Premium CTA Cards */

.service-details-2 .action-card{

background:#fff;

border:1px solid rgba(20,40,80,.08);

border-radius:24px;

padding:36px 28px;

height:100%;

position:relative;

overflow:hidden;

text-align:center;

transition:.35s ease;

box-shadow:

0 8px 25px rgba(0,0,0,.05);

}

.service-details-2 .action-card:hover{

transform:translateY(-8px);

box-shadow:

0 20px 45px rgba(13,34,69,.12);

border-color:#1a73e8;

}

/* subtle top border */

.service-details-2 .action-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:4px;

background:

linear-gradient(

90deg,

#0d2245,

#1a73e8

);

}

/* icon */

.service-details-2 .card-header{

display:flex;

flex-direction:column;

align-items:center;

margin-bottom:20px;

}

.service-details-2 .card-header i{

width:72px;

height:72px;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

background:

linear-gradient(

135deg,

#0d2245,

#1a73e8

);

color:#fff;

margin-bottom:18px;

box-shadow:

0 12px 25px rgba(26,115,232,.18);

}

/* heading */

.service-details-2 .card-header h4{

font-size:28px;

font-weight:700;

color:#0d2245;

line-height:1.3;

margin:0;

}

/* content */

.service-details-2 .action-card p{

font-size:16px;

line-height:1.8;

color:#687487;

margin:

18px 0 28px;

min-height:58px;

}

/* button */

.service-details-2 .btn-action{

display:flex;

align-items:center;

justify-content:center;

height:54px;

width:100%;

border-radius:50px;

background:

linear-gradient(

90deg,

#1a73e8,

#0d5bd7

);

color:#fff;

font-size:17px;

font-weight:600;

text-decoration:none;

transition:.3s;

box-shadow:

0 10px 25px rgba(26,115,232,.18);

}

.service-details-2 .btn-action:hover{

color:#fff;

transform:translateY(-2px);

box-shadow:

0 14px 30px rgba(26,115,232,.28);

}

/* mobile */

@media(max-width:991px){

.service-details-2 .action-card{

padding:32px 24px;

}

}

@media(max-width:768px){

.service-details-2 .card-header h4{

font-size:24px;

}

.service-details-2 .action-card{

padding:28px 22px;

border-radius:20px;

}

.service-details-2 .action-card p{

font-size:15px;

min-height:auto;

}

.service-details-2 .card-header i{

width:64px;

height:64px;

font-size:26px;

}

}

.service-details-2 .action-card{

display:flex;

flex-direction:column;

justify-content:space-between;

height:100%;

padding:36px 28px;

background:#fff;

border-radius:24px;

border:1px solid rgba(20,40,80,.08);

box-shadow:0 8px 25px rgba(0,0,0,.05);

transition:.35s ease;

}

.service-details-2 .card-header{

display:flex;

flex-direction:column;

align-items:center;

min-height:170px;

}

.service-details-2 .card-header i{

width:72px;

height:72px;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:20px;

font-size:30px;

border-radius:18px;

background:linear-gradient(135deg,#0d2245,#1a73e8);

color:#fff;

}

.service-details-2 .card-header h4{

font-size:28px;

font-weight:700;

line-height:1.3;

margin:0;

min-height:72px;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

.service-details-2 .action-card p{

font-size:16px;

line-height:1.8;

color:#687487;

min-height:90px;

display:flex;

align-items:flex-start;

justify-content:center;

text-align:center;

margin-bottom:25px;

}

.service-details-2 .card-footer{

margin-top:auto;

}

.service-details-2 .btn-action{

height:56px;

display:flex;

align-items:center;

justify-content:center;

width:100%;

border-radius:50px;

font-weight:600;

font-size:18px;

background:linear-gradient(90deg,#1a73e8,#0d5bd7);

color:#fff;

text-decoration:none;

}

@media(max-width:768px){

.service-details-2 .card-header{

min-height:auto;

}

.service-details-2 .card-header h4{

min-height:auto;

font-size:24px;

}

.service-details-2 .action-card p{

min-height:auto;

}

}

@media (max-width: 768px) {
  .service-details-2 .service-header {
    margin-bottom: 3rem;
  }

  .service-details-2 .service-header .service-category span {
    margin-bottom: 1rem;
  }

  .service-details-2 .service-details {
    margin-bottom: 3rem;
  }

  .service-details-2 .service-details .detail-item {
    margin-bottom: 2rem;
  }

  .service-details-2 .visual-overlay {
    position: static !important;
    margin-top: 1rem;
  }

  .service-details-2 .visual-overlay .stats-card {
    background: var(--surface-color);
    backdrop-filter: none;
  }
}
.service-details-2 .faq-section{

padding-top:80px;

}

.service-details-2 .faq-header{

margin-bottom:50px;

}

.service-details-2 .faq-header .faq-category span{

display:inline-block;

background:linear-gradient(
135deg,
var(--accent-color),
color-mix(
in srgb,
var(--accent-color),
transparent 20%
));

color:var(--contrast-color);

padding:8px 20px;

border-radius:50px;

font-size:14px;

font-weight:600;

letter-spacing:.5px;

text-transform:uppercase;

margin-bottom:20px;

}

.service-details-2 .faq-header h3{

font-size:2.5rem;

font-weight:700;

margin-bottom:18px;

color:var(--heading-color);

}

.service-details-2 .faq-header p{

max-width:700px;

margin:auto;

color:color-mix(
in srgb,
var(--default-color),
transparent 25%
);

}

.service-details-2 .faq-wrapper{

max-width:900px;

margin:auto;

}

.service-details-2 .faq-item{

background:var(--surface-color);

border-radius:18px;

margin-bottom:18px;

overflow:hidden;

box-shadow:
0 8px 25px rgba(0,0,0,.05);

transition:.3s;

}

.service-details-2 .faq-item:hover{

transform:translateY(-2px);

}

.service-details-2 .faq-item.active{

box-shadow:
0 12px 35px rgba(0,0,0,.10);

}

.service-details-2 .faq-question{

width:100%;

border:none;

background:none;

padding:24px 28px;

display:flex;

justify-content:space-between;

align-items:center;

font-size:18px;

font-weight:600;

cursor:pointer;

color:var(--heading-color);

}

.service-details-2 .faq-question i{

font-size:18px;

color:var(--accent-color);

transition:.3s;

}

.service-details-2 .faq-answer{

max-height:0;

overflow:hidden;

padding:0 28px;

transition:.35s ease;

}

.service-details-2 .faq-answer p{

line-height:1.8;

margin-bottom:22px;

color:color-mix(
in srgb,
var(--default-color),
transparent 15%
);

}

.service-details-2 .faq-item.active .faq-answer{

max-height:220px;

}

.service-details-2 .faq-item.active i{

transform:rotate(45deg);

}

@media(max-width:768px){

.service-details-2 .faq-header h3{

font-size:2rem;

}

.service-details-2 .faq-question{

font-size:16px;

padding:20px;

}

.service-details-2 .faq-answer{

padding:0 20px;

}

}

.service-details-2 .service-approach-section{

padding:80px 0;

}

.service-details-2 .approach-heading{

margin-bottom:60px;

}

.service-details-2 .approach-heading h2{

font-size:2.8rem;

font-weight:700;

color:var(--heading-color);

margin-bottom:18px;

}

.service-details-2 .approach-heading p{

font-size:1.1rem;

font-weight:500;

color:var(--accent-color);

}

.service-details-2 .approach-card{

background:var(--surface-color);

padding:45px 28px;

border-radius:24px;

text-align:center;

height:100%;

transition:.3s;

box-shadow:
0 10px 35px rgba(0,0,0,.05);

}

.service-details-2 .approach-card:hover{

transform:translateY(-8px);

box-shadow:
0 20px 50px rgba(0,0,0,.10);

}

.service-details-2 .icon-box{

width:85px;

height:85px;

margin:auto;

margin-bottom:25px;

border-radius:22px;

display:flex;

align-items:center;

justify-content:center;

background:

color-mix(
in srgb,
var(--accent-color),
transparent 90%
);

}

.service-details-2 .icon-box i{

font-size:2rem;

color:var(--accent-color);

}

.service-details-2 .approach-card h4{

font-size:1.55rem;

font-weight:700;

margin-bottom:18px;

line-height:1.4;

color:var(--heading-color);

}

.service-details-2 .approach-card p{

margin:0;

line-height:1.8;

color:

color-mix(
in srgb,
var(--default-color),
transparent 15%
);

}

@media(max-width:992px){

.service-details-2 .approach-heading h2{

font-size:2.3rem;

}

}

@media(max-width:768px){

.service-details-2 .service-approach-section{

padding:60px 0;

}

.service-details-2 .approach-heading{

margin-bottom:40px;

}

.service-details-2 .approach-heading h2{

font-size:1.9rem;

}

.service-details-2 .approach-card{

padding:35px 22px;

}

.service-details-2 .approach-card h4{

font-size:1.3rem;

}

}

.service-details-2 .doctor-opinion-section{

padding:80px 0;

}

.service-details-2 .doctor-opinion-box{

background:var(--surface-color);

padding:60px;

border-radius:35px;

box-shadow:

0 10px 40px rgba(0,0,0,.05);

}

.service-details-2 .doctor-tag{

display:inline-block;

padding:12px 26px;

border-radius:40px;

background:

color-mix(
in srgb,
var(--accent-color),
transparent 88%
);

color:var(--accent-color);

font-weight:700;

margin-bottom:30px;

}

.service-details-2 .doctor-opinion-box h2{

font-size:3rem;

font-weight:700;

line-height:1.2;

margin-bottom:30px;

color:var(--heading-color);

max-width:1200px;

}

.service-details-2 .doctor-opinion-box p{

font-size:1.15rem;

line-height:2;

margin-bottom:28px;

color:

color-mix(
in srgb,
var(--default-color),
transparent 15%
);

}

.service-details-2 .doctor-signature{

margin-top:40px;

}

.service-details-2 .doctor-signature strong{

display:block;

font-size:1.3rem;

color:var(--accent-color);

margin-bottom:8px;

}

.service-details-2 .doctor-signature span{

font-size:1rem;

line-height:1.8;

color:

color-mix(
in srgb,
var(--default-color),
transparent 25%
);

}

@media(max-width:768px){

.service-details-2 .doctor-opinion-box{

padding:35px 25px;

border-radius:25px;

}

.service-details-2 .doctor-opinion-box h2{

font-size:2rem;

}

.service-details-2 .doctor-opinion-box p{

font-size:1rem;

line-height:1.9;

}

}
/*--------------------------------------------------------------
# Orthodontic Results Section
--------------------------------------------------------------*/

.service-details-2.ortho-results-section{
padding:90px 0;
}

.service-details-2 .results-header{
text-align:center;
margin-bottom:55px;
}

.service-details-2 .results-header h2{

font-size:48px;
font-weight:700;
color:#0b2242;
margin-bottom:18px;
line-height:1.2;

}

.service-details-2 .results-header p{

max-width:750px;
margin:auto;
font-size:17px;
line-height:1.8;
color:#6d7485;

}

.service-details-2 .results-wrapper{

background:
linear-gradient(
90deg,
rgba(26,115,232,.08),
rgba(255,255,255,1),
rgba(26,115,232,.08)
);

padding:60px 45px;

border-radius:28px;

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:35px;

}

.service-details-2 .result-card{

text-align:center;

}

.service-details-2 .result-icon{

font-size:38px;

color:#175CDD;

margin-bottom:18px;

}

.service-details-2 .result-card h3{

font-size:52px;

font-weight:800;

color:#175CDD;

margin-bottom:15px;

line-height:1;

}

.service-details-2 .result-card p{

font-size:19px;

font-weight:500;

line-height:1.7;

color:#4d5566;

margin:0;

}

/* Tablet */

@media(max-width:991px){

.service-details-2 .results-wrapper{

grid-template-columns:
repeat(2,1fr);

padding:45px 30px;

}

}

/* Mobile */

@media(max-width:768px){

.service-details-2.ortho-results-section{

padding:70px 0;

}

.service-details-2 .results-header h2{

font-size:34px;

}

.service-details-2 .results-header p{

font-size:15px;

}

.service-details-2 .results-wrapper{

grid-template-columns:1fr;

padding:35px 25px;

gap:28px;

}

.service-details-2 .result-card h3{

font-size:48px;

}

.service-details-2 .result-card p{

font-size:16px;

}

}



/*--------------------------------------------------------------
# Appointmnet Section
--------------------------------------------------------------*/
.appointmnet .booking-wrapper {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.appointmnet .booking-header {
  margin-bottom: 50px;
}

.appointmnet .booking-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.appointmnet .booking-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.appointmnet .booking-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  padding: 30px 0;
}

.appointmnet .booking-steps .step {
  text-align: center;
  flex: 1;
  max-width: 200px;
  position: relative;
}

.appointmnet .booking-steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -15px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  z-index: 1;
}

.appointmnet .booking-steps .step .step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
}

.appointmnet .booking-steps .step .step-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.appointmnet .booking-steps .step .step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.appointmnet .booking-steps .step .step-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

@media (max-width: 768px) {
  .appointmnet .booking-steps {
    flex-direction: column;
    gap: 20px;
  }

  .appointmnet .booking-steps .step {
    max-width: none;
  }

  .appointmnet .booking-steps .step:not(:last-child)::after {
    display: none;
  }
}

.appointmnet .appointment-form .php-email-form input[type=text],
.appointmnet .appointment-form .php-email-form input[type=email],
.appointmnet .appointment-form .php-email-form input[type=tel],
.appointmnet .appointment-form .php-email-form input[type=date],
.appointmnet .appointment-form .php-email-form select,
.appointmnet .appointment-form .php-email-form textarea {
  color: var(--default-color);
  background-color: transparent;
  font-size: 14px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s ease;
}

.appointmnet .appointment-form .php-email-form input[type=text]:focus,
.appointmnet .appointment-form .php-email-form input[type=email]:focus,
.appointmnet .appointment-form .php-email-form input[type=tel]:focus,
.appointmnet .appointment-form .php-email-form input[type=date]:focus,
.appointmnet .appointment-form .php-email-form select:focus,
.appointmnet .appointment-form .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
  outline: none;
}

.appointmnet .appointment-form .php-email-form input[type=text]::placeholder,
.appointmnet .appointment-form .php-email-form input[type=email]::placeholder,
.appointmnet .appointment-form .php-email-form input[type=tel]::placeholder,
.appointmnet .appointment-form .php-email-form input[type=date]::placeholder,
.appointmnet .appointment-form .php-email-form select::placeholder,
.appointmnet .appointment-form .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointmnet .appointment-form .php-email-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.appointmnet .appointment-form .php-email-form .btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.appointmnet .appointment-form .php-email-form .btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.appointmnet .appointment-form .php-email-form .btn-book:active {
  transform: translateY(0);
}



@media (max-width: 768px) {
  .appointmnet .booking-wrapper {
    padding: 40px 25px;
  }

  .appointmnet .booking-header h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Featured Testimonials Section
--------------------------------------------------------------*/
/* TESTIMONIAL HERO */

.featured-testimonials-page-title{

padding:70px 0 60px;

background:

linear-gradient(
135deg,
#f8fbff,
#eef5ff
);

position:relative;

overflow:hidden;

}


.featured-testimonials-page-title::before{

content:"";

position:absolute;

width:180px;

height:180px;

background:

rgba(15,76,179,.05);

border-radius:50%;

top:-70px;

left:-70px;

}


.featured-testimonials-page-title::after{

content:"";

position:absolute;

width:150px;

height:150px;

background:

rgba(37,99,235,.06);

border-radius:50%;

bottom:-50px;

right:-50px;

}


.featured-testimonials-heading{

position:relative;

z-index:2;

}


.featured-testimonials-heading-title{

font-size:56px;

font-weight:800;

line-height:1.1;

color:#08275c;

margin-bottom:25px;

letter-spacing:-1px;

}


.featured-testimonials-page-title p{

font-size:17px;

line-height:1.9;

color:#5d6d87;

max-width:850px;

margin:auto;

}


/* TABLET */

@media(max-width:991px){

.featured-testimonials-page-title{

padding:60px 0 50px;

}

.featured-testimonials-heading-title{

font-size:42px;

}

.featured-testimonials-page-title p{

font-size:16px;

}

}


/* MOBILE */

@media(max-width:576px){

.featured-testimonials-page-title{

padding:50px 0 45px;

}

.featured-testimonials-heading-title{

font-size:32px;

line-height:1.2;

}

.featured-testimonials-page-title p{

font-size:15px;

line-height:1.8;

padding:0 12px;

}

}


.featured-testimonials .testimonial-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.featured-testimonials .testimonial-item .stars {
  margin-bottom: 16px;
  color: #f7b50d;
}

.featured-testimonials .testimonial-item .stars i {
  font-size: 18px;
  margin: 0 2px;
}

.featured-testimonials .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  margin: 0 0 20px 0;
}

.featured-testimonials .testimonial-item .profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.featured-testimonials .testimonial-item .profile .testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.featured-testimonials .testimonial-item .profile .info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.featured-testimonials .testimonial-item .profile .info h4 i {
  font-size: 14px;
  color: var(--accent-color);
  margin-left: 4px;
}

.featured-testimonials .testimonial-item .profile .info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.featured-testimonials .swiper-wrapper {
  height: auto !important;
}

.featured-testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.featured-testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.featured-testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 1199.98px) {
  .featured-testimonials .testimonial-item {
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #FFD700;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

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

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--accent-color);
  font-weight: 500;
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--accent-color);
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 80px 40px 80px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 60px;
    font-size: 1rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 60px 30px 60px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 50px;
    font-size: 0.9rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 50px 25px 50px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* SERVICES HERO */

.services-page-title{

padding:70px 0 60px;

background:

linear-gradient(
135deg,
#f8fbff,
#eef5ff
);

position:relative;

overflow:hidden;

}


/* DECORATION */

.services-page-title::before{

content:"";

position:absolute;

width:180px;

height:180px;

background:

rgba(15,76,179,.05);

border-radius:50%;

top:-70px;

left:-70px;

}


.services-page-title::after{

content:"";

position:absolute;

width:150px;

height:150px;

background:

rgba(37,99,235,.06);

border-radius:50%;

bottom:-50px;

right:-50px;

}


/* CONTENT */

.services-heading{

position:relative;

z-index:2;

}


.services-heading-title{

font-size:58px;

font-weight:800;

line-height:1.1;

color:#08275c;

margin-bottom:25px;

letter-spacing:-1px;

}


.services-page-title p{

font-size:18px;

line-height:1.9;

color:#5d6d87;

max-width:820px;

margin:auto;

}


/* TABLET */

@media(max-width:991px){

.services-page-title{

padding:60px 0 50px;

}

.services-heading-title{

font-size:42px;

}

.services-page-title p{

font-size:16px;

}

}


/* MOBILE */

@media(max-width:576px){

.services-page-title{

padding:50px 0 45px;

}

.services-heading-title{

font-size:32px;

line-height:1.2;

}

.services-page-title p{

font-size:15px;

line-height:1.8;

padding:0 12px;

}

}


.contact .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact .contact-info-item .info-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .contact-info-item .info-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-item .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.contact .contact-info-item .info-content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.contact .contact-form-card h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-form-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact .contact-form-card .form-control {
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 15px 20px;
  height: calc(3.5rem + 2px);
  background-color: var(--surface-color);
  color: var(--default-color);
  margin-bottom: 20px;
}

.contact .contact-form-card .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-card .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-card textarea.form-control {
  min-height: 150px;
  margin-bottom: 25px;
}

.contact .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.contact .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact .map-container {
  position: relative;
  margin-top: 50px;
  padding: 0;
}

.contact .map-container .map-overlay {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--background-color), transparent);
  z-index: 10;
}

.contact .map-container iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form-card {
    padding: 30px;
  }

  .contact .map-container {
    margin-top: 40px;
  }

  .contact .map-container .map-overlay {
    top: -25px;
    height: 50px;
  }

  .contact .map-container iframe {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-wrapper {
    gap: 25px;
  }

  .contact .contact-info-item {
    gap: 15px;
  }

  .contact .contact-info-item .info-icon {
    width: 50px;
    height: 50px;
  }

  .contact .contact-form-card {
    padding: 25px;
  }

  .contact .contact-form-card h2 {
    font-size: 24px;
  }

  .contact .map-container {
    margin-top: 30px;
  }

  .contact .map-container .map-overlay {
    top: -20px;
    height: 40px;
  }

  .contact .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact .contact-form-card {
    padding: 20px;
  }

  .contact .map-container {
    margin-top: 25px;
  }

  .contact .map-container .map-overlay {
    top: -15px;
    height: 30px;
  }

  .contact .map-container iframe {
    height: 350px;
    border-radius: 8px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
/* HERO */

.terms-hero{


padding:120px 20px 0px;

text-align:center;

color:#fff;

position:relative;

overflow:hidden;

}



.terms-hero h1{

font-size:58px;
font-weight:700;

margin-bottom:18px;

position:relative;
z-index:2;

}

.terms-hero p{

max-width:750px;

margin:auto;
color: #000;
font-size:18px;

opacity:.92;

position:relative;
z-index:2;

}

/* MAIN */

.terms-section{

padding:100px 20px;

}

.container{

max-width:1250px;

margin:auto;

}

/* CARD */

.terms-card{

background:#fff;

padding:55px;

border-radius:28px;

box-shadow:

0 10px 35px rgba(0,0,0,.05);

border:1px solid #e5edf8;

}

.term-block{

margin-bottom:50px;

}

.term-block:last-child{

margin-bottom:0;

}

.term-block h2{

font-size:28px;

color:#0f2b5b;

margin-bottom:18px;

position:relative;

padding-left:18px;

}

.term-block h2::before{

content:"";

position:absolute;

left:0;
top:8px;

width:5px;
height:28px;

background:#2563eb;

border-radius:10px;

}

.term-block p{

font-size:16px;

color:#64748b;

margin-bottom:15px;

}

.term-block ul{

padding-left:22px;

}

.term-block li{

margin-bottom:12px;

color:#64748b;

}

/* CONTACT BOX */

.contact-box{

background:#f8fbff;

padding:30px;

border-radius:20px;

border:1px solid #dbeafe;

margin-top:25px;

}

.contact-box strong{

display:block;

font-size:18px;

margin-bottom:10px;

color:#0f2b5b;

}

/* LAST UPDATE */

.updated{

text-align:center;

margin-top:50px;

color:#94a3b8;

font-size:15px;

}

/* RESPONSIVE */

@media(max-width:992px){

.terms-hero h1{

font-size:44px;

}

.terms-card{

padding:40px;

}

}

@media(max-width:768px){

.terms-hero{

padding:90px 20px 70px;

}

.terms-hero h1{

font-size:34px;

}

.terms-hero p{

font-size:15px;

}

.terms-card{

padding:28px;

border-radius:22px;

}

.term-block h2{

font-size:22px;

}

.term-block p,
.term-block li{

font-size:15px;

}

}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404{

min-height:100vh;

display:flex;

align-items:center;

position:relative;

overflow:hidden;

padding:120px 0;

background:

linear-gradient(
135deg,
#f7fbfd 0%,
#ffffff 45%,
#eef9fc 100%
);

}

.luxury-bg-circle{

position:absolute;

border-radius:50%;

filter:blur(80px);

opacity:.18;

animation:floatLuxury 10s infinite ease-in-out;

}

.circle-1{

width:380px;

height:380px;

background:#0274E8;

top:-120px;

left:-120px;

}

.circle-2{

width:300px;

height:300px;

background:#0274E8;

right:-80px;

bottom:-80px;

animation-delay:2s;

}

.luxury-error-card{

background:

rgba(255,255,255,.85);

backdrop-filter:

blur(18px);

padding:

70px 50px;

border-radius:32px;

box-shadow:

0 25px 70px
rgba(0,0,0,.08);

border:

1px solid
rgba(255,255,255,.6);

position:relative;

overflow:hidden;

text-align:center;

}

.luxury-error-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:4px;

background:

linear-gradient(
90deg,
#0274E8,
#0274E8
);

}

.premium-icon{

width:95px;

height:95px;

margin:auto;

margin-bottom:28px;

border-radius:50%;

background:

linear-gradient(
135deg,
#0274E8,
#0274E8
);

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

color:white;

box-shadow:

0 15px 40px
rgba(15,182,214,.35);

animation:pulseLuxury 3s infinite;

}

.error-number{

font-size:

clamp(
95px,
15vw,
170px
);

font-weight:800;

line-height:1;

background:

linear-gradient(
135deg,
#0274E8,
#0a8ca8
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

margin-bottom:20px;

}

.error-title{

font-size:

clamp(
30px,
4vw,
50px
);

font-weight:700;

color:#17324b;

margin-bottom:22px;

line-height:1.3;

}

.error-description{

max-width:620px;

margin:auto;

font-size:17px;

line-height:1.9;

color:#667686;

margin-bottom:40px;

}

.error-actions{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

}

.btn-primary,
.btn-secondary{

padding:

15px 30px;

border-radius:50px;

font-weight:600;

display:flex;

align-items:center;

gap:10px;

transition:.35s;

text-decoration:none;

}

.btn-primary{

background:

linear-gradient(
135deg,
#0274E8,
#0274E8
);

color:white;

box-shadow:

0 10px 25px
rgba(15,182,214,.25);

}

.btn-primary:hover{

transform:

translateY(-5px);

color:white;

}

.btn-secondary{

border:

2px solid #0274E8;

color:#0274E8;

background:white;

}

.btn-secondary:hover{

background:#0274E8;

color:white;

transform:

translateY(-5px);

}

@keyframes floatLuxury{

0%{

transform:
translateY(0);

}

50%{

transform:
translateY(-25px);

}

100%{

transform:
translateY(0);

}

}

@keyframes pulseLuxury{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

@media(max-width:768px){

.luxury-error-card{

padding:50px 25px;

}

.error-actions{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

width:100%;

justify-content:center;

}

}

/* ==========================
   DENTAL TIPS PAGE
========================== */


/* =========================
DENTAL HERO SECTION
========================= */

.dental-tips-page .tips-hero{

position:relative;

overflow:hidden;

padding:220px 0 120px;

margin-top:-120px;

background:

linear-gradient(
180deg,
#f8fbff 0%,
#eef5ff 100%
);

text-align:center;

isolation:isolate;

}

/* REMOVE OLD GLOW */

.dental-tips-page .tips-hero::before,
.dental-tips-page .tips-hero::after{

display:none;

}

/* CONTENT */

.dental-tips-page .hero-content{

position:relative;

max-width:980px;

margin:auto;

padding:0 20px;

}

/* BADGE */

.dental-tips-page .badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:14px 28px;

background:#ffffff;

border:1px solid #d8e6ff;

border-radius:60px;

font-size:15px;

font-weight:700;

color:#1d4fa8;

box-shadow:

0 8px 25px rgba(13,47,115,.08);

margin-bottom:35px;

}

/* HEADING */

.dental-tips-page .tips-hero h1{

font-size:82px;

font-weight:800;

line-height:1.05;

letter-spacing:-3px;

margin-bottom:28px;

color:#0d2f73;

max-width:920px;

margin-left:auto;

margin-right:auto;

}

/* DESCRIPTION */

.dental-tips-page .tips-hero p{

font-size:21px;

line-height:1.9;

max-width:760px;

margin:auto;

color:#5b6f95;

}

/* FLOATING DOTS */

.dental-tips-page .hero-content::before{

content:"";

position:absolute;

left:8%;

top:22%;

width:18px;

height:18px;

background:#1d4fa8;

opacity:.15;

border-radius:50%;

}

.dental-tips-page .hero-content::after{

content:"";

position:absolute;

right:8%;

bottom:18%;

width:24px;

height:24px;

background:#2563eb;

opacity:.12;

border-radius:50%;

}

/* MOBILE */

@media(max-width:991px){

.dental-tips-page .tips-hero{

padding:190px 0 90px;

}

.dental-tips-page .tips-hero h1{

font-size:58px;

}

}

@media(max-width:768px){

.dental-tips-page .tips-hero{

padding:170px 0 70px;

margin-top:-80px;

}

.dental-tips-page .tips-hero h1{

font-size:42px;

line-height:1.15;

letter-spacing:-1px;

}

.dental-tips-page .tips-hero p{

font-size:16px;

}

.dental-tips-page .badge{

font-size:13px;

padding:12px 20px;

}

}

/* ==========================
TIPS STATS SECTION
========================== */


.dental-tips-page .tips-stats{

padding:110px 0;

background:

linear-gradient(
180deg,
#f8fbff 0%,
#ffffff 100%
);

position:relative;

overflow:hidden;

}

/* SECTION HEADING */

.dental-tips-page .tips-stats .section-heading{

text-align:center;

max-width:1100px;

margin:auto;

margin-bottom:70px;

}

.dental-tips-page .tips-stats .section-heading h2{

font-size:54px;

font-weight:800;

line-height:1.15;

color:#0d2f73;

margin-bottom:20px;

letter-spacing:-1px;

}

.dental-tips-page .tips-stats .section-heading p{

font-size:18px;

line-height:1.9;
max-width:1100px;
color:#64748b;

}

/* GRID */

.dental-tips-page .tips-stats .stats-grid{

display:grid;

grid-template-columns:

repeat(3,1fr);

gap:30px;

}

/* CARD */

.dental-tips-page .tips-stats .stat-card{

background:#fff;

padding:40px 35px;

border-radius:30px;

text-align:center;

border:

1px solid #e6eefb;

box-shadow:

0 15px 45px
rgba(13,47,115,.06);

transition:.35s ease;

height:100%;

position:relative;

overflow:hidden;

}

/* TOP ACCENT */

.dental-tips-page .tips-stats .stat-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:

linear-gradient(
90deg,
#1d4fa8,
#2563eb
);

transform:

scaleX(0);

transition:.35s;

transform-origin:left;

}

.dental-tips-page .tips-stats .stat-card:hover::before{

transform:

scaleX(1);

}

/* HOVER */

.dental-tips-page .tips-stats .stat-card:hover{

transform:

translateY(-10px);

box-shadow:

0 25px 60px
rgba(13,47,115,.12);

}

/* ICON */

.dental-tips-page .tips-stats .icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

border-radius:25px;

background:

linear-gradient(
135deg,
#eaf2ff,
#d9e8ff
);

box-shadow:

0 12px 25px
rgba(37,99,235,.12);

}

/* NUMBER */

.dental-tips-page .tips-stats h3{

font-size:34px;

font-weight:800;

color:#0d2f73;

margin-bottom:14px;

line-height:1.2;

}

/* TEXT */

.dental-tips-page .tips-stats p{

font-size:16px;

line-height:1.9;

color:#64748b;

max-width:240px;

margin:auto;

}

/* TABLET */

@media(max-width:991px){

.dental-tips-page .tips-stats{

padding:90px 0;

}

.dental-tips-page .tips-stats .stats-grid{

grid-template-columns:

repeat(2,1fr);

gap:25px;

}

.dental-tips-page .tips-stats .section-heading h2{

font-size:42px;

}

}

/* MOBILE */

@media(max-width:768px){

.dental-tips-page .tips-stats{

padding:75px 0;

}

.dental-tips-page .tips-stats .stats-grid{

grid-template-columns:1fr;

gap:22px;

}

.dental-tips-page .tips-stats .section-heading{

margin-bottom:50px;

}

.dental-tips-page .tips-stats .section-heading h2{

font-size:34px;

}

.dental-tips-page .tips-stats .section-heading p{

font-size:16px;

}

.dental-tips-page .tips-stats .stat-card{

padding:35px 25px;

border-radius:24px;

}

.dental-tips-page .tips-stats .icon{

width:75px;

height:75px;

font-size:35px;

}

.dental-tips-page .tips-stats h3{

font-size:28px;

}

.dental-tips-page .tips-stats p{

font-size:15px;

}

}


/* ==========================
DAILY HABITS SECTION
========================== */

.dental-tips-page .daily-habits{

padding:110px 0;

background:#f8fbff;

position:relative;

overflow:hidden;

}

/* SECTION HEADING */

.dental-tips-page .daily-habits .section-heading{

text-align:center;

margin-bottom:70px;

}

.dental-tips-page .daily-habits .section-heading h2{

font-size:52px;

font-weight:800;

line-height:1.2;

color:#0f2b5b;

margin-bottom:18px;

}

.dental-tips-page .daily-habits .section-heading p{

font-size:18px;

line-height:1.8;

color:#64748b;

max-width:720px;

margin:auto;

}

/* GRID */

.dental-tips-page .daily-habits .tips-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;

}

/* CARD */

.dental-tips-page .daily-habits .tip-card{

background:#fff;

padding:42px 35px;

border-radius:30px;

box-shadow:

0 12px 35px
rgba(15,43,91,.06);

border:1px solid #edf2f7;

transition:.35s ease;

height:100%;

position:relative;

overflow:hidden;

display:flex;

flex-direction:column;

}

/* TOP LINE */

.dental-tips-page .daily-habits .tip-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:

linear-gradient(
90deg,
#2563eb,
#3b82f6
);

opacity:0;

transition:.35s;

}

.dental-tips-page .daily-habits .tip-card:hover{

transform:
translateY(-10px);

box-shadow:

0 20px 50px
rgba(15,43,91,.12);

}

.dental-tips-page .daily-habits .tip-card:hover::before{

opacity:1;

}

/* ICON */

.dental-tips-page .daily-habits .tip-icon{

width:95px;

height:95px;

margin:auto;

margin-bottom:28px;

display:flex;

align-items:center;

justify-content:center;

font-size:52px;

background:

linear-gradient(
135deg,
#eff6ff,
#dbeafe
);

border-radius:24px;

box-shadow:

0 10px 25px
rgba(37,99,235,.12);

}

/* TITLE */

.dental-tips-page .daily-habits .tip-card h3{

font-size:28px;

font-weight:800;

line-height:1.3;

text-align:center;

color:#0f2b5b;

margin-bottom:18px;

}

/* DESCRIPTION */

.dental-tips-page .daily-habits .tip-card p{

font-size:16px;

line-height:1.9;

text-align:center;

color:#64748b;

margin-bottom:24px;

}

/* LIST */

.dental-tips-page .daily-habits .tip-card ul{

padding:0;

margin:0;

list-style:none;

display:flex;

flex-direction:column;

gap:14px;

margin-top:auto;

}

.dental-tips-page .daily-habits .tip-card ul li{

display:flex;

align-items:center;

gap:12px;

font-size:16px;

color:#475569;

line-height:1.8;

}

/* CHECK ICON */

.dental-tips-page .daily-habits .tip-card ul li::before{

content:"✓";

width:28px;

height:28px;

background:

linear-gradient(
135deg,
#2563eb,
#3b82f6
);

color:#fff;

font-size:15px;

font-weight:700;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

flex-shrink:0;

}

/* TABLET */

@media(max-width:991px){

.dental-tips-page .daily-habits{

padding:90px 0;

}

.dental-tips-page .daily-habits .tips-grid{

grid-template-columns:
repeat(2,1fr);

}

}

/* MOBILE */

@media(max-width:768px){

.dental-tips-page .daily-habits{

padding:80px 0;

}

.dental-tips-page .daily-habits .tips-grid{

grid-template-columns:1fr;

gap:24px;

}

.dental-tips-page .daily-habits .section-heading h2{

font-size:36px;

}

.dental-tips-page .daily-habits .section-heading p{

font-size:16px;

}

.dental-tips-page .daily-habits .tip-card{

padding:32px 24px;

}

.dental-tips-page .daily-habits .tip-icon{

width:80px;

height:80px;

font-size:42px;

}

.dental-tips-page .daily-habits .tip-card h3{

font-size:24px;

}

.dental-tips-page .daily-habits .tip-card p{

font-size:15px;

}

.dental-tips-page .daily-habits .tip-card ul li{

font-size:15px;

}

}

/* ==========================
INTERESTING FACT SECTION
========================== */

.dental-tips-page .interesting-section{

padding:110px 0;

background:#ffffff;

position:relative;

overflow:hidden;

}

/* WRAPPER */

.dental-tips-page .fact-wrapper{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:40px;

align-items:center;

}

/* LEFT */

.dental-tips-page .fact-left{

background:#fff;

padding:45px;

border-radius:32px;

box-shadow:

0 15px 40px
rgba(15,43,91,.06);

border:1px solid #edf2f7;

height:100%;

}

.dental-tips-page .fact-left h2{

font-size:48px;

font-weight:800;

line-height:1.2;

color:#0f2b5b;

margin-bottom:35px;

}

/* FACT ITEMS */

.dental-tips-page .fact-item{

background:#f8fbff;

padding:24px 28px;

border-radius:20px;

margin-bottom:18px;

font-size:18px;

font-weight:500;

color:#475569;

display:flex;

align-items:center;

gap:16px;

transition:.35s;

border:1px solid #edf2f7;

}

.dental-tips-page .fact-item:last-child{

margin-bottom:0;

}

.dental-tips-page .fact-item:hover{

transform:translateX(10px);

background:#eff6ff;

border-color:#2563eb;

box-shadow:

0 10px 25px
rgba(37,99,235,.08);

}

/* RIGHT */

.dental-tips-page .fact-right{

height:100%;

display:flex;

}

/* BIG CARD */

.dental-tips-page .big-card{

background:

linear-gradient(
135deg,
#0f2b5b,
#2563eb
);

padding:60px 45px;

border-radius:34px;

width:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

color:#fff;

box-shadow:

0 18px 45px
rgba(37,99,235,.20);

position:relative;

overflow:hidden;

}

/* ICON */

.dental-tips-page .big-icon{

font-size:90px;

margin-bottom:25px;

animation:

pulseSmile 2.5s infinite;

}

@keyframes pulseSmile{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

/* TITLE */

.dental-tips-page .big-card h3{

font-size:34px;

font-weight:800;

line-height:1.3;

margin-bottom:18px;

}

/* TEXT */

.dental-tips-page .big-card p{

font-size:18px;

line-height:1.9;

opacity:.92;

max-width:320px;

margin:auto;

}

/* TABLET */

@media(max-width:991px){

.dental-tips-page .fact-wrapper{

grid-template-columns:1fr;

}

.dental-tips-page .fact-left h2{

font-size:40px;

}

}

/* MOBILE */

@media(max-width:768px){

.dental-tips-page .interesting-section{

padding:80px 0;

}

.dental-tips-page .fact-left{

padding:30px;

}

.dental-tips-page .fact-left h2{

font-size:34px;

margin-bottom:25px;

}

.dental-tips-page .fact-item{

padding:20px;

font-size:16px;

}

.dental-tips-page .big-card{

padding:45px 25px;

}

.dental-tips-page .big-icon{

font-size:70px;

}

.dental-tips-page .big-card h3{

font-size:28px;

}

.dental-tips-page .big-card p{

font-size:16px;

}

}

/* ==========================
MYTH VS FACT SECTION
========================== */

.dental-tips-page .myth-fact{

padding:110px 0;

background:#f8fbff;

overflow:hidden;

position:relative;

}

/* SECTION HEADING */

.dental-tips-page .myth-fact .section-heading{

text-align:center;

margin-bottom:65px;

}

.dental-tips-page .myth-fact .section-heading h2{

font-size:52px;

font-weight:800;

line-height:1.2;

color:#0f2b5b;

margin-bottom:18px;

}

.dental-tips-page .myth-fact .section-heading p{

font-size:18px;

line-height:1.8;

color:#64748b;

max-width:700px;

margin:auto;

}

/* SWIPER */

.dental-tips-page .mythSwiper{

max-width:1050px;

margin:auto;

padding:10px 10px 75px;

overflow:hidden;

}

.dental-tips-page .mythSwiper .swiper-slide{

height:auto;

display:flex;

}

/* CARD */

.dental-tips-page .mythfact-card{

background:#fff;

border-radius:32px;

padding:35px;

display:flex;

align-items:stretch;

gap:28px;

width:100%;

box-shadow:

0 15px 45px
rgba(15,43,91,.08);

border:1px solid #edf2f7;

transition:.35s ease;

min-height:260px;

position:relative;

overflow:hidden;

}

.dental-tips-page .mythfact-card:hover{

transform:translateY(-10px);

box-shadow:

0 22px 55px
rgba(15,43,91,.12);

}

/* MYTH SIDE */

.dental-tips-page .myth-side{

flex:1;

background:#fff4f4;

padding:35px;

border-radius:24px;

display:flex;

flex-direction:column;

justify-content:center;

}

/* FACT SIDE */

.dental-tips-page .fact-side{

flex:1;

background:#effcf5;

padding:35px;

border-radius:24px;

display:flex;

flex-direction:column;

justify-content:center;

}

/* DIVIDER */

.dental-tips-page .divider{

width:2px;

background:

linear-gradient(

180deg,

transparent,

#dbe4ef,

transparent

);

}

/* TITLES */

.dental-tips-page .myth-side span{

display:block;

font-size:34px;

font-weight:700;

color:#dc2626;

margin-bottom:18px;

}

.dental-tips-page .fact-side span{

display:block;

font-size:34px;

font-weight:700;

color:#16a34a;

margin-bottom:18px;

}

/* TEXT */

.dental-tips-page .myth-side p,
.dental-tips-page .fact-side p{

font-size:18px;

line-height:1.9;

color:#475569;

margin:0;

}

/* PAGINATION */

.dental-tips-page .mythSwiper .swiper-pagination{

bottom:0;

}

.dental-tips-page .mythSwiper .swiper-pagination-bullet{

width:12px;

height:12px;

background:#cbd5e1;

opacity:1;

transition:.3s;

}

.dental-tips-page .mythSwiper .swiper-pagination-bullet-active{

background:#2563eb;

width:34px;

border-radius:30px;

}

/* TABLET */

@media(max-width:991px){

.dental-tips-page .myth-fact{

padding:90px 0;

}

.dental-tips-page .mythfact-card{

padding:28px;

gap:22px;

}

.dental-tips-page .myth-side,
.dental-tips-page .fact-side{

padding:28px;

}

}

/* MOBILE */

@media(max-width:768px){

.dental-tips-page .myth-fact{

padding:80px 0;

}

.dental-tips-page .myth-fact .section-heading h2{

font-size:36px;

}

.dental-tips-page .myth-fact .section-heading p{

font-size:16px;

}

.dental-tips-page .mythfact-card{

flex-direction:column;

padding:24px;

min-height:auto;

gap:18px;

}

.dental-tips-page .divider{

width:100%;

height:2px;

}

.dental-tips-page .myth-side,
.dental-tips-page .fact-side{

padding:25px;

}

.dental-tips-page .myth-side span,
.dental-tips-page .fact-side span{

font-size:28px;

}

.dental-tips-page .myth-side p,
.dental-tips-page .fact-side p{

font-size:16px;

line-height:1.8;

}

}

/* ===========================
FAQ SECTION
=========================== */

.dental-tips-page .faq-section{

padding:110px 0;

background:#f8fbff;

position:relative;

overflow:hidden;

}

/* HEADING */

.dental-tips-page .faq-section .section-heading{

text-align:center;

margin-bottom:60px;

}

.dental-tips-page .faq-section .section-heading h2{

font-size:52px;

font-weight:800;

color:#0f2b5b;

margin-bottom:18px;

line-height:1.2;

}

.dental-tips-page .faq-section .section-heading p{

max-width:700px;

margin:auto;

font-size:18px;

color:#64748b;

line-height:1.8;

}

/* FAQ GRID */

.dental-tips-page .faq-container{

display:grid;

grid-template-columns:
repeat(2,1fr);

gap:28px;

}

/* CARD */

.dental-tips-page .faq-item{

background:#fff;

padding:35px;

border-radius:28px;

box-shadow:

0 10px 30px
rgba(15,43,91,.06);


transition:.35s ease;

position:relative;

overflow:hidden;

height:100%;

}

/* TOP LIGHT EFFECT */

.dental-tips-page .faq-item::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:

linear-gradient(
90deg,
#2563eb,
#3b82f6
);

opacity:0;

transition:.35s;

}

/* HOVER */

.dental-tips-page .faq-item:hover{

transform:
translateY(-10px);

box-shadow:

0 18px 45px
rgba(15,43,91,.12);

}

.dental-tips-page .faq-item:hover::before{

opacity:1;

}

/* QUESTION */

.dental-tips-page .faq-item h3{

font-size:22px;

font-weight:700;

line-height:1.5;

color:#0f2b5b;

margin-bottom:16px;

display:flex;

align-items:flex-start;

gap:14px;

}

/* ICON */

.dental-tips-page .faq-item h3::before{

content:"?";

min-width:40px;

width:40px;

height:40px;

border-radius:50%;

background:

linear-gradient(
135deg,
#2563eb,
#1d4ed8
);

display:flex;

align-items:center;

justify-content:center;

font-size:20px;

font-weight:700;

color:white;

flex-shrink:0;

}

/* ANSWER */

.dental-tips-page .faq-item p{

font-size:16px;

line-height:1.9;

color:#64748b;

margin:0;

padding-left:54px;

}

/* TABLET */

@media(max-width:991px){

.dental-tips-page .faq-container{

grid-template-columns:1fr;

gap:24px;

}

}

/* MOBILE */

@media(max-width:768px){

.dental-tips-page .faq-section{

padding:80px 0;

}

.dental-tips-page .faq-section .section-heading h2{

font-size:36px;

}

.dental-tips-page .faq-item{

padding:28px;

border-radius:22px;

}

.dental-tips-page .faq-item h3{

font-size:18px;

gap:12px;

}

.dental-tips-page .faq-item h3::before{

width:34px;

height:34px;

min-width:34px;

font-size:16px;

}

.dental-tips-page .faq-item p{

padding-left:46px;

font-size:15px;

line-height:1.8;

}

}

/* ===========================
INTERESTING DENTAL FACTS
=========================== */

.dental-tips-page .dental-facts-section{

padding:110px 0;

background:#f8fbff;

position:relative;

overflow:hidden;

}

/* HEADING */

.dental-tips-page .dental-facts-section .section-heading{

text-align:center;

margin-bottom:65px;

}

.dental-tips-page .dental-facts-section .section-heading h2{

font-size:52px;

font-weight:800;

color:#0f2b5b;

margin-bottom:18px;

line-height:1.2;

}

.dental-tips-page .dental-facts-section .section-heading p{

font-size:18px;

color:#64748b;

max-width:700px;

margin:auto;

line-height:1.8;

}

/* GRID */

.dental-tips-page .facts-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;

}

/* CARD */

.dental-tips-page .fact-card{

background:#fff;

padding:42px 34px;

border-radius:28px;

text-align:center;

box-shadow:

0 10px 35px
rgba(15,43,91,.06);

transition:.35s ease;

position:relative;

overflow:hidden;

height:100%;

border:1px solid #edf2f7;

}

/* TOP ACCENT */

.dental-tips-page .fact-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:

linear-gradient(
90deg,
#2563eb,
#3b82f6
);

opacity:0;

transition:.35s;

}

/* HOVER */

.dental-tips-page .fact-card:hover{

transform:
translateY(-12px);

box-shadow:

0 20px 50px
rgba(15,43,91,.12);

}

.dental-tips-page .fact-card:hover::before{

opacity:1;

}

/* ICON */

.dental-tips-page .fact-card{

font-size:64px;

}

/* TITLE */

.dental-tips-page .fact-card h3{

font-size:24px;

font-weight:700;

line-height:1.4;

color:#0f2b5b;

margin-top:22px;

margin-bottom:16px;

}

/* TEXT */

.dental-tips-page .fact-card p{

font-size:16px;

line-height:1.9;

color:#64748b;

margin:0;

}

/* TABLET */

@media(max-width:991px){

.dental-tips-page .facts-grid{

grid-template-columns:
repeat(2,1fr);

}

}

/* MOBILE */

@media(max-width:768px){

.dental-tips-page .dental-facts-section{

padding:80px 0;

}

.dental-tips-page .dental-facts-section .section-heading h2{

font-size:36px;

}

.dental-tips-page .dental-facts-section .section-heading p{

font-size:16px;

}

.dental-tips-page .facts-grid{

grid-template-columns:1fr;

gap:22px;

}

.dental-tips-page .fact-card{

padding:32px 25px;

border-radius:22px;

font-size:52px;

}

.dental-tips-page .fact-card h3{

font-size:21px;

}

.dental-tips-page .fact-card p{

font-size:15px;

line-height:1.8;

}

}

/* ==========================
DENTAL EMERGENCY GUIDE
========================== */

.dental-tips-page .dental-guide{

padding:110px 0;

background:#ffffff;

position:relative;

overflow:hidden;

}

/* HEADING */

.dental-tips-page .dental-guide .section-heading{

text-align:center;

margin-bottom:70px;

}

.dental-tips-page .dental-guide .section-heading h2{

font-size:52px;

font-weight:800;

line-height:1.2;

color:#0f2b5b;

margin-bottom:18px;

}

.dental-tips-page .dental-guide .section-heading p{

font-size:18px;

line-height:1.8;

max-width:700px;

margin:auto;

color:#64748b;

}

/* GRID */

.dental-tips-page .dental-guide .tips-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;

}

/* CARD */

.dental-tips-page .dental-guide .tip-card{

background:#fff;

padding:42px 35px;

border-radius:30px;

text-align:center;

box-shadow:
0 10px 35px rgba(15,43,91,.06);

border:1px solid #edf2f7;

transition:.35s ease;

position:relative;

overflow:hidden;

height:100%;

}

/* TOP ACCENT */

.dental-tips-page .dental-guide .tip-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:
linear-gradient(
90deg,
#377DF4
);

opacity:0;

transition:.3s;

}

/* HOVER */

.dental-tips-page .dental-guide .tip-card:hover{

transform:
translateY(-12px);

box-shadow:
0 20px 50px rgba(15,43,91,.12);

}

.dental-tips-page .dental-guide .tip-card:hover::before{

opacity:1;

}

/* ICON */

.dental-tips-page .dental-guide .tip-icon{

width:95px;

height:95px;

margin:auto;

margin-bottom:25px;

display:flex;

align-items:center;

justify-content:center;

font-size:52px;

border-radius:24px;

background:
linear-gradient(
135deg,
#eff6ff,
#dbeafe
);

}

/* TITLE */

.dental-tips-page .dental-guide .tip-card h3{

font-size:25px;

font-weight:700;

line-height:1.4;

color:#0f2b5b;

margin-bottom:16px;

}

/* TEXT */

.dental-tips-page .dental-guide .tip-card p{

font-size:16px;

line-height:1.9;

color:#64748b;

margin:0;

}

/* TABLET */

@media(max-width:991px){

.dental-tips-page .dental-guide{

padding:90px 0;

}

.dental-tips-page .dental-guide .tips-grid{

grid-template-columns:
repeat(2,1fr);

}

}

/* MOBILE */

@media(max-width:768px){

.dental-tips-page .dental-guide{

padding:80px 0;

}

.dental-tips-page .dental-guide .section-heading h2{

font-size:36px;

}

.dental-tips-page .dental-guide .section-heading p{

font-size:16px;

}

.dental-tips-page .dental-guide .tips-grid{

grid-template-columns:1fr;

gap:22px;

}

.dental-tips-page .dental-guide .tip-card{

padding:35px 25px;

border-radius:22px;

}

.dental-tips-page .dental-guide .tip-icon{

width:80px;

height:80px;

font-size:42px;

}

.dental-tips-page .dental-guide .tip-card h3{

font-size:22px;

}

.dental-tips-page .dental-guide .tip-card p{

font-size:15px;

line-height:1.8;

}

}

/* ==========================
FOOD GUIDE SECTION
========================== */

.dental-tips-page .food-guide{

padding:110px 0;

background:#f8fbff;

position:relative;

overflow:hidden;

}

/* HEADING */

.dental-tips-page .food-guide .section-heading{

text-align:center;

margin-bottom:70px;

}

.dental-tips-page .food-guide .section-heading h2{

font-size:52px;

font-weight:800;

line-height:1.2;

color:#0f2b5b;

margin-bottom:18px;

max-width:850px;

margin-left:auto;

margin-right:auto;

}

.dental-tips-page .food-guide .section-heading p{

font-size:18px;

line-height:1.8;

max-width:720px;

margin:auto;

color:#64748b;

}

/* GRID */

.dental-tips-page .food-guide .facts-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;

}

/* CARD */

.dental-tips-page .food-guide .fact-card{

background:#fff;

padding:42px 35px;

border-radius:28px;

text-align:center;

position:relative;

overflow:hidden;

height:100%;

border:1px solid #edf2f7;

box-shadow:

0 10px 35px
rgba(15,43,91,.06);

transition:.35s ease;

}

/* TOP ACCENT */

.dental-tips-page .food-guide .fact-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:

linear-gradient(
90deg,#377DF4
);

opacity:0;

transition:.35s;

}

/* HOVER */

.dental-tips-page .food-guide .fact-card:hover{

transform:
translateY(-12px);

box-shadow:

0 22px 50px
rgba(15,43,91,.12);

}

.dental-tips-page .food-guide .fact-card:hover::before{

opacity:1;

}

/* ICON */

.dental-tips-page .food-guide .fact-card{

font-size:65px;

}

/* TITLE */

.dental-tips-page .food-guide .fact-card h3{

font-size:25px;

font-weight:700;

line-height:1.4;

color:#0f2b5b;

margin-top:22px;

margin-bottom:16px;

}

/* TEXT */

.dental-tips-page .food-guide .fact-card p{

font-size:16px;

line-height:1.9;

color:#64748b;

margin:0;

}

/* TABLET */

@media(max-width:991px){

.dental-tips-page .food-guide{

padding:90px 0;

}

.dental-tips-page .food-guide .facts-grid{

grid-template-columns:
repeat(2,1fr);

}

}

/* MOBILE */

@media(max-width:768px){

.dental-tips-page .food-guide{

padding:80px 0;

}

.dental-tips-page .food-guide .section-heading h2{

font-size:36px;

}

.dental-tips-page .food-guide .section-heading p{

font-size:16px;

}

.dental-tips-page .food-guide .facts-grid{

grid-template-columns:1fr;

gap:22px;

}

.dental-tips-page .food-guide .fact-card{

padding:34px 25px;

border-radius:22px;

font-size:54px;

}

.dental-tips-page .food-guide .fact-card h3{

font-size:22px;

}

.dental-tips-page .food-guide .fact-card p{

font-size:15px;

line-height:1.8;

}

}

/* ==========================
DENTAL TIPS CTA SECTION
========================== */

.dental-tips-page .tips-cta{

padding:100px 0;

background:

linear-gradient(
135deg,
#0d47a1,
#2563eb
);

position:relative;

overflow:hidden;

text-align:center;

color:#fff;

border-radius:40px;

margin:80px 25px;

box-shadow:

0 25px 60px rgba(13,71,161,.18);

}

/* Glow */

.dental-tips-page .tips-cta::before{

content:"";

position:absolute;

width:320px;

height:320px;

background:

rgba(255,255,255,.08);

border-radius:50%;

top:-120px;

left:-100px;

filter:blur(15px);

}

.dental-tips-page .tips-cta::after{

content:"";

position:absolute;

width:260px;

height:260px;

background:

rgba(255,255,255,.08);

border-radius:50%;

bottom:-120px;

right:-80px;

filter:blur(12px);

}

.dental-tips-page .tips-cta .container{

position:relative;

z-index:2;

max-width:800px;

}

/* Heading */

.dental-tips-page .tips-cta h2{

font-size:54px;

font-weight:800;

line-height:1.1;

margin-bottom:20px;

color:#fff;

}

/* Text */

.dental-tips-page .tips-cta p{

font-size:20px;

line-height:1.8;

color:

rgba(255,255,255,.9);

max-width:620px;

margin:auto;

margin-bottom:35px;

}

/* Button */

.dental-tips-page .tips-cta a{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 42px;

background:#fff;

color:#0d47a1;

font-size:17px;

font-weight:700;

border-radius:60px;

text-decoration:none;

transition:.35s ease;

box-shadow:

0 15px 30px rgba(0,0,0,.15);

}

.dental-tips-page .tips-cta a:hover{

transform:

translateY(-5px);

background:#f5f9ff;

box-shadow:

0 20px 40px rgba(0,0,0,.2);

}

/* Tablet */

@media(max-width:991px){

.dental-tips-page .tips-cta{

padding:80px 30px;

margin:70px 20px;

}

.dental-tips-page .tips-cta h2{

font-size:42px;

}

}

/* Mobile */

@media(max-width:768px){

.dental-tips-page .tips-cta{

padding:65px 25px;

border-radius:25px;

margin:60px 15px;

}

.dental-tips-page .tips-cta h2{

font-size:32px;

}

.dental-tips-page .tips-cta p{

font-size:16px;

}

.dental-tips-page .tips-cta a{

width:100%;

padding:16px 28px;

font-size:16px;

}

}

/* ===================================
   BLOG SECTION
=================================== */

.blog{
    position:relative;
    overflow:hidden;
    background:#ffffff;
}

/* ===================================
   HERO
=================================== */

.blog .blog-hero{
    background:#eef5ff;
    padding:120px 0 180px;
    text-align:center;
    position:relative;
}

.blog .blog-hero::before{
    content:'';
    position:absolute;
    top:-80px;
    left:-80px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(22,155,245,.08);
}

.blog .blog-hero::after{
    content:'';
    position:absolute;
    right:-80px;
    bottom:-80px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(22,155,245,.08);
}

.blog .blog-subtitle{
    display:inline-block;
    color:#169BF5;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.blog .blog-heading{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    color:#0A1F63;
    max-width:900px;
    margin:auto;
}

.blog .blog-text{
    max-width:850px;
    margin:30px auto 0;
    color:#5f6d87;
    font-size:20px;
    line-height:1.9;
}

/* ===================================
   BLOG LISTING
=================================== */

.blog .blog-listing{
    margin-top:-90px;
    padding-bottom:120px;
    position:relative;
    z-index:10;
}

.blog .blog-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.blog .blog-card:hover{
    transform:translateY(-12px);
}

.blog .blog-card-image{
    overflow:hidden;
}

.blog .blog-card-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.blog .blog-card:hover .blog-card-image img{
    transform:scale(1.08);
}

.blog .blog-card-content{
    padding:35px;
}

.blog .blog-card-category{
    display:inline-block;
    background:#169BF5;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.blog .blog-card-content h3{
    font-size:30px;
    color:#0A1F63;
    font-weight:700;
    line-height:1.3;
    margin-bottom:18px;
}

.blog .blog-card-content p{
    color:#5f6d87;
    line-height:1.8;
    margin-bottom:25px;
}

.blog .blog-card-btn{
    color:#169BF5;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.blog .blog-card-btn:hover{
    color:#0A1F63;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:991px){

.blog .blog-hero{
    padding:100px 0 160px;
}

.blog .blog-heading{
    font-size:52px;
}

.blog .blog-text{
    font-size:18px;
}

.blog .blog-card-content h3{
    font-size:24px;
}

}

/* ===================================
   MOBILE
=================================== */

@media(max-width:767px){

.blog .blog-hero{
    padding:80px 0 140px;
}

.blog .blog-heading{
    font-size:34px;
}

.blog .blog-text{
    font-size:16px;
    line-height:1.8;
}

.blog .blog-listing{
    margin-top:-70px;
    padding-bottom:80px;
}

.blog .blog-card-image img{
    height:220px;
}

.blog .blog-card-content{
    padding:25px;
}

.blog .blog-card-content h3{
    font-size:22px;
}

}

/* ==============================
   PREMIUM CTA
================================ */

.blog .blog-cta{
    padding:120px 0;
    background:#ffffff;
}

.blog .blog-cta-box{

    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #0A1F63 0%,
    #0f4ca5 50%,
    #169BF5 100%
    );

    border-radius:40px;

    padding:80px;

    box-shadow:
    0 30px 80px rgba(22,155,245,.25);
}

.blog .blog-cta-box::before{
    content:'';
    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    top:-250px;
    right:-150px;
}

.blog .blog-cta-box::after{
    content:'';

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
    rgba(255,255,255,.06);

    bottom:-100px;
    left:-100px;
}

.blog .blog-cta-tag{
    display:inline-block;

    background:
    rgba(255,255,255,.15);

    color:#fff;

    padding:12px 22px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;
}

.blog .blog-cta h2{

    color:white;

    font-size:58px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;
}

.blog .blog-cta p{

    color:
    rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;
}

.blog .blog-cta-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:15px;
}

.blog .blog-highlight{

    background:
    rgba(255,255,255,.12);

    color:white;

    padding:12px 18px;

    border-radius:50px;

    font-size:14px;

    backdrop-filter:blur(10px);
}

.blog .blog-cta-action{

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    padding:30px;

    border-radius:30px;
}

.blog .blog-btn-main{

    display:block;

    width:100%;

    text-align:center;

    padding:18px;

    background:white;

    color:#0A1F63;

    border-radius:60px;

    font-weight:700;

    text-decoration:none;

    margin-bottom:15px;

    transition:.3s;
}

.blog .blog-btn-main:hover{
    transform:translateY(-4px);
}

.blog .blog-btn-outline{

    display:block;

    width:100%;

    text-align:center;

    padding:18px;

    border:2px solid rgba(255,255,255,.3);

    color:white;

    border-radius:60px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;
}

.blog .blog-btn-outline:hover{

    background:white;

    color:#0A1F63;
}

/* MOBILE */

@media(max-width:991px){

.blog .blog-cta-box{
    padding:50px 35px;
}

.blog .blog-cta h2{
    font-size:40px;
}

.blog .blog-cta-action{
    margin-top:30px;
}

}

@media(max-width:767px){

.blog .blog-cta{
    padding:80px 0;
}

.blog .blog-cta-box{
    padding:35px 25px;
}

.blog .blog-cta h2{
    font-size:32px;
}

.blog .blog-cta-highlights{
    flex-direction:column;
}

}


/* ==============================
   Braces vs Aligners Section
================================ */


.bracesvsaligners-section{
    background:#fff;
    padding-bottom:80px;
}

.bracesvsaligners-hero{
    position:relative;
    height:500px;
    overflow:hidden;
}

.bracesvsaligners-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.bracesvsaligners-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.70)
    );
    display:flex;
    align-items:center;
}

.bracesvsaligners-category{
    display:inline-block;
    background:#082869;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
}

.bracesvsaligners-hero h1{
    color:#fff;
    font-size:52px;
    line-height:1.2;
    max-width:900px;
    margin-bottom:20px;
}

.bracesvsaligners-meta{
    color:#fff;
    display:flex;
    gap:25px;
}

.bracesvsaligners-wrapper{
    display:flex;
    gap:50px;
    margin-top:60px;
}

.bracesvsaligners-content{
    flex:1;
    min-width:0;
}

.bracesvsaligners-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:22px;
}

.bracesvsaligners-content h2{
    font-size:34px;
    color:#222;
    margin-top:50px;
    margin-bottom:20px;
}

.bracesvsaligners-content ul{
    padding-left:25px;
    margin-bottom:25px;
}

.bracesvsaligners-content li{
    margin-bottom:12px;
    color:#555;
    line-height:1.8;
}

.bracesvsaligners-highlight-box{
    background:#f7fbfb;
    border-left:5px solid #082869;
    padding:30px;
    border-radius:12px;
    margin:30px 0;
}

.bracesvsaligners-highlight-box h4{
    margin-bottom:15px;
    color:#082869;
}

.bracesvsaligners-comparison{
    margin-top:25px;
}

.bracesvsaligners-comparison-item{
    background:#f8f8f8;
    padding:18px 25px;
    margin-bottom:15px;
    border-radius:10px;
}

.bracesvsaligners-sidebar{
    width:330px;
}

.bracesvsaligners-sidebar-box{
    position:sticky;
    top:100px;
    background:#fff;
    border:1px solid #eee;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.bracesvsaligners-sidebar-box h3{
    margin-bottom:25px;
    color:#222;
}

.bracesvsaligners-blog-link{
    display:block;
    color:#333;
    font-weight:600;
    text-decoration:none;
    padding:15px 0;
    border-bottom:1px solid #eee;
    transition:0.3s;
}

.bracesvsaligners-blog-link:hover{
    color:#082869;
    padding-left:8px;
}

.bracesvsaligners-cta{

    position:relative;

    overflow:hidden;

    margin-top:60px;

    padding:60px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    #0A1F63 0%,
    #169BF5 100%
    );

    text-align:center;

    box-shadow:
    0 25px 60px rgba(22,155,245,.25);
}

.bracesvsaligners-cta-shape{

    position:absolute;

    top:-120px;

    right:-120px;

    width:300px;

    height:300px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);
}

.bracesvsaligners-cta-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:
    rgba(255,255,255,.15);

    color:#fff;

    font-size:18px;

    font-weight:600;

    margin-bottom:20px;
}

.bracesvsaligners-cta h3{

    color:#fff;

    font-size:32px;

    font-weight:800;

    margin-bottom:20px;
}

.bracesvsaligners-cta p{

    max-width:700px;

    margin:auto;

    color:
    rgba(255,255,255,.9);

    font-size:18px;

    line-height:1.8;

    margin-bottom:30px;
}


.bracesvsaligners-cta-buttons{

    display:flex;

    justify-content:center;

    gap:15px;
}

.bracesvsaligners-btn-primary{

    background:#fff;

    color:#0A1F63;

    text-decoration:none;

    padding:16px 35px;

    border-radius:60px;

    font-weight:700;

    transition:.3s;
}

.bracesvsaligners-btn-primary:hover{

    transform:translateY(-3px);

    color:#0A1F63;
}

.bracesvsaligners-btn-secondary{

    border:2px solid rgba(255,255,255,.4);

    color:white;

    text-decoration:none;

    padding:16px 35px;

    border-radius:60px;

    font-weight:700;

    transition:.3s;
}

.bracesvsaligners-btn-secondary:hover{

    background:white;

    color:#0A1F63;
}

@media(max-width:991px){

.bracesvsaligners-wrapper{
    flex-direction:column;
}

.bracesvsaligners-sidebar{
    width:100%;
}

.bracesvsaligners-sidebar-box{
    position:relative;
    top:auto;
}

.bracesvsaligners-hero{
    height:400px;
}

.bracesvsaligners-hero h1{
    font-size:38px;
}

}

@media(max-width:767px){

.bracesvsaligners-hero{
    height:320px;
}

.bracesvsaligners-hero h1{
    font-size:28px;
}

.bracesvsaligners-content h2{
    font-size:26px;
}

.bracesvsaligners-content p{
    font-size:16px;
}

.bracesvsaligners-cta{

    padding:40px 25px;
}

.bracesvsaligners-cta h3{

    font-size:30px;
}

.bracesvsaligners-cta p{

    font-size:15px;
}

.bracesvsaligners-cta-buttons{

    flex-direction:column;
}
}