: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 ;
    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) ;
    font-weight: 500;
    padding: 0.5rem 1rem ;
    align-items: center;
  }
  
  .nav-link:hover {
    /* color: var(--link-hover-color) ; */
  }
  
  .nav-link.active {
    color: var(--link-hover-color) ;
    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-contact {
    background-image: url(../images/backcontact.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .hero-title {
    color: var(--primary-blue);
    font: 50px;
    font-weight: 400;
    font-family: 'Roboto', serif;
  }
  
  .hero-title span {
    color: var(--primary-orange);
    font: 50px;
    font-weight: 500;
    line-height: 58.59px;
    font-family: 'Roboto', serif;
  }
  
  .hero-description {
    color: #0a2a50;
    font-size: 16px;
    font-family: 'Roboto', serif;
    font-weight: 400;
    line-height: 23.44px;
    margin-top: 30px;
  }
  
  
  .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;
    background-color: var(--primary-orange);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    width: 200px;
  }
  
  .btn-demo:hover {
    background-color: #fff;
    border: solid 1px #d55a40;
  }
  
  .btn-demo i {
    color: #d55a40;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 50%;
    margin-right: 5px;
    font-size: 12px;
    transition: transform 0.4s;
  }
  
  .btn-demo:hover i {
    transform: translateX(125px);
    border: solid 1px #d55a40;
    border-radius: 50%;
    background: #d55a40;
    color: #fff;
  }
  
  .btn-demo span {
    transition: transform 0.4s ease;
  }
  
  .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 0;
  }
  
  .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;
    font-family: 'Roboto', serif;
  }
  .tabs_item {
    padding-left: 0 ;
  }
  .tabs_item_title {
    padding-bottom: 20px;
    padding-left: 10px;
  
    font-size: 16px;
    font-family: 'Roboto', serif;
  }
  
  .section2 {
    background-color: #fafafa;
  }
  .section2 .hero-title {
    line-height: 46.88px;
  }
  .section2 .hero-title .sctionBold {
    color: #0a2a50;
    font-weight: 600;
  }
  .section3 .hero-title .sctionBold {
    color: #0a2a50;
    font-weight: 600;
  }
  .section4 .hero-title .sctionBold {
    color: #0a2a50;
    font-weight: 600;
  }
  .section3 .hero-title span {
    font-weight: 600;
  }
  .section3 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  
  .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: 50px 35px;
    border-radius: 20px;
    text-align: center;
    height: 550px;
  }
  .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: 240px;
  }
  .workflowbox .workflow-para span {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.41px;
    width: 240px;
  }
  
  .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;
  }
  
  .image-container {
    position: relative;
    max-width: 500px;
  }
  
  /* .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;
    }
    .navbar-brand img {
      height: 40px ;
   }
  }
  
  .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 ;
    margin: 0px ;
  }
  .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;
  }
  .footer-logo {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 21.26px;
    line-height: 26.32px;
  }
  .social-icons a {
    color: white;
    margin-right: 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 {
    border-top: 1px solid #fff;
    padding-top: 1rem;
    margin-top: 2rem;
    padding: 45px 80px 0px 80px;
    position: relative;
  }
  .back-to-top {
    color: white;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    bottom: 20px;
    right: 20px;
    border: 1px solid #fff;
    width: 40px;
    position: absolute;
    right: 60px;
    top: 40px;
  }
  .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;
  }
  
  .section6 .sectionDev6 .sectionDev66 .sctionBold6 {
    font-weight: 700;
    color: #000;
  }
  .section7 .sectionDev7 .sectionDev77 .sctionBold7 {
    font-weight: 700;
    color: #000;
  }
  .section8 .sectionDev8 .sectionDev88 .sctionBold8 {
    font-weight: 700;
    color: #000;
  }
  
  .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 ;
    font-weight: 600;
  }
  form .patho-inpute input {
    border-radius: 30px ;
    color: #acacac ;
    font-size: 15px;
    font-weight: 400 ;
    border-color: #e9e9e9 ;
    padding-left: 45px;
  }
  .patho-inpute .form-control:focus {
    color: #acacac ;
    background-color: var(--bs-body-bg);
    border-color: none ;
    outline: 0;
    box-shadow: none ;
  }
  form .patho-inputes .form-label {
    font-size: 16px ;
    font-weight: 600;
  }
  form .patho-inputes input {
    border-radius: 10px ;
    color: #acacac ;
    font-size: 15px;
    font-weight: 400 ;
    border-color: #e9e9e9 ;
    padding-left: 45px;
  }
  .patho-inputes .form-control:focus {
    color: #acacac ;
    background-color: var(--bs-body-bg);
    border-color: none ;
    outline: 0;
    box-shadow: none ;
  }
  
  
  
  
  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 ;
    background-color: none ;
    margin-right: 10px;
  }
  
  .form-check-input:checked {
    background-color: #eb6945;
    border-color: #eb6945;
  }
  
  .patho-radio .form-check-input:focus {
    border-color: none ;
    outline: 0;
    box-shadow: none ;
  }
  
  .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 ;
  }
  
  .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;
  }
  
  .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;
  }
  
  /* heroImage */
  
  .heroImageSection {
    padding: 120px;
  }
  
  /* second section  */
  
  .cardback {
    background-color: #fff;
    box-shadow: 0px 0px 38px -23px rgba(112, 112, 112, 1);
    border-radius: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
    width: 270px;
  }
  .sectionDev10 {
    justify-content: space-around;
  }
  
  .heroImages {
    height: 70px;
    width: 70px;
  }
  
  .sectionDev10 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .colText {
    font-size: 20px;
    font-weight: 700;
    margin: 0px;
  }
  .colpara {
    margin: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  
  /* third section */
  .text1 {
    color: #89db7b;
    font-size: 22px;
    font-weight: 700;
  }
  .text2 {
    color: #0a2a50;
    font-size: 30px;
    font-weight: 600;
  }
  .para1 {
    color: #1e1e1e;
    font-size: 20px;
    font-weight: 400;
    line-height: 23.44px;
    text-align: left;
  }
  .para2 {
    color: #1e1e1e;
    font-size: 20px;
    font-weight: 400;
    line-height: 40.44px;
    text-align: left;
  }
  
  .headingss {
    font-size: 20px;
    font-weight: 600;
  }
  
  /* 4th section */
  .tick {
    width: 18px;
    margin-right: 14px;
  }
  .parabold {
    font-weight: bold;
    color: #1e1e1e;
  }
  
  .boldparadesign {
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
  }
  
  /* jhgjhgjhgjhg */
  .h1bold {
    font-size: 36px;
    font-weight: 500;
    line-height: 42.19px;
    color: #0a2a50;
  }
  .h1boldh1 {
    color: #0a2a50;
    font-size: 26px;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
  }
  .feature-card .PparaP {
    color: #1e1e1e;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
  }
  
  .feature-icon {
    font-size: 32px;
    color: #00274d;
  }
  .feature-card {
    padding: 20px;
  }
  .feature-card h5 {
    font-weight: 600;
    color: #00274d;
  }
  .feature-card p {
    color: #6c757d;
  }
  
  .paraq {
    color: #000000;
  
    font-size: 18px;
    font-weight: 400;
    line-height: 23.44px;
    text-align: center;
  }
  
  /* gjhgjhg */
  
  .containersec {
    background-color: #fef6f3;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  /* last sextion */
  
  .PparaP {
    font-size: 20px;
    font-weight: 400;
    line-height: 29.3px;
    text-align: left;
  }
  
  .marginDiv {
    margin-top: 200px;
    margin-bottom: 200px;
  }
  
  .hero-title1 span {
    color: var(--primary-orange);
    font: 50px;
    font-weight: 500;
    line-height: 58.59px;
    font-family: 'Roboto', serif;
  }
  
  .hero-title1 {
    color: var(--primary-blue);
    font: 50px;
    font-weight: 500;
    font-family: 'Roboto', serif;
  }
  .hero-title111 {
    color: var(--primary-blue);
    font: 50px;
    font-weight: 500;
    font-family: 'Roboto', serif;
    padding-bottom: 50px;
  }
  
  .formcontainer {
    background-color: #fff;
    padding: 100px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 1080px;
    margin: 0 auto;
    margin-top: -120px;
  }
  
  .form-container-wrapper { 
    position: relative;
  }
  
  /* contactus */
  
  .hero-sections {
    background-color: #fff5f5;
    padding: 0px 60px;
    /* margin-bottom: 40px; */
    margin-bottom: 30px;
    border-radius: 20px;
  }
  
  .headtitle {
    color: #000;
    font-size: 40px;
    font-weight: 500;
    line-height: 46.88px;
  }
  
  .lead {
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
  }
  
  .cards {
    background-color: #f8fafc;
    border: none;
    padding: 40px 60px;
    height: 100%;
    border-radius: 20px;
  }
  
  .support-links {
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
  }
  
  .support-links:after {
    content: '→';
    margin-left: 8px;
  }
  
  .hero-images {
    max-width: 220px;
    height: auto;
  }
  
  .card-images {
    /* width: 120px; */
    height: 120px;
    margin-top: 20px;
  }
  
  .paradd {
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
  }
  
  /* coral */
  
  .coral-color {
    color: #e27055;
  }
  .coral-bg {
    background-color: #e27055;
  }
  .icon-circle {
    width: 45px;
    height: 45px;
    background-color: #e27055;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
  }
  .social-icon {
    width: 40px;
    height: 40px;
    background-color: #e27055;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    text-decoration: none;
  }
  .social-icon:hover {
    background-color: #d15c41;
    color: white;
  }
  .submit-btn {
    background-color: #F16138;
    border: none;
    padding: 10px 40px;
    border-radius: 25px;
  }
  .submit-btn:hover {
    background-color: #F16138;
  }
  .form-control {
    border-radius: 8px;
    padding: 12px;
  }
  .message-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
  }
  
  .getintouch {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    line-height: 46.88px;
  }
  
  .getpara {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
  }
  
  .address {
    color: #000;
    font-size: 20px;
    font-weight: 500;
  margin: 0;
  }
  
  
  .paras{
  color: #4A4A4A;
  font-size: 16px;
  font-weight: 400;
  
  
  
  }
  
  
  .message-cards {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
  }
  
  .paddingcontainer{
    margin-top: 80px;
    margin-bottom: 150px;
  
  }
  
  .icon-circle{
    background-color: #F16138;
  }
  
  .social-icon{
    background-color: #F16138;
  }