:root {
  --primary-color: #f16138;
  --secondary-color: #222;
  --text-color: #0a2a50;
  --border-color: #f1f1f1;
  --muted-color: #777;
  --background-color: #fafafa;
  --link-color: #f16138;
  --link-hover-color: #ec6139;

  --primary-font: 'Roboto', sans-serif;
  --heading-font: 'Roboto', sans-serif;

  --font-size-base: 16px;
  --line-height-base: 1.6;
  --primary-orange: #e86549;
  --primary-blue: #1b2b65;
}

/* ===================================================================
    GLOBAL STYLES
===================================================================  */

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  outline: 0;
  border: 0;
  vertical-align: baseline;
}

*:hover,
*:focus {
  outline: none;
}

html {
  font-size: 16px;
}

body,
html {
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  font-weight: 400;
  position: relative;
  font-family: var(--primary-font);
}

body {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.65rem;
  position: relative;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-kerning: auto;
  font-kerning: auto;
}

span {
  display: inline-block;
}

a {
  color: inherit;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

body,
input,
textarea {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:focus,
*:active,
a:link,
a:hover,
a:visited {
  outline: none !important;
  outline-offset: 0;
}

a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
[role='button'],
input[type='button'],
input[type='submit'],
input[type='reset'] {
  cursor: pointer;
  -webkit-transition: all 400ms linear 0;
  -o-transition: all 400ms linear 0;
  -moz-transition: all 400ms linear 0;
  transition: all 400ms linear 0;
}

select,
button,
[role='button'],
input[type='button'],
input[type='submit'],
input[type='reset'] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset;
}

input[type='search'] {
  outline: 0;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

mark {
  color: #f7f7f7;
}

video {
  -moz-background-size: cover;
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  user-drag: none;
  -ms-interpolation-mode: bicubic;
}

img::selection,
img::-webkit-selection,
img::-moz-selection {
  background: transparent;
}

.flex-auto img,
.col-auto img {
  max-width: none;
}

figure {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0;
}

iframe {
  border: none;
  width: 100%;
}

video,
audio {
  width: 100%;
  height: auto;
}

section {
  position: relative;
}

.absolute-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

label {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
}

q {
  display: inline-block;
}

pre {
  line-height: 2rem;
  padding-top: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  color: #9e9e9e;
  display: block;
  margin: 0;
  font-family: var(--primary-font);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

pre h6 {
  margin: 0;
}

pre span code {
  color: #e83e8c;
  word-break: break-word;
}
/* ===================================================================
    TYPOGRAPHY
===================================================================  */

p,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
}

p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: normal;
  margin-top: 0px;
}

h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

h2 {
  font-size: 2rem;
  line-height: 2.375rem;
}

h3 {
  font-size: 1.75rem;
  line-height: 2.375rem;
}

h4 {
  font-size: 1.375rem;
  line-height: 1.625rem;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.125rem;
}

h6 {
  font-size: 1.063rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.125rem;
}

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

.text {
  font-family: var(--primary-font);
  font-size: 1rem;
}

p {
  font-size: 0.9rem;
  line-height: 1.75rem;
  font-family: var(--primary-font);
}
/* ===================================================================
    BUTTON
===================================================================  */

.button {
  display: inline-block;
  padding: 12px 36px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  background: transparent;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.button:hover {
  color: #222;
  background: #fff;
}

/* ===================================================================
    PRELOADER
===================================================================*/
.preloader {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fefefe;
  z-index: 1000000000;
  overflow: hidden;
}

.main-loader {
  position: relative;
  height: 150px;
  width: 100%;
}

.loader-1 {
  display: table;
  height: 100%;
  text-align: center;
  width: 100%;
}

.loader-1 .loader {
  width: 70px;
  text-align: center;
  display: table-cell;
  margin: 0 auto;
  vertical-align: middle;
}

.loader-1 .loader > div {
  width: 18px;
  height: 18px;
  background-color: #333;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  -moz-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  -o-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loader-1 .loader .bounce1 {
  -webkit-animation-delay: -0.32s;
  -moz-animation-delay: -0.32s;
  -o-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader-1 .loader .bounce2 {
  -webkit-animation-delay: -0.16s;
  -moz-animation-delay: -0.16s;
  -o-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.loader-2 {
  display: table;
  height: 100%;
  text-align: center;
  width: 100%;
}

.loader-2 .loader {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.loader-2 .loader > div {
  display: none;
}

.loader-2 .loader > div:first-child {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #333;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  -moz-animation: sk-scaleout 1s infinite ease-in-out;
  -o-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
  margin: 0 auto;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@-moz-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-o-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.loader-3 {
  display: table;
  height: 100%;
  text-align: center;
  width: 100%;
}

.loader-3 .loader {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.loader-3 .loader > div {
  display: none;
}

.loader-3 .loader > div:first-child {
  display: block;
  width: 50px;
  height: 50px;
  font-size: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spinner 700ms infinite linear;
  -moz-animation: spinner 700ms infinite linear;
  -o-animation: spinner 700ms infinite linear;
  animation: spinner 700ms infinite linear;
  z-index: 100001;
  margin: 0 auto;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-4 {
  display: block;
  height: 100%;
  text-align: center;
  width: 100%;
  position: relative;
}

.loader-4 .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  -moz-animation: sk-rotate 2s infinite linear;
  -o-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}

.loader-4 .loader > div {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #333;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  -moz-animation: sk-bounce 2s infinite ease-in-out;
  -o-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.loader-4 .loader .bounce2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  -moz-animation-delay: -1s;
  -o-animation-delay: -1s;
  animation-delay: -1s;
}

.loader-4 .loader .bounce3 {
  display: none;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes sk-rotate {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-o-keyframes sk-rotate {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@keyframes sk-rotate {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes sk-bounce {
  0%,
  100% {
    -moz-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@-o-keyframes sk-bounce {
  0%,
  100% {
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* ===================================================================
    Blog
===================================================================  */

.single-post {
  margin: 2em auto;
  padding: 2em;
  max-width: 800px;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.single-post h1 {
  margin-bottom: 0.5em;
  color: var(--primary-color);
}

.single-post .post-meta {
  font-size: 0.9em;
  color: var(--muted-color);
  margin-bottom: 1em;
}

.single-post p {
  margin-bottom: 1.5em;
}

.single-post img {
  margin-bottom: 1.5em;
  border-radius: 10px;
}

.single-post blockquote {
  margin: 1.5em 0;
  padding: 1em;
  background: var(--secondary-color);
  color: #fff;
  border-left: 5px solid var(--primary-color);
}

.single-post .tags {
  margin-top: 2em;
}

.single-post .tags a {
  display: inline-block;
  margin-right: 0.5em;
  padding: 0.5em 1em;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.single-post .tags a:hover {
  background: var(--primary-color);
}

/* General post styles */
.post,
.page {
  margin-bottom: 2em;
  padding: 1.5em;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: var(--background-color);
}

.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
  margin: 0 0 1em;
}

.post p {
  line-height: 1.6;
  margin: 0 0 1em;
}

.post img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1em;
}

/* Post format: Image */
.post.format-image img {
  border: 5px solid var(--border-color);
  padding: 5px;
  background: var(--background-color);
}

/* Post format: Gallery */
.post.format-gallery .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post.format-gallery .gallery-item {
  flex: 1 1 calc(33.333% - 10px);
  box-sizing: border-box;
}

/* Post format: Quote */
.post.format-quote {
  font-style: italic;
  border-left: 4px solid var(--border-color);
  padding-left: 15px;
  color: var(--muted-color);
}

/* Post format: Video */
.post.format-video iframe,
.post.format-video video {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Post format: Audio */
.post.format-audio audio {
  width: 100%;
}

/* Post format: Link */
.post.format-link a {
  display: block;
  padding: 1em;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

/* Post format: Aside */
.post.format-aside {
  background: var(--background-color);
  padding: 1em;
  border-left: 5px solid var(--border-color);
}

/* Post format: Status */
.post.format-status {
  background: var(--background-color);
  padding: 1em;
  border-radius: 5px;
}

/* Post format: Chat */
.post.format-chat {
  border-left: 3px solid var(--border-color);
  padding-left: 10px;
}

.post.format-chat ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post.format-chat li {
  margin-bottom: 1em;
}

.post.format-chat .speaker {
  font-weight: bold;
  margin-right: 10px;
}

/* Widgets, sidebar, and footer */
.sidebar,
.widget {
  padding: 1em;
  background: var(--background-color);
  margin-bottom: 1em;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .post.format-gallery .gallery-item {
    flex: 1 1 100%;
  }
}

/* ===================================================================
    NAVBAR
===================================================================  */
.navbar {
  padding: 0;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 5.625rem;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  align-items: center;
}

.nav-link:hover {
  /* color: var(--link-hover-color) !important; */
}

.nav-link.active {
  color: var(--link-hover-color) !important;
  border-bottom: 2px solid var(--link-color);
}

.phone-icon {
  background: var(--primary-color);
  padding: 10px;
  border-radius: 50%;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mega Menu Styles */
.mega-menu {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  top: 95px;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.product-card {
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.product-card.coral {
  background: #fff1ef;
  border: 1px solid #f9baa8;
}

.product-card.blue {
  background: #f0f7ff;
  border: 1px solid #9bbddd;
}

.product-card.purple {
  background: #f3f0ff;
  border: 1px solid #d2b1fe;
}

.product-card.green {
  background: #f0fff4;
  border: 1px solid #9bdda0;
}

.product-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.coral .product-icon {
  color: #ff6b4a;
}
.blue .product-icon {
  color: #4a90e2;
}
.purple .product-icon {
  color: #6b4aff;
}
.green .product-icon {
  color: #4aff6b;
}

.know-more {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 500;
}

.coral .know-more {
  color: #ff6b4a;
  border: 2px solid var(--primary-orange);
}
.blue .know-more {
  color: #1b67b1;
  border: 2px solid #1b67b1;
}
.purple .know-more {
  color: #9747ff;
  border: 2px solid #9747ff;
}
.green .know-more {
  color: #1bb125;
  border: 2px solid #1bb125;
}

.nav-link .bi-chevron-down {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-item:hover .bi-chevron-down {
  transform: rotate(-180deg);
}

/* amar code  */

.container {
  /* padding-left: 80px; */
  /* padding-right: 80px; */
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  color: var(--primary-blue);
  font-weight: 500;
}

/* hero section  */

.hero-section {
  padding: 70px 0px;

  background: linear-gradient(
    45deg,
    rgba(232, 101, 73, 0.05),
    rgba(255, 255, 255, 0.1)
  );
}

.hero-title {
  color: var(--primary-blue) !important;
  font: 50px !important;
  font-weight: 400 !important;

  font-family: 'Roboto', serif !important;
}

.hero-title span {
  color: var(--primary-orange) !important;
  font: 50px !important;
  font-weight: 500 !important;
  line-height: 58.59px !important;
  font-family: 'Roboto', serif !important;
}

.hero-description {
  color: #0a2a50 !important;
  font-size: 16px !important;
  font-family: 'Roboto', serif !important;
  font-weight: 400 !important;
  line-height: 23.44px !important;
  margin-top: 30px !important;
}

.hero-2-description {
  color: #0a2a50 !important;
  font-size: 16px !important;
  font-family: 'Roboto', serif !important;
  font-weight: 400 !important;
  line-height: 23.44px !important;
  align-items: center !important;
}


.hero-6-description {
  color: #0a2a50;
  font-size: 16px;
  font-family: 'Roboto', serif;
  font-weight: 400;
  line-height: 23.44px;
}

.section-2-description {
  display: flex;
  justify-content: center;

  text-align: center;
}

.btn-demo {
  margin-top: 20px !important;
  background-color: var(--primary-orange) !important;
  color: white !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  border: none !important;
  transition: transform 0.4s ease !important;
  display: flex !important;
  align-items: center !important;
  width: 200px !important;
}

.btn-demo:hover {
  background-color: #fff !important;
  border: solid 1px #d55a40 !important;
}

.btn-demo i {
  color: #d55a40 !important;
  width: 20px !important;
  height: 20px !important;
  border: 1px solid #fff !important;
  background: #fff !important;
  border-radius: 50% !important;
  margin-right: 5px !important;
  font-size: 12px !important;
  transition: transform 0.4s !important;
}

.btn-demo:hover i {
  transform: translateX(125px) !important;
  border: solid 1px #d55a40 !important;
  border-radius: 50% !important;
  background: #d55a40 !important;
  color: #fff !important;
}

.btn-demo span {
  transition: transform 0.4s ease !important;
}

.btn-demo:hover span {
  color: #d55a40;
  transform: translateX(-25px);
}

.feature-badge {
  background: white;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem;
}

.feature-badge .icon {
  color: #22c55e;
}

.hero-image {
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.button_Icon {
  height: 17px;
  width: 17px;
  margin-right: 5px;
}

.custom-tabs {
  border-bottom: 3px solid #ffede8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.custom-tabs .nav-link {
  border: none;
  color: #6c757d;
  padding: 1rem 1.5rem;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
  line-height: 18.75px;
}

.custom-tabs .nav-link:hover {
  color: #0d6efd;
}

.custom-tabs .nav-link.active {
  color: #0d6efd;
  background: none;
  border: none;
}

.custom-tabs .nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -27px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ec6139;
}

.tab-content {
  padding: 2rem 2rem !important;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pricing-card {
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.section-2-icons {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.section-3-icons {
  width: 53px;
  height: 53px;
}
.section-4-icons {
  width: 35px;
  margin-right: 20px;
}

.mega-menu-content h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 18.75px;
}
.mega-menu-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #878787;
}

.know-more {
  margin-top: 20px;

  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  width: 153px;
  height: 40px;
}
.tabs {
  width: 100px;
}

.nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
}

.tabs_item_icons {
  width: 30px;
  height: 30px;
}
.tabs_item_title {
  font-size: 18px !important;
  font-family: 'Roboto', serif !important;
}
.tabs_item {
  padding-left: 0 !important;
}
.tabs_item_title {
  padding-bottom: 20px !important;
  padding-left: 10px !important;
  font-size: 16px !important;
  font-family: 'Roboto', serif !important;
}

.section2 { 
  padding-top: 70px;
  background-color: white !important;
}
.section2 .tab-content {
  background-color: #fafafa;
 
}
.section2 .hero-title {
  line-height: 46.88px !important;
}
.section2 .hero-title .sctionBold {
  color: #0a2a50 !important;
  font-weight: 600 !important;
}
.section3 .hero-title .sctionBold {
  color: #0a2a50 !important;
  font-weight: 600 !important;
}
.section4 .hero-title .sctionBold {
  color: #0a2a50 !important;
  font-weight: 700 !important;
}
.section3 .hero-title span {
  font-weight: 600 !important;
}
.section3 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}


.commonmargin{
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}
.commonpadding{
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.commonpaddingtop{
  padding-top: 70px !important;
}
.commonpaddingtop{
  padding-top: 40px !important;


}
.section3_title {
  font-family: 'Roboto', serif;
  font-size: 18px;
  font-weight: 500;
  /* line-height: 21.09px; */
  margin-top: 7px;
  text-align: left;
  margin-bottom: 5px;
  color: #0a2a50;
}
.section3_description {
  font-family: 'Roboto', serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.41px;
  text-align: left;
  color: #0a2a50;
  margin-top: 10px;
}

.card-body {
  max-height: 130px;
}
.card {
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.icon-purple {
  background-color: #f3f0ff;
}
.icon-green {
  background-color: #e7f9f0;
}
.icon-blue {
  background-color: #f0f7ff;
}
.highlight-text {
  color: #f26d50;
}
.heading-text {
  color: #1a365d;
}
.preview-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.status-badge {
  background: #e7f9f0;
  color: #2e8b57;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
}
.call-button {
  color: #4a90e2;
  text-decoration: none;
}

.workflowbox {
  background-color: #ecf4ff;
  border: 1px solid #ecf4ff;
  padding: 3.12rem 2.18rem;
  border-radius: 20px;
  text-align: center;
  height: 100%;
}
.workflow-image-are {
  /* width:350px; */
  /* height: 300px; */
}
.workflow-image-are img {
  height: 180px; /* Set a fixed height */
  /* object-fit: cover;  */
  border-radius: 10px;
}
.workflowbox .workflow-title span {
  margin-top: 40px;
  margin-bottom: 20px;
  /* margin: 20px 20px; */
  font-size: 20px;
  font-weight: 500;
  line-height: 23.44px;
  width: 100%;
}
.workflowbox .workflow-para span {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.41px;
  width: 100%;
}

.icon-blue {
  background-color: #e8f1ff;
  color: #0d6efd;
}

.icon-green {
  background-color: #e7f9f0;
  color: #198754;
}

.icon-purple {
  background-color: #f3e8ff;
  color: #6f42c1;
}

.phone-container {
  position: relative;
  max-width: 400px;
}

.phone-container::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #f8f9fa;
  border-radius: 50%;
  z-index: -1;
  right: -100px;
  bottom: -50px;
}

@media (max-width: 768px) {
  .phone-container::before {
    display: none;
  }
}

.lab-title span {
  font-size: 30px;
  font-weight: 600;
  line-height: 35.16px;
}
.lab-title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
}

.fetature-group {
  display: flex;
}
.feature-icons {
  width: 50px;
}
.feature-icons img {
  width: 35px;
}
.nav-item .menu {
  position: absolute;
  top: 95px;
  width: 212px;
  /* height: 100%; */
  background: #fff;
  background-image: url(../Images/layer.png);
  background-position: left;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  padding: 10px 5px;
  border-radius: 10px;
  background-size: 203px 100%;
  z-index: 1;
  transform: translateX(10px);
  transition: 0.3s;
  box-shadow: 0px 5px 12px 0px #00000033;
}
.nav-item:hover .menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}
.menu ul {
  padding: 0px !important;
  margin: 0px !important;
}
.menu ul li {
  padding: 6px 10px;
  margin-bottom: 5px;
  border-radius: 4px;
  color: #000;
  transition: 0.3s;
}
.menu ul li:hover {
  background: #0d6efd;
  color: #fff;
  cursor: pointer;
}
.footer-bg {
  background-color: #e85c41;
  color: white;
  padding: 3rem 0;
}
.footer-logo {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 21.26px;
  line-height: 26.32px;
}

.social-icons a {
  color: white;
  margin-right: 0.25rem;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid white;
  border-radius: 5px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #fff;
  color: #000;
}
.contact-btn {
  border: 1px solid white;
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: white;
  text-decoration: none;
}
.footer-bottom-home {
  border-top: 1px solid #fff !important;
  padding-top: 1rem !important;
  margin-top: 0 !important;
  position: relative !important;
}
.back-to-top {
  color: white !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  bottom: 0 !important;
  border: 1px solid #fff !important;
  width: 40px !important;
  position: absolute !important;
  right: 2% !important;
}
.footer-link-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 23.44px;
}
.bottom-footer p {
  font-size: 16px;
  font-weight: 400;
}
.bottom-footer a {
  font-size: 14px;
  font-weight: 400;
}
.heading-text4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 21.09px;
  text-align: left;
  color: #1a365d;
}
.section7 {
  background-color: #f5f6fa;
}
.section6 .sectionDev6 .sectionDev66 .sctionBold6 {
  font-weight: 700 !important;
  color: #000 !important;
}

.section7 .sectionDev7 .sectionDev77 .sctionBold7 {
  font-weight: 700 !important;  
  color: #000 !important;
}
.section8 .sectionDev8 .sectionDev88 .sctionBold8 {
  font-weight: 700 !important;
  color: #000 !important;
}

.section8 {
  background-color: #ffece7;
}

/* modal */
.modal-custom {
  max-width: 1100px;
}
.modal-content {
  border-radius: 25px;
  overflow: hidden;
}
.form-side {
  padding: 80px;
  background: #fff9f9;
}
.form-side h3 {
  font-size: 30px;
  font-weight: 700;
}

form .patho-inpute .form-label {
  font-size: 16px !important;
  font-weight: 600;
}
form .patho-inpute input {
  border-radius: 30px !important;
  color: #acacac !important;
  font-size: 15px;
  font-weight: 400 !important;
  border-color: #e9e9e9 !important;
  padding-left: 45px;
}
.patho-inpute .form-control:focus {
  color: #acacac !important;
  background-color: var(--bs-body-bg);
  border-color: none !important;
  outline: 0;
  box-shadow: none !important;
}
form .input-area {
  position: relative;
}
form .input-area i {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 20px;
}

.patho-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.patho-radio .form-check-label {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  margin-top: 4px;
}
.patho-radio .input-check-label {
}

.patho-radio input[type='radio'] {
  width: 15px;
  height: 15px;
  border: 1px solid #eb6945 !important;
  background-color: none !important;
  margin-right: 10px;
}

.form-check-input:checked {
  background-color: #eb6945;
  border-color: #eb6945;
}

.patho-radio .form-check-input:focus {
  border-color: none !important;
  outline: 0;
  box-shadow: none !important;
}

.info-side {
  background-image: url(../Images/Rectangle.png);
  background-position: right;
  background-repeat: no-repeat;

  background-size: cover;
  position: relative;
  color: #fff;
}
.info-side .layer {
  background-color: rgba(241, 97, 56, 0.9);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.info-side-content {
  margin-left: 60px;
}

.btn-close {
  position: absolute;
  right: 12px;
  top: 12px;
  opacity: 1 !important;
}

.info-side-content h2 {
  font-size: 50px;
  font-weight: 500;
  line-height: 58.59px;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0;
}
.stat-text {
  font-size: 1.1rem;
}
.book-demo-btn {
  background-color: #e76f51;
  border: none;
  padding: 0.8rem;
  width: 100%;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  border-radius: 35px;
}
.form-control {
  padding: 0.8rem;
  border-radius: 10px;
}

/* logo carousel */
.logo-container {
  align-items: center;
  justify-content: center;
}

.logo-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logo-item {
  margin: 10px;
  width: 135px;
  flex-shrink: 0;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;

  box-shadow: 0px 0px 38px -23px rgba(112, 112, 112, 1);
}

.logo-item img {
  max-width: 90px;
  height: 50px;
  object-fit: contain;
}

/* @keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-200px * 4)); 
  }
} */

/* Pause animation on hover */
/* .logo-container:hover .logo-scroll {
  animation-play-state: paused;
} */

.accordion {
  max-width: 800px;
  margin: auto;
}
.accordion-item {
  border: 1px solid #ffece7 !important;
  /* border-radius: 5px; */
  margin-bottom: 10px !important;
  overflow: hidden !important;
  /* background-color: #fff; */
}



.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-item.active {
  border: 1px solid #ffece7;
  /* border-radius: 5px; */
  margin-bottom: 40px;
  overflow: hidden;
  /* background-color: #fff; */
}
.accordion-item.active .accordion-header {
  background-color: #fff;
  border-bottom: 1px solid #ffece7;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  background-color: #ffece7;
  transition: background-color 0.3s;
}
.accordion-header:hover {
  background-color: #ffece7;
}
.accordion-content {
  font-weight: 400;
  /* line-height: 18.75px; */
  padding: 5px 20px;
  display: none;
  font-size: 16px;
  color: #555;

  background-color: #ffece7;
}
.accordion-header .accordion-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;

  margin-right: 30px;
  margin-left: 30px;
}
.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-header .accordion-icon {
  padding: 10px;
  border-radius: 100px;
  border: 2px solid #000000;
  align-items: center;
  justify-content: center;
}
.icons {
  font-size: 15px;
}

.accordion-para {
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
}

/* testimonial */

.testimonial-icon {
  color: #ff6b35;
  background-color: rgba(255, 107, 53, 0.1);
  padding: 8px;
  border-radius: 50%;
}

.star-rating {
  color: #ff6b35;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card {
  padding: 2rem;
  height: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonialImage {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.testimonialImage1 {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.paragraphtestimonial {
  height: 150px;
  overflow: hidden;
}

.Testimonial {
  font-size: 12px;
}

@media screen and (max-width: 988px) {
  .phone-icon {
    display: none !important;
  }

  .phone-container{
    margin-bottom: 50px !important;
  }
  .navbar-collapse {
    background-color: #fff !important;
    z-index: 999;
    position: absolute;
    width: 100%;
    top: 91px;
    left: 0;
    -webkit-box-shadow: 0px 20px 30px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 20px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0px 20px 30px 0 rgba(0, 0, 0, 0.2);
  }

  .imagesection {
    padding-top: 50px;
  }
  .nav-item .section-2-icons {
    display: none !important;
  }
  .nav-item .nav-link {
    font-size: 12px !important;
  }
 
.section3 .card {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.footer-bottom{
  padding: 20px 20px 0px 20px !important;
  margin: 0px !important;
}

.footer-bg {
  padding: 2rem 2rem !important;
}
.foorter-top{
  text-align: center;
}
.footer-link-title, .footer-links{
  text-align: center;
}

.section3 .section3_title,
.section3 .section3_description{
  text-align: center !important;
}
}

.navbar-collapse.collapsing {
  height: auto !important;
}

#menu-top-menu li.active .nav-link {
  color : #EC6139 !important;
  border-bottom: 2px solid #EC6139 !important;
}


.nav-link:hover {
  /* color: var(--link-hover-color) !important; */
}

.nav-link.active {
  color: var(--link-hover-color) !important;
  border-bottom: 2px solid var(--link-color);
}


/* testimonial */

.testimonial-icon {
  color: #ff6b35;
  background-color: rgba(255, 107, 53, 0.1);
  padding: 8px;
  border-radius: 50%;
}

.star-rating {
  color: #ff6b35;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card {
  padding: 2rem;
  height: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonialImage{
  width: 15px;
  height: 15px;
  margin-right: 10px;
  
}
.testimonialImage1{
  width: 40px;
  height: 40px;
  margin-right: 10px;
  
}

.paragraphtestimonial{
height: 150px;
overflow: hidden  ;
}

.Testimonial{
  font-size: 12px;
}

.slick-dots li button:before {
  font-family: slick;
  font-size: 12px !important;
}

.hero-section {
  padding: 70px 0px !important;
  background: linear-gradient(45deg, rgba(232, 101, 73, 0.05), rgba(255, 255, 255, 0.1)) !important;
}