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

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

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

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

.light-background {
  --background-color: #0d1d26;
  --surface-color: #16262f;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: white;
  font-family: var(--default-font);
  background: url('https://hidoc-files.sgp1.digitaloceanspaces.com/hidoc-client-files/1781269485217.jpeg') no-repeat center center fixed;
  background-size: cover;
  background-color: #000131;
}

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

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

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

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -9px) !important;
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -9px) !important;

}

input::placeholder,
textarea::placeholder {
  color: #212529 !important;
  /* Your desired color */
  opacity: 1;
  /* Ensures full visibility */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #212529 !important;
  /* Your desired color */
  opacity: 1;
  /* Ensures full visibility */
}



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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);

  transition: all 0.5s;
  z-index: 997;
}

.header.scrolled {
  background-color: #064f7a;
}

.header .btn-primary {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: #20d0ce;
  color: #024570;
  border: 0;
}

.header .btn-primary:hover {
  background: white;
  color: #024570;
}

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


.header .logo img {
  max-width: 141px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 15px 10px 15px
  }

  /* .header .logo {
    order: 1;
  } */

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: transparent;
  font-size: 14px;
  position: relative;
  padding: 20px 0px;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.copyright {
  display: flex;
  align-items: center;
  /* Vertically center */
  justify-content: space-between;
  /* Push left & right divs apart */
  min-height: 60px;
  /* Adjust as needed */
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}


.footer .copyright p {
  margin-bottom: 0;
  font-size: 18px;
}

.credits p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

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

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

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

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

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

  .hero .description
{
  margin-right: 10px;
}

.mob-centr{
  display: block!important;
  text-align: center;
}

  .Introduction {
    /* text-align: center; */
    margin: 0px 30px;
  }

  .Introduction .about-image {
    margin: 0 auto !important;
  }

  .global {
    text-align: center;
  }

  .footer {
    text-align: center;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .header .logo img {
    max-height: 45px;
  }

  .header-btn .btn {
           padding: 10px 16px;
        font-size: 14px;
  }

  .left {
    text-align: center !important;
    margin-top: 10px;
  }


  .desk {
    display: none !important;
  }

  .header .logo img {
    margin-top: 0px;
  }

  .about h1 {
    margin-bottom: 20px;
  }

  .mob {
    display: block;
  }

  .logo.desk {
    display: none;
    /* hide desktop logo */
  }

  .logo.mob {
    display: block;
    margin: 0 auto;
    /* centers horizontally */
    text-align: center;
  }

  /* Ensure the container centers it */
  .header-container {
    justify-content: center !important;
  }
}

@media screen and (min-width: 768px) {

  .left {
    float: left;
    width: 100%;
  }

  .desk {
    display: block;
  }

  .mob {
    display: none;
  }

  .right-img {
    display: flex;
    justify-content: flex-end;
    /* Push content to the right */
    align-items: center;
    /* Vertically center if needed */
  }

  .right {
    float: right;
  }

}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {

  padding: 0px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  /* background: #000131;
  background: linear-gradient(to bottom, #000131 0%, #000131 90%, #1590CF 100%); */
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
  background: url("https://hidoc-files.sgp1.digitaloceanspaces.com/hidoc-client-files/1781269414293.jpeg") no-repeat center center/cover;
}




.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

/* @media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
} */





.hero .agency-name {
  margin-bottom: 1.5rem;
}

.hero .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin: 0;
}

.hero .main-heading {
  margin-bottom: 2rem;
}

.hero .main-heading h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -1px;
  margin: 0;
}

@media (max-width: 1200px) {
  .hero .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero .main-heading h1 {
    font-size: 3rem;
  }
      .container-footer {
        padding: 40px 10px !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
  .hero .main-heading h1 {
    font-size: 2.5rem;
  }
}

.hero .divider {
  width: 60%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero .divider {
    width: 100%;
  }
}

.hero .description {
  margin-bottom: 2.5rem;
}

.hero .description p {
  font-size: 1rem;
  line-height: 1.7;
  color: white;
  margin: 0;
}

.hero .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: #20d0ce;
  color: #024570;
}

body.modal-open {
  overflow: hidden;
  /* hides scrollbar */
  padding-right: 0 !important;
  /* avoid layout shift */
}

