/**
* Template Name: Clinic
* Template URL: https://bootstrapmade.com/clinic-bootstrap-template/
* Updated: Jul 23 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font:  "Josefin Sans", sans-serif;
  --heading-font:  "Josefin Sans", sans-serif;
  --nav-font:  "Josefin Sans", 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: #f39c12; /* 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: rgb(79 94 172); /* 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: #222222;
  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 {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 0 30px !important;
}
@media (max-width:1199px){
    .header {
  padding: 0 10px !important;
}

}
.fixed-top {
    top: 15px; 
}
.scrolled .header.fixed-top {
    --background-color: #ffffff;
    top: 0px;
    border-radius: 0px 0px 10px 10px;
}
.header .branding {
  min-height: 60px;
  padding: 0px 0;
  background-color: white;
  border-radius: 10px;
}

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

.header .logo img {
  max-height: 80px;
  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
--------------------------------------------------------------*/
@media (max-width:1199px){
.mobile-none {
    display: none;
}
}

/* 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: 20px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    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 .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: 20px;
    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
--------------------------------------------------------------*/
@media (max-width:991px){
 .footer-16 .brand-section .logo {
    justify-content: center !important;
}   
}

.footer img {
    width: 80%;
}
.footer-16 {
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 80px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

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

.footer-16 .brand-section .logo {
  text-decoration: none;
}



.footer-16 .brand-section .brand-description {
  font-size: 18px;
  line-height: 1.7;
  color: #222222;
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}

.footer-16 .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  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: 0px;
  }
}

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

.footer-16 .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  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: #222222;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  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 .container{
  padding: 20px 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 .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.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: 60px 0 0;
  }

  .footer-16 .brand-section {
    text-align: center;
    margin-bottom: 50px;
  }

  .footer-16 .brand-section .brand-description {
    max-width: none;
  }

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

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

  .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;
}

.page-title .heading {
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 325px;
  display: flex;
  align-items: flex-end;
}
@media (max-width:991px){
    .page-title .heading {
    padding: 40px 0;
    min-height: 230px;
}
.where-meels h2 {
    text-align: center;
}
.where-meels p {
    text-align: center;
    padding: 0px !important;
}
}
.page-title .heading h1 {
  font-size: 42px;
  color:white;
  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 p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.tst-menu:after {
    content: '';
    height: 10px;
    width: calc(100% - -119px);
    position: absolute;
    bottom: -10px;
    border-radius: 0 0 5px 5px;
    background-color: #f2f6f7;
    opacity: .15;
    left: -60px;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(at center center, #000000ba 0%, #0000006e 100%);
    overflow: hidden;
}


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

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


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


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

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 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);
  }
}

.hero .row {
    padding-top: 85px;
}
@media (max-width:991px){
    .hero .row {
    padding-top: 50px !important;
}
}
.btn0 {
    background: #f39c12;
    font-size: 19px;
    color: #222222;
    padding: 8px 20px;
}
a.btn0:hover {
    background: #fcb23e;
}
.btn1 {
    background: #ffffff;
    color: #222222;
    font-size: 19px;
    padding: 9px 22px;
}
a.btn1:hover {
        color: #f39c12;
}
.hero h1{
    font-size:90px;
    color:#f39c12;
    font-weight: 800;
    padding-top: 50px;
}
.hero p {
    font-size: 24px;
    margin:0px;
}
.banner-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 45px;
}
.banner-divider div {
    display:none;
    background: #f39c12;
    height: 4px;
    width: 45px;
    border-radius: 20px;
}
.mobilemenu{
    display:none;
}
@media (max-width:1199px){
    .branding a.btn0 {
    display: none;
}
.header .logo img {
    max-height: 60px;
}
.tst-menu {
    flex-direction: row-reverse;
}
.mobilemenu{
    display:block !important;
}
.hero h1 {
    font-size: 45px;
}
.hero p {
    font-size: 20px;
}
.banner-divider div {
    display: none;
}
.banner-divider {
    padding-bottom: 20px;
}
.hero .content {
    padding-left: 20px;
    padding-right: 20px;
}
.tst-menu:after {
    width: calc(100% - 11px);
    left: 6px;
}
}
/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
/* Remove default body spacing */
body {
    margin: 0;
}

/* Remove spacing from hero */
#hero {
    padding: 0;
    margin: 0;
}

/* Full screen hero */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;   /* Full screen */
    overflow: hidden;
}

