* {margin: 0;padding: 0;box-sizing: border-box;}

/* @font-face {
    font-family: "poppins";
    src: url("../fonts/poppins-webfont.eot");
    src: url("../fonts/poppins-webfont.eot?#iefix") format("embedded-opentype"),
         url("../fonts/poppins-webfont.woff2") format("woff2"),
         url("../fonts/poppins-webfont.woff") format("woff"),
         url("../fonts/poppins-webfont.ttf") format("truetype"),
         url("../fonts/poppins-webfont.svg#poppinsregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Roboto-Slab-Regular";
    src: url("../fonts/Roboto-Slab-Regular.eot");
    src: local("../fonts/Roboto-Slab-Regular"), local("Roboto-Slab-Regular"),
    url("../fonts/Roboto-Slab-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-Slab-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Slab-Regular.woff") format("woff"),
    url("../fonts/Roboto-Slab-Regular.ttf") format("truetype"),
    url("../fonts/Roboto-Slab-Regular.svg#Roboto-Slab") format("svg");
} */
:root {
    --default-color:#1e1e1e;
    --accent-color:#82AA4B;
    --surface-color:#FFCC29;
    --white-color: rgba(255, 255, 255, 1);

    /* Background color define */
    --darkgreenbg:radial-gradient(50% 50% at 50% 50%, #257462 0%, #0B3229 100%);
    --lightbluebg:#EDF5FF;
    --lightyellowbg: #FAF7EE;


  /* Typography */
  --heading-font: 'Roboto Slab', serif;
  --default-font: 'Poppins', sans-serif;
  --font-xs: 8px;
  --font-sm: 16px;
  --font-base: 18px;
  --font-md: 24px;
  --font-lg: 30px;
  --font-xl: 50px;
  --font-xxl: 60px;

  /* Spacing */
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 50px;
  --spacing-xxl: 60px;
  --spacing-xxxl: 100px;
  }

  @media (prefers-color-scheme: dark) {
  :root {
    --color-text: papayawhip;
    --color-bg: navy;
    --color-bg-accent: #2626a0;
  }
}

  .dark-background {
    --background-color: rgba(19, 35, 61, 1);
    --surface-color: rgba(74, 99, 130, 1);
}
/* Smooth scroll */
:root {scroll-behavior: smooth;}

/*-- # General Styling & Shared Classes --*/
body {
  color: var(--default-color);
  font-family: var(--default-font);
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
}

a {text-decoration: none;transition: all 0.3s linear;}
html {scroll-behavior: smooth;}
ol, ul {padding-left: 0rem;}
ol li, ul li{font-family: var(--default-font);}
img{height:auto;}
h1, h2, h3, h4, h5, h6 {font-family: var(--heading-font);}
.mainheading{font-family: var(--heading-font);font-size:var(--font-xl);font-weight: 600; font-optical-sizing: auto;font-style: normal;padding-bottom: var(--font-sm);}
.subheading{font-family: var(--heading-font);font-size:var(--font-lg);font-weight: 600;padding-bottom: var(--font-sm);line-height: 1.4;}
.mainsubheading{font-family: var(--heading-font);font-size:20px;font-weight: 600;padding-bottom: var(--font-sm);line-height: 1.4;}
.paraheading{font-size:18px;font-family: var(--heading-font);font-weight: 500;padding-bottom:3px;}
.w-100 {width: 100% !important;}
.h-100 {height: 100% !important;}
.whitecolor{color: #fff;}

/* Start of main css */

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--white-color);
  color: var(--default-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--white-color);
  background: var(--accent-color);
  font-size: 1rem;
  padding: 11px 25px;
  margin: 0 0 0 20px;
  border-radius: 0px 20px 0 20px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color:#fff;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
/* .scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
} */
.scrolled #header {
box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
background-color: white;
transition: box-shadow 0.3s ease;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(34, 18, 2, 0.9);
}

/* Start of menu css */
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
.headercontainer{max-width: 1320px;}
.navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 11px;
    font-size: 16px;
    font-family: var(--default-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:hover>a img {
      filter: brightness(0) saturate(100%) invert(64%) sepia(27%) saturate(356%) hue-rotate(34deg) brightness(94%) contrast(93%);
}

/* .navmenu li:hover > a svg {
  fill: #82AA4B;
} */

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--white-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0px;
    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: 220px;
  }

  .navmenu .dropdown ul a {
    padding: 7px 14px;
    font-size: 15px;
    text-transform: none;
    color: var(--default-font);
  }

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

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

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

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