.hero .cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero .cta-button .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .cta-button .btn:hover i {
  transform: translateX(5px);
}

.hero .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero .visual-content {
    flex-direction: column;
  }
}

.hero .fluid-shape {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.hero .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
}

.hero .stats-card .stats-number h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero .stats-card .stats-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hero .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about .about-image {
  border-radius: 8px;
  overflow: hidden;
  width: 80%;
}

.about {
  padding: 20px 0 40px 0px;
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
    right: 0;
    bottom: 20px;
    padding: 1rem;
    min-width: 120px;
  }

  .Introduction .about-content h2 {
    text-align: center;
  }

  .Introduction .about-content .btn-primary {
    margin: 0 auto;
    text-align: center;
    display: flex;
    width: max-content;
  }

  html,
  body {
    overflow-x: hidden !important;
  }


  .hero {
    position: relative;
    min-height: 50vh !important;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 30px !important;
    background: none;
    background-color: #024474;
  }

  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }

  .about {
    /* text-align: center; */
    margin: 0px 30px;
  }

  /* .about .about-image {
    margin: 0 auto;
  } */

  .copyright {
    display: block;
    align-items: center;
    text-align: center !important;
    padding: 20px 0px;
  }


  .copyright img {
    margin: 0 auto;
    width: 40%;
  }
}

.about .about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

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

  }


}

.about .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: white;
}

.Introduction .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: white;
}