/* Make video fully cover */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Center content */
.content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.home-about {
  padding: 80px 0;
  background-color: var(--surface-color);
}

.section-heading {
    font-size: 24px;
    font-weight: 600;
    color: #f39c12;
    line-height: 1.3;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
 .section-heading {
    font-size: 20px;
}
}

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

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

.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 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


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

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

  .home-about .about-content .stats-grid {
    margin: 2rem 0;
  }
  h2 {
    line-height: 1em !important;
    padding-bottom: 10px !important;
    font-size:26px !important;
}
}
h2 {
    color: #222222;
    font-size: 35px;
    margin: 0px;
}
.about-content p {
    width: 63%;
    line-height: 1.3em !important;
    margin: 0 auto;
}
@media (max-width:1199px){
    .about-content p {
    width: 100% !important;
    line-height: 1.3em !important;
    margin: 0 auto;
}
}


/*--------------------------------------------------------------
# about us 
--------------------------------------------------------------*/
.menusr {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
.menusr:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 24, 25, 0) 38.69%, rgba(0, 24, 25, 0.6) 66.87%, #222222 100%);
    z-index: 2;
}
.menusr h4{
    color:white;
    z-index: 999;
    font-size: 18px;
}
.box {
  width: 100%;
  height: 250px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.menus-blocks .col-lg-2{
    padding: 5px;
}
.menus-blocks {
    padding-left: 15px;
    padding-right: 15px;
}
.box-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(142px);
  transition: transform 0.2s 0.2s linear;
}

.box:after {
  content: " ";
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0.2;
  transition: opacity 0.2s linear;
}
.box:hover:after {
  opacity: 0.7;
}

.box:before {
  content: " ";
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 20px;
  right: 20px;
  border: 1px solid #fff;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.2s linear, opacity 0.2s linear;
  transform: scale(0.7);
  opacity: 0;
}

.show-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s 0.2s linear;
}

.box:hover .show-animate {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s linear;
}

.box:hover .box-content {
  transform: translateY(0);
}

.box:hover:before {
  transform: scale(1);
  opacity: 1;
}

.box:hover .show-item {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.2s 0.4s linear, opacity 0.2s 0.4s linear;
}


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



.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 .image-wrapper {
  position: relative;
}


.about .image-wrapper .floating-image {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--surface-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 768px) {
  .about .image-wrapper .floating-image {
    width: 150px;
    height: 150px;
    bottom: -20px;
    right: -20px;
    border-width: 6px;
  }
}

.about .image-wrapper .floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.about .certifications-section .certification-item {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  height: 120px;
  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-height: 60px;
  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 .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 .values-section .value-item {
    margin-bottom: 2rem;
  }

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


/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

 .features img {
    width: 21%;
    padding-bottom: 30px;
}
 .features h4 {
    color: #222222;
}
@media (max-width:991px){
    .features .col-lg-4 {
    text-align: center;
    padding-bottom: 25px;
}
.features img {
    padding-bottom: 15px;
}
li.header-icon.header-i {
    margin-right: 0px !important;
}
li.header-icon {
    display: none !important;
}
section.regalphotos {
    padding-left: 12px;
    padding-right: 12px;
    text-align: center;
}
.text-block-r {
    padding:0px 0px 25px 0px !important;
}
.text-block-r2 {
    padding: 25px 0px 0px 0px !important;
}
.menusr h4 {
    margin-bottom: 40px !important;
}
.gallery-pageimg .col-lg-3 {
    text-align: center;
}
.gallery-pageimg img {
    padding: 0px 0px 20px 0px !important;
}
}

.footer-g img {
    width: 90px;
    height: 65px;
    object-fit: cover;
}


li.header-icon {
    background-color: #f39c12;
    margin-right: 10px;
    padding: 9px 9px !important;
}
.header-icon i {
    color: white;
    font-size: 19px !important;
    margin: 0px !important;
}
li.header-icon.header-i {
    margin-right: 30px;
}
.box_how {
    background-color: white;
    box-shadow: 0 0 32px -7px rgba(0, 0, 0, 0.1);
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
}
.box_how h3 {
    font-size: 22px;
}
.box_how img {
    width: 25%;
    margin-bottom: 20px;
}
.gallery-pageimg img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    padding: 20px;
}
.pdf-container {
    width: 100%;
    height: 100vh; /* Full screen height */
}
.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.regalphotos img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.text-block-r {
    padding: 25px 25px 25px 0px;
}
.text-block-r2 {
    padding: 25px 0px 25px 25px;
}