/* Start of rqst_callback_form */
.rqstcallbackform {padding: 20px 0px; border-bottom: #ddd 1px solid;}
#capt img{height: 46px;width: 100%;}
.captcha_field{display: flex;align-items: center;}
.callbackcaptchpics{width: 78%;}
.callbackcaptchpics img{width: 100%; height: 44px;}
.refresh_btn{padding: 0px;cursor: pointer; margin: 0 auto;width: 20%;text-align: center; background-color: #82AA4B;}
.refresh_btn img{filter: brightness(0) invert(1);}
.error-message{font-size: 10px;color: red;text-align: left;}
.fields.form-control{border-radius: 0px !important;box-shadow: rgb(0 0 0 / .1) 0 0 5px 0, rgb(0 0 0 / .1) 0 0 1px 0;height: 44px;border: 1px solid rgba(195, 202, 206, 1);
padding-left:12px;padding-right:12px;}
.form-group .appointment .form-control{border-radius: 0px !important;box-shadow: rgb(0 0 0 / .1) 0 0 5px 0, rgb(0 0 0 / .1) 0 0 1px 0;height: 44px;border: 1px solid rgba(195, 202, 206, 1);
padding-left:12px;padding-right:12px;width: 100%;}
.captcha_fields {display: flex;align-items: center;justify-content: center;}
.captcha_fields{border: 1px solid rgba(195, 202, 206, 1);box-shadow: rgb(0 0 0 / .1) 0 0 5px 0, rgb(0 0 0 / .1) 0 0 1px 0;}
.rqstcallbackform .captcha {display: flex;align-items: center;}
.rqstcallbackform .captcha img {height: 43px;width: 100%;}
.rqstcallbackform button {min-height: 44px;color: #212529;font-weight: 500;border: none;width: 100%;background-color: #fecd29; border-radius: 0px 15px 0 15px;}
.btnview{min-height: 46px;background:var(--accent-color);color: #fff;font-weight: 400;border: none;padding-left: 10px;padding-right: 10px;font-size: 16px;font-family: var(--default-font);display: unset !important;}
.form_submit button {padding: 5px 1rem;}
.rqst_btn{width: 100%;}
.refresh_btn {padding: 0px;cursor: pointer;margin: 0 auto;min-height: 44px;width: 44px;text-align: center;line-height: 44px;}
.captcha_imgs {width: 75%;}
.captcha_imgs img {height: 40px;width: 100%;}
.appointment_captcha{display: flex;align-items: center;}
.appointment_captcha .captcha-img{width: 78%;}
.appointment_captcha .captcha-img img{width: 100%; height: 44px;}
.testiperson{font-size: 11px;color: #6F6F6F;padding-top: 10px;}

#date_app {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: 0;
    position: relative;
}

#date_app::after {
    font-family: bootstrap-icons;
    content: "";
    position: absolute;
    color: #000;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(../images/calendarpic.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#date_app:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0
}
#date_app::-webkit-calendar-picker-indicator {
    background: #fff0;
    bottom: 0;
    color: #fff0;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    border-top: 0!important;
    border-left: 0!important;
    border-right: 0!important;
    border-bottom: 0px !important;
    -webkit-box-shadow: none;
    box-shadow: none
}

.table-responsive {display: block;width: 100%;overflow-x: auto;-webkit-overflow-scrolling: touch}
.table-responsive>.table-bordered {border: 0}
table {border: 1px solid #ddd;text-align: left; background-color: #fff; margin: 10px 0;width: 100%}
table thead th {background-color: #f3f3f3;font-weight: 700;padding: 8px 10px;}
table thead th a{color: #222;}
tbody tr td {padding: 8px 10px;font-size: 16px}
tbody tr td a{color: #222;}
tbody,td,tfoot,th,thead,tr {border: 1px solid #ddd}

/* Start of Website chatbot */
/* Floating button */
#chatbot-button {position: fixed;bottom: 75px;right: 15px;background: #f5c71a;color: #1e1e1e;border-radius: 50px;padding: 10px 15px;font-size: 16px;cursor: pointer;box-shadow: 0 4px 10px rgba(0,0,0,0.3);z-index: 1000;border-radius: 25px 0px 25px 0px; border: 0px !important;}

/* Chat window */
#chatbot-window {position: fixed;bottom: 80px;right: 15px;width: 375px;height: 490px;background: transparent;border-radius: 10px;box-shadow: 0 8px 20px rgba(0,0,0,0.3);display: none;flex-direction: column;overflow: hidden;z-index: 1001;}

/* Header bar */
#chatbot-header {background: #f5c71a;color: #1e1e1e;display: flex;justify-content: space-between;align-items: center;font-weight: bold;padding: 8px 10px 6px 10px;}

/* Chat content area */
.embed-container.svelte-nokcq6>main.svelte-nokcq6 {padding:10px !important;}
#component-1{height: 380px !important;}
#component-9.row{padding: 0px !important; margin: 0px !important;}
#component-9.row>*{padding-left: 0px !important;padding-right: 0px !important;}
#chatbot-frame {flex: 1;width: 100%;height: 100%;}
.embed-container.svelte-nokcq6.svelte-nokcq6{ margin: 0px !important;}
.gap.svelte-vt1mxs{gap: 0px !important;}
div.svelte-1xp0cw7{width: 100% !important;}
div.svelte-1nguped>*:not(.absolute) {border: none;border-radius: 5px !important;}
div.svelte-633qhp{ background: transparent !important;}
.svelte-633qhp{flex-grow: 0px !important; min-width: 100% !important;}
div.svelte-633qhp{border-radius: 5px !important;}

/* Close button */
#close-chat {background: transparent;border: none;color: #1e1e1e;font-size: 18px;cursor: pointer;}

/* Start of whatsapp */
.dkwhatsapplink{line-height: 50px;position: fixed;left: 15px;display: flex;align-items: center;bottom: 15px;height: 48px;width: 48px;border-radius: 50%;background-color: #25d366;padding: 0;z-index: 99;justify-content: center;transform: translatey(0);animation: pulse 1.5s infinite;box-shadow: 0 0 #42db87;animation: pulsing 1.25s cubic-bezier(.66,0,0,1) infinite;font-family: sans-serif;text-decoration: none;transition: all .3s ease-in-out}
@keyframes pulsing {to {box-shadow: 0 0 0 15px #e84c3d00}}
.dkwhatsapplink img{color: #fff}


/* Navmenu - Mobile */
@media (max-width: 991.98px) {
  .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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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 img,
  .navmenu a:focus img {
    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 img:hover,
  .navmenu a:focus img: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 img,
  .navmenu .active:focus img {
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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;
  }
}

/* Start of resultsection */
.results-section {padding: 3rem 0px;}
.results-section .mainheading{padding-bottom:12px; margin-bottom: 0px;}
.results-section p.subtitle {
text-align: center;
color: #666;
font-size: 16px;
margin-bottom: 40px;
}

.results-content {
display: flex;
gap: 40px;
flex-wrap: wrap;
justify-content: space-between;
}

.result-main {
background: white;
border: 1px solid #a6d785;
border-radius: 15px;
padding: 10px 10px 1rem 10px;
max-width: 48%;
flex: 1 1 48%;
box-shadow: 0px 10px 40px 0px #0000001F;
}

.before-after {
display: flex;
gap: 5px;
}

.before-after img {
width: 100%;
border-radius: 5px;
object-fit: cover;
}

.result-title {
font-weight: 600;
font-size: 28px; font-family: var(--heading-font);
margin-top: 12px;padding-bottom: 2px;
}

.result-title span {
color:#222;
}

.result-desc {
font-size: 15px;
color: #555;
margin-top: 5px;
}
.thumb.active {
    border: 1px solid var(--surface-color);
  }


.result-thumbs {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
flex: 1 1 48%;
max-width: 48%;
max-height: 50%;
}

.result-thumbs img {
width: 100%;
border-radius: 15px;
object-fit: cover;
cursor: pointer;padding: 3px;
 filter: grayscale(100%);
border: 1px solid #C3D0DF;
transition: all 0.4s ease;
margin: 0px;
display: block;
box-sizing: border-box;
}

.result-thumbs img.active {
filter: grayscale(0%);
border-color: #4caf50;
}


/* Start of testimonials */
.testimonialsection {padding: 3rem 0px; border-top: #ddd 1px solid;}
.testimonialheading{ margin:0 auto;text-align: center;width: 100%;}
.testimonialheading p{font-size: 18px;font-weight: 500; margin-bottom: 8px;}
.testimonialheading .mainheading{padding-bottom: 10px;}
.testimonialheading .mainheading span{color: var(--accent-color);}
  .marquee-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      overflow: hidden;
      width: 100%;
      padding: 20px 0;
    }

    .marquee-track {
      display: flex;
      width: fit-content;
  animation: marquee 15s linear infinite;
    }

    .marquee-left {
      animation: marquee-left 20s linear infinite;
    }

    .marquee-right {
      animation: marquee-right 20s linear infinite;
    }
    .scrollcard{
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 1.8rem;
    margin-right: 30px;
    min-width: 500px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 3px 10px 0px #0000001F;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .testicircle {
    width: 64px;
    height: 64px;
    background: #8E8E8E;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}
 .testicontent {flex: 1;text-align: left;}
 .testicontent .testitile{font-size:1rem;font-weight: 600;}
 .testicontent p{color: #6F6F6F;height: 165px;overflow: auto;padding-right: 10px;}
.testicontent p::-webkit-scrollbar-track{box-shadow:inset 0 0 6px #0000004d;border-radius:5px;background-color:#ddd}
.testicontent p::-webkit-scrollbar{width:5px;background-color:#f5f5f5}
.testicontent p::-webkit-scrollbar-thumb{border-radius:5px;box-shadow:inset 0 0 6px #0000004d;background-color:var(--accent-color);}
.stars {margin: 5px 0 10px 0;}
.filled{color: #f4c20d;}
.scrollcard img {width: 100%;border-radius: 11px;}
.scrollcard:hover {transform: scale(1.0);box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;}

    @keyframes marquee-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes marquee-right {
      0% {
        transform: translateX(-50%);
      }
      100% {
        transform: translateX(0);
      }
    }

    /* Pause on hover */
    .marquee-container:hover .marquee-left,
    .marquee-container:hover .marquee-right {
      animation-play-state: paused;
    }

/* Optional: Decorative Icons (if needed later) */
.decorative-icon {position: absolute;font-size: 40px;opacity: 0.1;}

/* Start of modal Popup */
.custom-modal {display: none;position: fixed;z-index: 99999;left: 0;top: 0;width: 100%;height: 100%;overflow: hidden;background-color: rgba(0,0,0,0.5);}
.custom-modal-content {position: relative;margin: 1% auto;padding: 0;border-radius: 10px;width: 100%;max-width: 400px;min-height: 605px;overflow-y: auto;}
.video-wrapper {padding: 10px;text-align: center;}
.custom-close {position: absolute;top: 8px;right: 8px; background-color: var(--accent-color);width: 32px; height: 32px; border-radius: 50%;
  display: flex;align-items: center;justify-content: center;color: #fff;font-size: 42px;font-weight: bold;cursor: pointer;z-index: 10000;}
#instagramEmbed {min-height: 605px;overflow: hidden;}
#instagramEmbed blockquote.instagram-media {width: 100% !important;max-width: 100% !important;overflow: visible;}


/* Start of modal Popup */
.modal-content {background: none !important;border: none !important;}
.modal-dialog {margin: 150px auto;}
.modal-header {padding: 0rem; background-color: unset;}
.modal-body {padding: 0rem;}
.btn-close:hover {opacity: 1;}
.btn-close {background: var(--accent-color);opacity: 1;border-radius: 0px !important;display: flex;align-items: center;justify-content: center;z-index: 9999;position: absolute;right: 0px;}
.btn-close i{color: #fff;}
.modal-dialog {width: 800px !important;border: 0px;}
iframe.video_iframe{width:100%;height:380px}

/* Start of banner css */
.main{ margin-top: 81px;}

.appointment .form-group {
    padding-bottom: 12px
}
.appointment{width: 100%;}
.appointment .form-group label {
    padding-bottom: 5px;
    color: #252525;
    font-weight: 500
}

.appointment .form-group label span {
    color: red
}

.appointment input,.appointment textarea,.appointment select {
    color: var(--default-color);
   background: rgba(255, 255, 255, 1);
border: 1px solid rgba(195, 202, 206, 1);
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    padding: 10px!important;
    box-shadow: rgb(0 0 0 / .1) 0 0 5px 0,rgb(0 0 0 / .1) 0 0 1px 0
}

.appointment input:focus,.appointment textarea:focus,.appointment select:focus {
    border-color: var(--accent-color)
}
.appointment select.form-select {color: color-mix(in srgb,var(--default-color),transparent 70%)}
.appointment select option {color: var(--default-color); background: #f0f0f0;}

.appointment .form-select-lg {
  font-size: 1.25rem; /* Larger font size */
  padding: 0.5rem 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.appointment .form-select {
  display: block;
  width: 100%;
  height: calc(2.875rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='gray' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658A.5.5 0 0 1 2.825 4.8h10.35a.5.5 0 0 1 .374.858L8.753 11.14a.5.5 0 0 1-.753 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px 20px;
  border: 1px solid #ced4da;
  border-radius: 1px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.appointment input::placeholder,.appointment textarea::placeholder, .appointment select::placeholder {
    color: color-mix(in srgb,var(--default-color),transparent 70%)
}

.appointment input,.appointment select {
    height: 45px
}

.appointment textarea {
    padding: 10px 12px
}

.appointment button[type=submit] {
    background: var(--accent-color);
    font-size: 16px;
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0px 20px 0 20px;
    cursor: pointer
}

.appointment button[type=submit]:hover {
    background: color-mix(in srgb,var(--default-color) 90%,white 15%);
    color:#fff;
}

.btn-yellow {
background-color: #f5c71a;
color:var(--default-color);
border: none;
display: inline-block;
border-radius: 0px 15px 0 15px;
padding: 12px 30px;
font-weight: 500;font-size: 1rem;
margin: 0 auto;cursor: pointer;
position: relative;z-index: 9;
}

.btn-yellow:hover {
background-color: #e6b81b;
}
/* Start of footer */
.bottomhero {
  background: radial-gradient(50% 50% at 50% 50%, #257462 0%, #0B3229 100%);
  color: var(--white-color);
  padding: 4rem 0px 375px 0;
  position: relative;
  /* z-index: -1; */
}
.bottomhero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/smilebg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
}

.bottomhero img{margin-top: -35px;transform: rotate(-24deg);}
.bottomhero p{padding-bottom: 10px;}
.bottomhero .text-yellow {
  color: #facc15;
}
.contactsection {
  background-color: #fff; margin: -340px auto 0 auto;
  padding: 10px;border-radius: 20px;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  box-shadow: 0px 10px 40px 0px #0000001A;
}
.contactsection .flexcontainer {
      display: flex;
      flex-wrap: wrap;
      padding:0px;
      gap: 5px;justify-content: center;
    }

   .column {
      flex: 1 1 32%;
      min-width: 300px;
      position: relative;
      height: 100%;
      overflow: hidden;
    }
    .columncenter{width: 90%; margin: auto;padding-top: 2rem;}
    .columncenter .mainheading{font-weight: 500;}
    .columncenter p{font-size: 18px;}
    .columncenter p span{color: var(--accent-color);font-weight: 500;}
    .column img{border-radius: 15px;}
    .column::before{
        position: absolute;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1e1e1e 100%);
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 15px;
    }
    .columncaption
    {position: absolute;bottom:0px; left:3%;width: 94%;}

    .contactcall {
  margin-bottom: 0.8rem;align-items: flex-start;
}
.contactcall .contactcallheading{font-size: 18px;font-weight: 600; color: var(--white-color);padding-bottom: 5px;}
.contactcall span{
  background:#FFCC29;
  width: 32px; border-radius: 50%;
  min-width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-right: 12px;
}
.contactcall span img{width: 20px; height: 20px;}
.contactcall p {
  padding: 0; color: #fff;
  margin-bottom: 0;
  font-size: 15px;
}

.footercall:hover span {
  background: var(--white-color);
  color: var(--contrast-color);
}

.contacttiming {
  margin-bottom: 1rem;align-items: center;
}
.contacttiming .contacttimeheading{font-size: 18px;font-weight: 600; color: var(--white-color);padding-bottom: 5px;}
.contacttiming span{
  background:var(--accent-color);
  width: 32px; border-radius: 50%;
  min-width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-right: 12px;
}
.contacttiming span img{width: 20px; height: 20px; filter: brightness(0) invert(1);}
.contacttiming p {
  padding: 0; color: #fff;
  margin-bottom: 0;
  font-size: 15px;
}

.contacttiming:hover span {
  background: #FFCC29;
}
    .column a {
      color: var(--accent-color);
      text-decoration: none;
      font-weight: bold;
    }

    .whatsapp {
      margin-top: 20px;
      display: flex;
      align-items: center;
      font-weight: bold;
    }

    .whatsapp img {
      width: 24px;
      margin-right: 10px;
    }

    .location-img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .location-card {
      background-color: #1c1c1c;
      color: white;
      padding: 15px;
      border-radius: 10px;
    }

    .info {
      margin-top: 10px;
      font-size: 14px;
    }

    /* @media (max-width: 900px) {
      .column {
        flex: 1 1 100%;
      }
    } */

.footer {
  color: var(--default-color);
  background-color: var(--lightbluebg);
  font-size: 1rem;
  position: relative;
}

.footer .footertop {
  padding-top:20px;padding-bottom: 0rem;
}
.sitename img{width: 250px; margin-bottom: 1.5rem;height: auto;}
.sociallinks{ margin-top:var(--font-md);}
.sociallinks a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  font-size: 1rem;
  color:var(--white-color);
  margin-right: 10px;
  transition: 0.3s;
}
.sociallinks a img{
filter: brightness(0) invert(1);
}

.sociallinks a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.sociallinks img{width: 20px;height: auto;}

.footer .footerheading {
  font-size: 22px;
  font-family: var(--heading-font);
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer .footerlinks {
  padding: 0px 2.5rem 1.5rem 2.5rem;
  margin-bottom: 0px;position: relative;
}
.footerlinks::before,
.footerlinks::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footerlinks::before {
  left: 0;
}

.footerlinks::after {
  right: 0;
}
.footer .footerlinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footerlinks ul li {
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 20px;
  font-size: 15px;
  list-style: none;
  break-inside: avoid;
}

.footer .footerlinks ul a {
  display: inline-block;
  color:var(--default-color);
  line-height: 1.4;
      -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.footer .footerlinks ul a:hover {
  color: var(--accent-color);
  padding-left:5px;
}
.footer .footerabout{padding-right: 1rem;padding-top: var(--font-xl);}
.footer .footerlinks{padding-top: var(--font-xl);}
.footer .footerabout a {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--heading-font);
}
.footer .footercontact p {margin-bottom: 12px;font-size: 15px;}
.footer .footercontact p span{color: var(--accent-color); font-size: 18px; font-weight: 600;display: block;padding-bottom: 1rem;}

.disclaimerbox{padding-top: var(--spacing-md); border-top: 1px solid rgba(0,0,0,0.1);display: flex;gap:1rem}
.disclaimerbox p{font-size: 14px;line-height: 25px;padding-bottom: 5px;}
.disclaimerheading {font-size: 18px;font-weight: 500;position: relative;padding-bottom: 5px;font-family: var(--heading-font);}
.footer .copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.copyrightrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  align-items: center;
}
.cbox {text-align: right;font-size: 13px;padding: 10px 0px;}
.cboxs {text-align: left;font-size: 13px;padding: 10px 0px;}
.cboxs a{color: var(--default-color);text-decoration: none;}
.cboxs a:hover{color:var(--accent-color)}

/* Start of footer */
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
  background: var(--accent-color);
  color: #fff;
  padding: 8px; width: 44px;height: 44px;
  border-radius:15px 0px 15px 0px;
  cursor: pointer;
  z-index: 999;text-align: center;
  transition: opacity 0.3s ease;
}

.scroll-top.active {
  display: block;
}

/* Start of internal pages */
.pagetitle{
background-color: var(--lightbluebg);
padding: 25px 0;
}
.pagetitle .mainheading{padding-bottom: 5px;}
.pagetitle nav {
  padding: 0px;
}

.pagetitle nav ol {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  font-weight: 400;
}

.pagetitle nav ol li+li {
  padding-left: 4px;
}

.pagetitle nav ol li+li::before {
  content: "|";
  display: inline-block;
  padding-right: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.pagetitle nav ol li a{color: var(--accent-color);}
.pagetitle nav ol li a:hover{color: var(--default-color);}

/* Start of Mini Desktop Screen */
@media screen and (max-width:1400px) and (min-width:1301px){
/* Start of header */
.headercontainer{max-width: 86%;}
.header .logo img {height: 50px;object-fit: contain;}
.header .btn-getstarted, .header .btn-getstarted:focus {padding: 11px 12px;margin: 0 0 0 15px;}

/* Start of Footer */
.bottomhero {padding: 3rem 0px 370px 0;}
.contactsection {max-width: 1120px;}
.footer .footertop {padding-top: 20px;}
.main{margin-top: 79px;}
}

/* Start of Mini Desktop Screen */
@media screen and (max-width:1300.98px) and (min-width:1201px){
/* Start of header */
.headercontainer{max-width: 88%;}
.header .logo img {height: 50px;object-fit: contain;}
.header .btn-getstarted, .header .btn-getstarted:focus {padding: 11px 12px;margin: 0 0 0 15px;}
.navmenu a, .navmenu a:focus {padding: 18px 10px;font-size: 15px;}

/* Start of Footer */
.bottomhero {padding: 3rem 0px 370px 0;}
.contactsection {max-width: 1120px;}
.footer .footertop {padding-top: 20px;}
.main{margin-top: 79px;}
}

/* Start of Mini Desktop Screen */
@media screen and (max-width:1200.98px) and (min-width:1101px){
/* Start of header */
.headercontainer{max-width: 94%;}
.header .logo img {height: 50px;object-fit: contain;}
.header .btn-getstarted, .header .btn-getstarted:focus {padding: 11px 6px;margin: 0 0 0 6px;font-size: 15px;}
.navmenu a, .navmenu a:focus {padding: 18px 6px;font-size: 15px;}

.mainheading{font-size: var(--font-lg);padding-bottom: var(--font-xs);}

/* Start of resultsection */
.results-content {gap: 25px;}
.results-section p.subtitle {margin-bottom: 25px;}

/* Start of Footer */
.bottomhero {padding: 3rem 0px 300px 0;}
.contactsection {max-width: 940px;margin-top: -270px;}
.footer .footertop {padding-top: 20px;}
.columncenter {width: 95%;padding-top: 3.5rem;}
.footer .footerheading {font-size: 18px;}
.contactcall .contactcallheading{font-size: 17px;}
.copyrightrow {grid-template-columns: 1fr 2fr;}
}

/* Start of Ipad Pro Screen */
@media screen and (max-width:1100.98px) and (min-width:992px){
/* Start of header */
.headercontainer{max-width: 97%;}
.header .logo img {height: 50px;object-fit: contain;margin-right: 0px;}
.header .btn-getstarted, .header .btn-getstarted:focus {padding: 11px 6px;margin: 0 0 0 6px;font-size: 14px;}
.navmenu a, .navmenu a:focus {padding: 18px 6px;font-size: 14px;}
.navmenu a img, .navmenu a:focus img {margin-left: 0px;}

.mainheading{font-size: var(--font-lg);padding-bottom: var(--font-xs);}

/* Start of resultsection */
.results-content {gap: 25px;}
.results-section p.subtitle {margin-bottom: 25px;}

/* Start of Footer */
.bottomhero {padding: 3rem 0px 300px 0;}
.contactsection {max-width: 930px;margin-top: -270px;}
.footer .footertop {padding-top: 20px;}
.columncenter {width: 95%;padding-top: 3.5rem;}
.footer .footerheading {font-size: 18px;}
.contactcall .contactcallheading{font-size: 17px;}
.copyrightrow {grid-template-columns: 1fr 2fr;}
}

/* Start of Ipad Screen */
@media screen and (max-width:991.98px) and (min-width:768px){
/* Start of header */
.headercontainer{max-width: 96%;}
.header .logo img {height: 50px;object-fit: contain;margin-right: 0px;}
.header .btn-getstarted, .header .btn-getstarted:focus {display: none;}
.navmenu a, .navmenu a:focus {padding: 18px 6px;font-size: 14px;}
.navmenu a img, .navmenu a:focus img {margin-left: 0px;}
.navmenu{display: none;}

.main {margin-top: 80px;}
.mainheading{font-size: var(--font-lg);padding-bottom: var(--font-xs);}
.results-section {padding: 2rem 0px;}

/* Start of resultsection */
.results-content {gap: 25px;}
.results-section p.subtitle {margin-bottom: 20px;font-size: 16px;}
.result-title {font-size: 20px;margin-top: 10px;padding-bottom: 0px;}
.result-main {padding: 10px 10px 10px 10px;}
.marquee-container{gap: 20px;}

/* Start of Footer */
.bottomhero {padding: 3rem 0px 300px 0;}
.bottomhero p{padding: 0px 10%;}
.bottomhero p br{display: none;}
.contactsection {max-width: 700px;margin-top: -270px;}
.contactsection .flexcontainer {display: flex;flex-wrap: nowrap;overflow-x: auto;-webkit-overflow-scrolling: touch; justify-content: flex-start; }
.contactsection .flexcontainer > * {flex: 0 0 33%; }
.footer .footertop {padding-top: 20px;}
.columncenter {width: 95%;padding-top: 3.5rem;}
.footer .footerheading {font-size: 18px;}
.contactcall .contactcallheading{font-size: 17px;}
.copyrightrow {grid-template-columns: 1fr;}
.cboxs {text-align: center;padding: 0px 0px;}
.cbox {text-align: center;padding: 5px 0px 0px 0px;}
}

/* Start of Mini IPad Screen */
@media screen and (max-width:767.98px) and (min-width:600px){

/* Start of Header */
.header {padding: 10px 0;}
.navmenu{display: none;}
.header .btn-getstarted, .header .btn-getstarted:focus{display: none;}
.main{ margin-top: 79px;}

/* Start of results-section */
.results-section {padding: 30px 0px;}
.results-section p.subtitle {margin-bottom: 20px;font-size: 15px;}
.results-content {gap: 15px;flex-wrap: wrap;}
.result-main {padding: 10px 10px 1rem 10px;max-width: 100%;flex: 1 1 100%;}
.result-title {font-size: 22px;margin-top: 12px;padding-bottom: 0px;}
.result-thumbs {display: grid;grid-auto-flow: column;grid-auto-columns: calc(25% - 10px); gap: 10px;overflow-x: auto;overflow-y: hidden;scroll-snap-type: x mandatory;-webkit-overflow-scrolling: touch;  flex: unset;max-width: unset;grid-template-columns: unset;}
.result-thumbs > * {scroll-snap-align: start;}

/* Start of testimonialsection */
.testimonialsection {padding: 30px 0px 10px 0px;}
.testimonial-wrapper {margin-bottom: 15px;margin-top: 10px;}
.testimonialheading p{font-size: 16px;padding:0px 10px;}
.testimonial-name {font-size: 15px;}
.testimonial-subtext{font-size: 14px;padding-bottom: 5px;}
.testimonial-wrapper.row>*{padding-left: 6px !important;padding-right: 6px !important;}
 .testicontent p{height: 150px;}

/* Start of Footer */
.bottomhero {padding: 2rem 0px 350px 0;}
.bottomhero p br{display: none;}
.bottomhero img {margin-top: -18px;width: 40px;}
.columncenter {width: 96%;padding-top: 5px;font-size: 15px;}
.contactsection {position: relative;z-index: 1;max-width: 100%;width: 80%; margin:-320px auto 0 auto;}
.columncenter p{font-size: 15px;margin-bottom: 10px;}
.column:first-child{margin-bottom: 1rem;}
.column:nth-child(2) img{width:100%;height: 400px;}
.column:nth-child(3) img{width: 100%;height: 400px;}
.contactcall .contactcallheading{font-size: 17px;}
 p{font-size: 15px;}
 .bottomhero p {padding-bottom: 0px;padding: 0px 5%;}
 .contacttiming span img {width: 20px !important;height: 20px !important;}
 .contactcall span img{width: 20px !important;height: 20px !important;}
 .bottomhero .mainheading{ margin-bottom: 0px;}

.contactsection {max-width: 88%;margin-top: -270px;}
.contactsection .flexcontainer{ display: flex;flex-wrap: nowrap;overflow-x: auto;-webkit-overflow-scrolling: touch; justify-content: flex-start;}
.contactsection .flexcontainer > * {flex: 0 0 45%;}
.column {min-width: 280px;}

/* Start of footersection */
.footer .footerabout { padding-right: 0px;padding-top: 0rem;}
.footer .footertop {padding-top: 20px;padding-bottom: 0rem;}
.footer .footerlinks {padding: 0px 10px 15px 10px;}
.disclaimerbox {gap: 0rem;display: block;}
.cbox {text-align: center;padding: 0px 0px;}
.copyrightrow {display: block;}
.cboxs{text-align: center;padding: 5px 0px 0px 0px;}
.footer .footerlinks ul li{font-size: 15px;}
.footer .footerheading {font-size: 20px;padding-bottom: 10px;}
.disclaimerbox p {font-size: 13px;line-height: 22px;padding-bottom: 0px;}

/* Start of modal */
.modal-dialog {width: 95% !important;}
.modal-dialog {margin: 50px auto;}
.btn-close {right: 5px;}
#YouTubeFrame{height: 250px;}

/* Start of internal page */
.pagetitle {padding: 15px 0;}
.mainheading{font-size:28px;}
.pagetitle .mainheading {padding-bottom: 0px;}

/* Start of Website Chatbot */
#chatbot-window {width: 90%;height: 80vh;right: 2%;bottom: 90px;}

/* Start of fixed footer */
.fixed-footer{display: block;}
.fixed-footer.fixed-bottom{background:var(--accent-color);padding: 10px 0 0 0;z-index: 9;color: #fff;}
.fixed-footer.fixed-bottom span {font-size: 12px;font-weight: 300;display: block;}
.fixed-footer.fixed-bottom span i{display: block;font-size: 30px;margin-bottom: 0;padding-top: 12px;color: #fff;}
.text-center {text-align: center!important;}
.text-center a{color:#fff; text-decoration: none;}
.position-relative {position: relative!important;}
.footer .copyright {padding-top: 10px;padding-bottom: 100px;}
.fixed-footer.fixed-bottom span.phone-icon{display: block;position: absolute;width: 60px; height: 60px;background: #fff;top: -25px;border-radius: 50%;border: 7px solid #f8c50f;left: 0;right: 0;margin: 0 auto;}
.blink_button{border:none;cursor:pointer;display:inline-block;text-align:center;text-decoration:none;-webkit-animation:1.5s infinite glowing1;animation:1.5s infinite glowing1}.blink_button:hover{background-color:#fde796!important;color:#fff;text-decoration:none}@-webkit-keyframes glowing1{0%{background-color:#fde796;-webkit-box-shadow:0 0 3px #fde796}50%{background-color:#fff;-webkit-box-shadow:0 0 40px #fff}100%{background-color:#fde796;-webkit-box-shadow:0 0 3px #fde796}}@keyframes glowing1{0%,100%{background-color:#fde796;box-shadow:0 0 3px #fde796}50%{background-color:#fff;box-shadow:0 0 40px #fff}}
.fixed-footer.fixed-bottom span.phone-icon + span {margin-top: 36px;display: inline-block;margin-bottom: 0;}
.fixed-footer.fixed-bottom span.phone-icon + span img{padding-top: 10px;}
.fixed-footer.fixed-bottom span img{ margin-bottom: 3px;}
.fixed-footer.fixed-bottom span.phone-icon{display: flex;position: absolute;width: 72px;height: 72px;justify-content: center;background: #fff;top: -40px;border-radius: 50%;border: 7px solid #f8c50f;left: 0;right: 0;margin: 0 auto;align-items: center;}
.dkwhatsapplink{left: 15px;bottom: 74px;}
#chatbot-button {bottom: 9px;right: 15px;padding: 0px;font-size: 12px;box-shadow:unset; background: transparent;color: #fff;display: flex !important;flex-direction: column;justify-content: center;align-items: center;}
.scroll-top {bottom: 74px;}
#component-1 {height: 360px !important;}
#chatbot-window {bottom: 80px;width: 90%;height: 480px;}
#chatbot-header{padding: 8px 10px 2px 10px;}
}

/* only use mobile menu */
@media screen and (max-width: 991.98px) and (min-width: 320px) {

/* Start of sidebar */
.topgreybg{background-color: #f9f7f7;}.nav-mobile{background:#fff;color:#fff;padding:0;margin:0;cursor:auto;font-size:16px;list-style-type:none;box-shadow:0 5px 5px -5px #333}.nav-mobile:after{content:"";display:table;clear:both}.nav-mobile svg{height:42px;width:48px;background:var(--surface-color);padding:5px;font-size:10px;font-weight:normal!important;border-radius:0px 20px 0px 20px;margin-top:7px}.nav-mobile svg path{fill:#1e1e1e}.nav-mobile svg.icon-close{display:none;margin-top:7px}.nav-mobile li{width:100%;height:45px;line-height:46px;text-align:center}.nav-mobile li a{display:block;width:100%;height:100%;color:#151618;text-decoration:none}.nav-mobile .menu-button{position:absolute;top:-27px;left:-14vw;margin:0;cursor:pointer;display:block;z-index:99}.nav-mobile .menu-button:after{opacity:0;top:40px;content:"";width:100vw;display:block;position:fixed;height:100vh;content:"";pointer-events:none;transition:opacity 0.2s cubic-bezier(0,0,.3,1);transition-delay:0.1s}.nav-mobile #menu-toggle{display:none}.nav-mobile #menu-toggle.active~.menu-button .icon-close,.nav-mobile #menu-toggle:checked~.menu-button .icon-close{display:block}.nav-mobile #menu-toggle.active~.menu-button .icon-open,.nav-mobile #menu-toggle:checked~.menu-button .icon-open{display:none}.nav-mobile #menu-toggle.active~.menu-button:after,.nav-mobile #menu-toggle:checked~.menu-button:after{opacity:1;pointer-events:auto;transition:opacity 0.3s cubic-bezier(0,0,.3,1)}.nav-mobile #menu-toggle.active~.menu-sidebar,.nav-mobile #menu-toggle:checked~.menu-sidebar{transform:translateX(0);transition:transform 0.3s cubic-bezier(0,0,.3,1)}.nav-mobile .menu-container{width:auto;float:left;cursor:pointer;position:absolute}.nav-mobile .menu-container .menu-sidebar{box-shadow:5px 0 5px -5px #333;display:block;width:270px;bottom:0;left:0;background:#fff;color:#151618;position:fixed;transform:translateX(-405px);transition:transform 0.3s cubic-bezier(0,0,.3,1);top:0;z-index:9999;list-style-type:none;padding:0;max-height:100vh;max-height:100%;max-width:400px}.nav-mobile .menu-container .menu-sidebar .arrow{position:absolute;line-height:28px;font-size:32px;color:#222;top:2px;z-index:-1;text-align:center}.nav-mobile .menu-container .menu-sidebar .arrow.left{left:10px}.nav-mobile .menu-container .menu-sidebar .arrow.right{right:10px}.nav-mobile .menu-container .menu-sidebar li{height:35px;line-height:35px;font-size:15px;text-align:left;position:relative;border-bottom:1px solid rgb(0 0 0 / .1);padding-left:10px}.nav-mobile .menu-container .menu-sidebar li:hover{background:rgb(0 0 0 / .1)}.nav-mobile .menu-container .menu-sidebar li .menu-sub{position:fixed;top:0;right:0;bottom:0;width:0;background:#fff;visibility:hidden;transition:all 0.3s cubic-bezier(0,0,.3,1);border-left:1px solid #ccc;list-style-type:none;padding:0;margin:0;z-index:2;max-width:400px}.nav-mobile .menu-container .menu-sidebar li .menu-sub li{overflow:hidden}.nav-mobile .menu-container .menu-sidebar li .menu-sub .menu-sub-title{padding-left:35px}.nav-mobile .menu-container .menu-sidebar li .submenu-label{cursor:pointer;width:100%;height:100%;display:block!important}.nav-mobile .menu-container .menu-sidebar li .lblback{width:100%;padding-left:36px;margin-left:-34px}.bookbtn{padding:3px 12px;border-radius:30px;background-color:#e9c04a;font-size:14px;color:#fff;line-height:34px!important}.book{font-size:13px}.nav-mobile li a.mnlnkbx{line-height:20px;padding-top:6px}.mainsub{width:100%!important;margin:0 4px 0 0}.nav-mobile .menu-container .menu-sidebar li .submenu-toggle{display:none}.nav-mobile .menu-container .menu-sidebar li .submenu-toggle.active~.menu-sub,.nav-mobile .menu-container .menu-sidebar li .submenu-toggle:checked~.menu-sub{width:272px;visibility:visible;z-index:1;transition:width 0.35s cubic-bezier(0,0,.3,1)}.thirdlebel{max-height:100vh;overflow-y:scroll;overflow-x:hidden}.thirdlebel li:first-child{position:fixed!important;background-color:#fff!important;z-index:9;color:#222}.thirdlebel li:nth-child(2){padding-top:34px!important}.nav-mobile .menu-container .menu-sidebar li label{z-index:99;color:#151618!important}.nav-mobile .menu-container .menu-sidebar .mlogo{height:auto;text-align:center;padding:0}.nav-mobile .menu-container .menu-sidebar .mlogo:hover{background:none}.nav-mobile .menu-container .menu-sidebar .mlogo img{margin:10px 0}
 /* // only use mobile menu */

}

/* Start of Iphone/Mobile Screen */
@media screen and (max-width:599.98px) and (min-width:320px){
/* Start of Header */
.header {padding: 5px 0;}
.navmenu{display: none;}
.header .btn-getstarted, .header .btn-getstarted:focus{display: none;}
.main{ margin-top: 68px;}

/* Start of results-section */
.results-section {padding: 15px 0px;}
.results-section p.subtitle {margin-bottom: 20px;font-size: 15px;}
.results-content {gap: 15px;flex-wrap: nowrap; flex-direction: column;height: 100%;}
.result-main {padding: 10px 10px 1rem 10px;max-width: 100%;flex: 1 1 100%;}
.result-title {font-size: 22px;margin-top: 12px;padding-bottom: 0px;}
.result-thumbs {display: grid;grid-auto-flow: column;grid-auto-columns: calc(25% - 5px); gap: 5px;overflow-x: auto;overflow-y: hidden;scroll-snap-type: x mandatory;-webkit-overflow-scrolling: touch;  flex: unset;max-width: unset;grid-template-columns: unset;}
.result-thumbs > * {scroll-snap-align: start;}

/* Start of testimonialsection */
.testimonialsection {padding: 15px 0px;}
.testimonial-wrapper {margin-bottom: 15px;margin-top: 10px;}
.testimonialheading p{font-size: 16px;padding:0px 10px;}
.testimonial-name {font-size: 15px;}
.testimonial-subtext{font-size: 14px;padding-bottom: 5px;}
.testimonial-wrapper.row>*{padding-left: 6px !important;padding-right: 6px !important;}
 .testicontent p{height: 140px}

/* Start of Footer */
.bottomhero {padding: 2rem 0px 350px 0;}
.bottomhero p br{display: none;}
.bottomhero img {margin-top: -18px;width: 40px;}
.columncenter {width: 96%;padding-top: 5px;font-size: 15px;}
.contactsection {position: relative;z-index: 1;max-width: 100%;width: 92%; margin:-320px auto 0 auto;}
.columncenter p{font-size: 15px;margin-bottom: 10px;}
.column:first-child{margin-bottom: 1rem;}
.contactcall .contactcallheading{font-size: 17px;}
 p{font-size: 15px;}
 .bottomhero p {padding-bottom: 0px;}
 .bottomhero .mainheading{ margin-bottom: 10px;}

/* Start of footersection */
.footer .footerabout { padding-right: 10px;padding-top: 1rem;}
.footer .footertop {padding-top: 20px;padding-bottom: 0rem;}
.footer .footerlinks {padding: 0px 10px 15px 10px;}
.disclaimerbox {gap: 0rem;display: block;}
.cbox {text-align: center;padding: 0px 0px;}
.copyrightrow {display: block;}
.cboxs{text-align: center;padding: 5px 0px 0px 0px;}
.footer .footerlinks ul li{font-size: 15px;position: relative;margin-right: 8px;display: inline-block;text-align: center !important;padding: 2px 0;}
.footer .footerlinks ul li::before{content: "|";position: absolute;right: -9px; color: #a1a1a1;}
.footer .footerheading {font-size: 20px;padding-bottom: 10px;}
.disclaimerbox p {font-size: 13px;line-height: 22px;padding-bottom: 0px;}

/* Start of internal page */
.pagetitle {padding: 15px 0;}
.mainheading{font-size: var(--font-md);}
.pagetitle .mainheading {padding-bottom: 0px;}

/* Start of modal */
.modal-dialog {width: 95% !important;}
.modal-dialog {margin: 50px auto;}
.btn-close {right: 5px;}
#YouTubeFrame{height: 200px;}
.appointment .form-group {padding-bottom: 8px;}
.callbackcaptchpics img {width: 100%;height:42px;}
.error-message {font-size: 9px;}
#capt img {height: 44px;width: 100%;object-fit: fill;}
table{ width: 100%; overflow-x: auto;-webkit-overflow-scrolling: touch;white-space: nowrap;display: block;}

/* Start of Website Chatbot */
#chatbot-window {width: 90%;height: 80vh;right: 2%;bottom: 90px;}

/* Start of fixed footer */
.fixed-footer{display: block;}
.fixed-footer.fixed-bottom{background:var(--surface-color);padding: 10px 0 0 0;z-index: 9;color: #212529;}
.fixed-footer.fixed-bottom span {font-size: 12px;font-weight: 300;display: block;}
.fixed-footer.fixed-bottom span i{display: block;font-size: 30px;margin-bottom: 0;padding-top: 12px;color: #fff;}
.text-center {text-align: center!important;}
.text-center a{color:#fff; text-decoration: none;}
.position-relative {position: relative!important;}
.footer .copyright {padding-top: 10px;padding-bottom: 100px;}
.fixed-footer.fixed-bottom span.phone-icon{display: block;position: absolute;width: 60px; height: 60px;background: #fff;top: -25px;border-radius: 50%;border: 7px solid #f8c50f;left: 0;right: 0;margin: 0 auto;}
.blink_button{border:none;cursor:pointer;display:inline-block;text-align:center;text-decoration:none;-webkit-animation:1.5s infinite glowing1;animation:1.5s infinite glowing1}.blink_button:hover{background-color:#fde796!important;color:#fff;text-decoration:none}@-webkit-keyframes glowing1{0%{background-color:#fde796;-webkit-box-shadow:0 0 3px #fde796}50%{background-color:#fff;-webkit-box-shadow:0 0 40px #fff}100%{background-color:#fde796;-webkit-box-shadow:0 0 3px #fde796}}@keyframes glowing1{0%,100%{background-color:#fde796;box-shadow:0 0 3px #fde796}50%{background-color:#fff;box-shadow:0 0 40px #fff}}
.fixed-footer.fixed-bottom span.phone-icon + span {margin-top: 36px;display: inline-block;margin-bottom: 0;}
.fixed-footer.fixed-bottom span.phone-icon + span img{padding-top: 10px;}
.fixed-footer.fixed-bottom span img{ margin-bottom: 3px;filter: brightness(0) saturate(100%) invert(0%) sepia(65%) saturate(7476%) hue-rotate(323deg) brightness(86%) contrast(101%);}
.fixed-footer.fixed-bottom span.phone-icon{display: flex;position: absolute;width: 72px;height: 72px;justify-content: center;background: #fff;top: -40px;border-radius: 50%;border: 7px solid #f8c50f;left: 0;right: 0;margin: 0 auto;align-items: center;}
.dkwhatsapplink{left: 15px;bottom: 74px;}
#chatbot-button {bottom: 9px;right: 15px;padding: 0px;font-size: 12px;box-shadow:unset; background: transparent;color: #fff;display: flex !important;flex-direction: column;justify-content: center;align-items: center;}
.scroll-top {bottom: 74px;}
#component-1 {height: 360px !important;}
#chatbot-window {bottom: 80px;width: 90%;height: 480px;}
#chatbot-header{padding: 8px 10px 2px 10px;}
}
/* footer-location-cap: keep a wrapped 4th location card at card width instead of stretching full row */
@media (min-width: 992px){
  .contactsection .flexcontainer > .column{ max-width: 32%; }
}