.Introduction .about-content h2{
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

div:where(.swal2-container) div:where(.swal2-html-container){
  padding-top: 30px !important;
}


.about .about-content p {
  margin-bottom: 1rem;
}

.about .about-content .feature-item {
  padding: 1.25rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.about .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.about .about-content .feature-item h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.about .about-content .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

.about .about-content .btn-primary {
  background-color: transparent;
  border-color: #20d0ce;
  color: #20d0ce !important;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1.3em;
  color: var(--contrast-color);
}

.about .about-content .btn-primary:hover {
  background-color: transparent;
  border-color: white;
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  color: var(--contrast-color);
}

.about .testimonial-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about .testimonial-section .testimonial-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.about .testimonial-section .testimonial-intro p {
  margin-bottom: 1.5rem;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons {
  display: flex;
  gap: 10px;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
  font-size: 1.25rem;
}

.about .testimonial-section .testimonial-slider {
  overflow: hidden;
}

.about .testimonial-section .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.about .testimonial-section .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about .testimonial-section .testimonial-item .rating {
  color: #ffc107;
  font-size: 1rem;
}

.about .testimonial-section .testimonial-item p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.about .testimonial-section .testimonial-item .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.about .testimonial-section .testimonial-item .client-info h6 {
  font-weight: 600;
}

.about .testimonial-section .testimonial-item .client-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}


.profile {
  position: relative;
  width: 100%;
  /* height: 200px; */
  border-radius: 50%;
  padding: 8px;
  background: conic-gradient(from 0deg,
      #1590CF,
      #7A3FFF,
      #FF00CC,
      #1590CF);
  /* colorful circular gradient */
}

.profile img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #0b0b2e;
  /* inner dark border */
  display: block;
  background: #00cfff;
}

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



@media (max-width: 768px) {

  .text {
    order: 2;
    /* show text second */
  }

  .mob-centr{
        display: block!important;

    text-align: center;
  }

  .image {
    order: 1;
    /* show image first */
  }

  .about-content {
    margin-bottom: 30px;
  }

  .hero .content-col {
    text-align: center !important;
    margin: 0px 0px;
    padding-right: 0rem !important;
  }

  .about .about-content .btn-primary {
    margin: 0 auto;
    text-align: center;
    display: flex;
    width: max-content;
  }


  .about .about-image {
    margin: 0 auto !important;
  }

  .about-content h3 {
    text-align: center;
  }

  .about .about-content h2 {
    text-align: center;
  }

  .about h1 {
    text-align: center;
  }

}

.modal-content {
  border-radius: 20px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
  border-bottom: none;
  text-align: center;
  justify-content: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.form-control,
.form-select {
  border-radius: 12px;
  padding: 10px 15px;
}

.footer .col-md-4 .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.form-select {
  color: #212529;
}

.btn-custom {
  background: #20d0ce;
  color: white;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
  width: max-content !important;
  margin: 0 auto;
}

.btn-custom:hover {
  opacity: 0.9;
  transform: scale(1.02);
  background: #20d0ce;
  color: white;
}

.about-content h3 {
  font-size: 23px;
  font-weight: 600;
}


@media (min-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

.scroll-top.active {
  bottom: 30px !important;
}

/* ipad mini */
@media only screen and (max-width: 768px) and (min-width: 600px) {
  .hero .description p {
    padding: 0px 20px;
  }

  .footer a {
    color: white;
    font-size: 12px;
}

.footer-img {
    width: 30%!important;
    margin-bottom: 10px;
}

  .footer{
        padding: 20px 10px!important;
  }

    .mob-centr{
       display: block!important;

    text-align: center;
  }


      .container-footer {
        padding: 40px 10px !important;
        text-align: center;
    }

  .footer .credits {
    margin-top: 0px;
    font-size: 13px;
    margin-right: 20px;
  }

  .copyright img {
    margin: 0 auto;
    width: 100%;
    margin-left: 20px;
  }

  .scroll-top.active {
    bottom: 72px !important;
  }

  .hero {
    position: relative;
    min-height: 50vh !important;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 30px !important;
    background: none;
    background-color: #000131;
    background: url(https://hidoc-files.sgp1.digitaloceanspaces.com/hidoc-client-files/1755325365898.jpg) center center / cover no-repeat;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 17, 25, 0.3);
    /* Black overlay with 50% opacity */
    z-index: 1;
    /* Ensure the overlay is above the background but below the content */
  }

  .hero>* {
    position: relative;
    z-index: 2;
    /* Ensure your content (e.g., text) is above the overlay */
  }

  .lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 20px auto;
    width: 400px;
  }

  .footer .desk {
    display: block !important;
  }

  .swal2-popup {
    /* max-width: 61% !important; */
    width: 50% !important;
  }
}

/* Media query for iPad Air (portrait & landscape) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {

  /* Your styles for iPad Air go here */
  .about-content {
    margin-bottom: 30px;
  }

  .footer-img {
    width: 30%;
    margin-bottom: 10px;
}

    .footer{
        padding: 20px 10px!important;
  }


    .mob-centr{
        display: block!important;

    text-align: center;
  }


      .container-footer {
        padding: 40px 10px !important;
        text-align: center;
    }

  .hero .description p {
    padding: 0px 30px;
  }

  .footer .credits {
    margin-top: 0px;
    font-size: 13px;
    margin-right: 20px;
  }

  /* .copyright img {
  margin: 0 auto;
  width: 100%;
  margin-left: 20px;
} */
  .copyright img {
    margin: 0 auto;
    width: 100% !important;
    margin-left: 20px !important;
    margin: 0px auto 1px 15px !important;
  }

  .scroll-top.active {
    bottom: 72px !important;
  }

  .hero {
    position: relative;
    min-height: 40vh !important;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 30px !important;
    background: none;
    background-color: #024474;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 17, 25, 0.3);
    /* Black overlay with 50% opacity */
    z-index: 1;
    /* Ensure the overlay is above the background but below the content */
  }

  .hero>* {
    position: relative;
    z-index: 2;
    /* Ensure your content (e.g., text) is above the overlay */
  }

  .lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 20px auto;
    width: 500px;
  }

  .global{
      text-align: center;
      background: #06648a!important;
  }

  .global .col-xl-8 {
width: 100%;
  }

  .Introduction .about-image{
        margin: 0 auto !important;
        text-align: center;
  }

  .Introduction .about-content h2{
     text-align: center;
  }

  .Introduction .about-content .btn-primary{
            margin: 0 auto;
        text-align: center;
        display: flex;
        width: max-content;
  }

  .about .about-content .btn-primary {
    margin: 0 auto;
    text-align: center;
    display: flex;
    width: max-content;
  }


  .about .about-image {
    margin: 0 auto !important;
    text-align: center;
  }

  .about-content h3 {
    text-align: center;
  }

  .about .about-content h2 {
    text-align: center;
  }

  .about h1 {
    text-align: center;
  }

  .text {
    order: 2;
    /* show text second */
  }

  .image {
    order: 1;
    /* show image first */
  }

  .hero .content-col {
    text-align: center !important;
    margin: 0px 0px;
    padding-right: 0rem !important;
  }

  .header-container {
    justify-content: center !important;
  }

  .logo.mob {
    display: block;
    margin: 0 auto;
    /* centers horizontally */
    text-align: center;
  }

  .desk {
    display: none !important;
  }

  .footer .desk {
    display: block !important;
  }

  .swal2-popup {
    /* max-width: 61% !important; */
    width: 50% !important;
  }
}


/* ipad pro */
@media only screen and (min-width: 1024px) and (max-width: 1194px) {


  .about .about-content h2 {
    text-align: left;
  }

  .footer-img {
    width: 30%;
    margin-bottom: 10px;
}

    .footer{
        padding: 20px 10px!important;
  }


    .mob-centr{
        display: block!important;

    text-align: center;
  }


      .container-footer {
        padding: 40px 10px !important;
        text-align: center;
    }
 
    .Introduction .about-content h2 {
        text-align: left;
    }

        .Introduction .about-content .btn-primary {
        margin: 0;
    }

    .main-heading{
      margin-top: 40px;
    }


  .about-content h3 {
    text-align: left;
  }

  .about .about-content .btn-primary {

    margin: 0;
  }

  .lead {
    margin: 0;
  }

  #hero .col-lg-7 {
    width: 100%;
  }

  .footer .desk {
    display: block !important;
  }

  .swal2-popup {
    /* max-width: 61% !important; */
    width: 40% !important;
  }

}

@media only screen and (min-width: 712px) and (max-width: 800px) and (orientation: portrait) {
  .copyright img {
    width: 35%;
    margin: 15px auto;

  }

    .mob-centr{
    display: block!important;
    text-align: center;
  }


  
    .main-heading{
      margin-top: 40px;
    }

  .desk {
    display: none !important;
  }

  .mob {
    display: none !important;
  }

  .footer .desk {
    display: block !important;
  }
}

.Introduction .about-content .btn-primary {
  background-color: transparent;
  border-color: #20d0ce;
  color: #20d0ce !important;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1.3em;
  color: var(--contrast-color);
}

.Introduction .about-image {
  border-radius: 8px;
  overflow: hidden;
  width: 80%;
}


.global {
  padding: 120px 0px;
  background-image: url(https://hidoc-files.sgp1.digitaloceanspaces.com/hidoc-client-files/1781267078423.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

/* .how-it-works{
    background:#f4f4f4;
} */
.worksSwiper {
  padding: 20px 50px 60px;
}

.work-card {
  text-align: center;
}

.circle-wrap {
  width: 180px;
  height: 180px;
  /* border: 3px solid #4b73b7; */
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
}

.circle-wrap img {
  max-width: 180px;
}

.work-card h4 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.swiper-button-prev,
.swiper-button-next {
  color: #4b73b7;
}

.swiper-pagination {
  margin-top: 20px;
}

.footer a i {
  margin-right: 6px;
}

.footer a {
  color: white;
}



.copyright-bar a {
  text-decoration: none;
}

.copyright-bar a:hover {
  text-decoration: underline;
}

.container-footer {
    padding: 20px 0px 20px 0px;
}

.footer-img {
       width: 50%;
    margin-bottom: 10px;
}

.copyright-new>p {
    margin-bottom: 0;
    color: #091634;
}

.credits p{
   color: #091634;
}

.credits a{
     color: #086582;
    font-weight: 600;
}

.copyright-new strong {
    color: #086582;
    font-weight: 600;
}

.footer-area-bottom {
    background: #E7E8EC none repeat scroll 0 0;
    padding: 15px 0;
}

.credits {
    padding-top: 5px;
    text-align: center;
}

.footer-content a {
    color: white;
    font-size: 14px;
}

.footer-icons ul li a {
    border: 1px solid #fffefe;
    color: #fffefe;
    display: block;
    font-size: 16px;
    height: 40px;
    line-height: 38px;
    margin-right: 5px;
    text-align: center;
    width: 40px;
    border-radius: 50%;
}

.both-address {
    display: block;
}

.both-address p {
    width: 100%;
    color: white;
}

.client {
padding: 60px 0px;
}

.footer-icons {
    margin-top: 10px;
}

.footer-content ul {
    list-style-type: square !important;
    padding: 0px 0px 0px 0px;
}
.footer-icons ul li {
    display: inline-block;
}
