@charset "UTF-8";
:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --white-color: #ffffff;
  --font-family-base: "Roboto", "Segoe UI", Arial, sans-serif;
  --base-height: 100vh;
  /* Primary Colors */
  --primary-50: #f2f5fc;
  --primary-100: #e3e9f6;
  --primary-200: #cdd9f0;
  --primary-300: #aabfe6;
  --primary-400: #829ed8;
  --primary-500: #647fcd;
  --primary-600: #5065c0;
  --primary-700: #4654af;
  --primary-800: #3e478f;
  --primary-900: #363e72;
  --primary-950: #272B4C;
  /* Secondary Colors */
  --secondary-50: #fbf5ef;
  --secondary-100: #f4e3d1;
  --secondary-200: #e9c49e;
  --secondary-300: #dda26c;
  --secondary-400: #d58448;
  --secondary-500: #cc6634;
  --secondary-600: #b44c2b;
  --secondary-700: #963627;
  --secondary-800: #7b2d25;
  --secondary-900: #662621;
  --secondary-950: #39120f;
  /* Neutral Colors */
  --neutral-50: #f6f6f6;
  --neutral-100: #e7e7e7;
  --neutral-200: #d1d1d1;
  --neutral-300: #b0b0b0;
  --neutral-400: #888888;
  --neutral-500: #6d6d6d;
  --neutral-600: #5d5d5d;
  --neutral-700: #4f4f4f;
  --neutral-800: #454545;
  --neutral-900: #3d3d3d;
  --neutral-950: #000000;
  --font-default: "Inter", sans-serif;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #091d3e;
  --dark-secondary: #0c234a;
  --white-secondary: #bed6dc;
  --white-secondary: #d8e3f0;
  --color-primary: #0c5adb;
  --color-secondary: #9600ff;
  --color-heading: #232323;
  --color-paragraph: #666666;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #E7EDF8;
  --bg-gradient: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --bg-gradient01: linear-gradient(90deg, var(--primary-900) 0%, var(--primary-700) 100%);
  --bg-gradientHover: linear-gradient(90deg, var(--secondary-700) 0%, var(--color-primary) 100%);
  --font-size-base: 1;
  --font-size-lg: 1.25rem;
  --font-size-md: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-10: 0.625rem;
  --font-size-11: 0.688rem;
  --font-size-12: 0.75rem;
  --font-size-13: 0.813rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.938rem;
  --font-size-16: 1rem;
  --font-size-17: 1.063rem;
  --font-size-18: 1.12rem;
  --font-size-19: 1.18rem;
  --font-size-20: 1.25rem;
  --font-size-21: 1.31rem;
  --font-size-22: 1.37rem;
  --font-size-23: 1.43rem;
  --font-size-24: 1.5rem;
  --font-size-30: 1.875rem;
  --font-size-40: 2.5rem;
  --font-size-50: 3.125rem;
  --font-size-55: 3.438rem;
  --font-size-60: 3.75rem;
  --border-radius: 0.25rem;
  --border-width: 0.15rem;
  --transition: all 0.2s ease-in-out;
  --box-bg: #5065c0;
  --box-color: #fff;
  --triangle-size: 24px;
  /* controls triangle width/height */
  --box-padding: 16px;
  --box-radius: 8px;
  --boxShadow: #0B48AB;
}

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

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: var(--white-color);
  color: var(--color-paragraph);
}

.container-fill, .container-full, .container-medium {
  padding: 0 15px;
  margin: auto;
}

.container-medium {
  max-width: 1400px;
}
@media (min-width: 576px) {
  .container-medium {
    max-width: 540px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container-medium {
    max-width: 720px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container-medium {
    max-width: 960px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container-medium {
    max-width: 1400px;
    width: 80%;
  }
}

.container-full {
  max-width: 1400px;
}
@media (min-width: 576px) {
  .container-full {
    max-width: 540px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container-full {
    max-width: 720px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container-full {
    max-width: 960px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container-full {
    max-width: 95%;
    width: 95%;
  }
}

.container-fill {
  max-width: 100%;
}
@media (min-width: 576px) {
  .container-fill {
    max-width: 540px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container-fill {
    max-width: 720px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container-fill {
    max-width: 960px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container-fill {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .container-fill {
    padding: 0 15px;
    width: 100%;
  }
}

@media only screen and (min-width: 1367px) {
  .container-stage {
    margin-left: calc((100% - 1320px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}
.fixed-bg {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: inherit;
}

 
.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
}
.bg-fixed {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
}
.bg-fit {
  background-size: 100% 100% !important;
  background-position: center !important;
}
.bg-gray {
  background: #E7EDF8;
}
.bg-light {
  background-color: var(--white-color);
}
.bg-dark {
  background-color: var(--dark) !important;
}
.bg-theme {
  background-color: var(--color-primary);
}
.bg-gradient {
  background-color: var(--color-primary);
  background: var(--bg-gradient) !important;
}

.text-light {
  color: var(--white-color);
}

.whiteBg {
  background-color: var(--white-color);
}

.wrapper {
  height: 100%;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
  font-family: var(--font-default) !important;
}
a img {
  border: none;
}
a:active {
  outline: none;
  text-decoration: none;
  color: var(--color-primary);
  opacity: 1;
}
a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-primary);
}
a:hover {
  outline: none;
  text-decoration: none;
  opacity: 1;
  color: var(--color-primary);
}

.noPaddingLeft {
  padding-left: 0 !important;
}

.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100%;
  max-width: 100%;
}

header {
  width: 100%;
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Normal Header */
header.normal {
  background: transparent;
  color: white;
  position: relative;
}

header.normal .logo {
  font-size: 28px;
  font-weight: bold;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header.normal .logo::after {
  content: "";
  position: absolute;
  top: 28%;
  left: 202px;
  /* pull it outside the box */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: var(--triangle-size) solid transparent;
  border-left: var(--triangle-size) solid var(--boxShadow);
  pointer-events: none;
}
@media (max-width: 576px) and (max-width: 767px) {
  header.normal .logo::after {
    display: none;
  }
}
header.normal .logo img {
  width: 80%;
}

header.normal nav a {
  color: var(--primary-950);
  font-size: 18px;
  margin-left: 20px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--secondary-600);
  border-bottom: 3px solid var(--primary-800);
}

#compact-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-120%);
  transition: transform 220ms ease, background 220ms ease;
  z-index: 1100;
}

/* visible state */
#compact-header.show {
  transform: translateY(0);
}

#compact-header .logo img {
  height: 36px;
}

#compact-header .compact-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

#compact-header .compact-actions .btnPrimary {
  padding: 6px 12px;
  font-size: 14px;
}

/* make sure main content doesn't hide under the sticky header when shown */
body.compact-header-visible {
  padding-top: 64px;
}

/* small responsive tweaks */
@media (max-width: 576px) {
  #compact-header {
    padding: 0 12px;
  }
  #compact-header .logo img {
    height: 30px;
  }
}
.topHeader {
  background-color: var(--primary-950);
}
.topHeader span {
  margin: 0px 0px 0px 60px;
  font-size: var(--font-size-20);
}
.topHeader ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Compact sticky header (hidden by default) */
#compact-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-120%);
  transition: transform 220ms ease, background 220ms ease;
  z-index: 1100;
}

/* visible state */
#compact-header.show {
  transform: translateY(0);
}

#compact-header .logo img {
  height: 36px;
}

#compact-header .compact-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

#compact-header .compact-actions .btnPrimary {
  padding: 6px 12px;
  font-size: 14px;
}

/* When the collapsed navbar is opened on small screens, show it as a dropdown below the header */
#compact-header .navbar-collapse {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 1099;
  /* ensure it's hidden by default (Bootstrap toggles the 'show' class) */
  display: none;
}
@media (max-width: 576px) and (max-width: 767px) {
  #compact-header .navbar-collapse {
    position: fixed;
    top: 60px;
    width: 100%;
    padding: 20px;
  }
}

/* when bootstrap adds .show, display it */
#compact-header .navbar-collapse.show {
  display: block;
}

/* make sure main content doesn't hide under the sticky header when shown */
body.compact-header-visible {
  padding-top: 64px;
}

/* small responsive tweaks */
@media (max-width: 576px) {
  #compact-header {
    padding: 0 12px;
  }
  #compact-header .logo img {
    height: 30px;
  }
}
/* On desktop (md and up) show the compact header nav by default */
@media (min-width: 768px) {
  #compact-header .navbar-collapse {
    display: flex !important;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    background: transparent;
    box-shadow: none;
    flex-basis: auto;
    align-items: center;
  }
  /* make sure dropdowns still work visually */
  #compact-header .navbar-nav {
    align-items: center;
  }
}
/* Sticky Header */
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: #333;
}

header.sticky .logo {
  font-size: 20px;
  color: #333;
}

header.sticky nav a {
  color: #333;
  font-size: 16px;
  margin-left: 15px;
}

/* Layout */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

nav a {
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }
}
.menu-toggle {
  display: none;
}

/* Demo background */
.hero {
  height: 600px;
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-right: 20px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 27px;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a i {
  font-size: 16px;
}
.social-icons a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Button */
.btnPrimary {
  background: linear-gradient(135deg, #03529D, #B22430) !important;
  color: var(--white-color) !important;
  margin: 0px 10px;
}

/* Carousel Container */
.my-carousel {
  width: 100%;
  height: 100vh;
  /* Full height */
}

/* Each Slide */
.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Overlay content */
.slide-content {
  position: absolute;
  left: 10%;
  bottom: 20%;
  color: #fff;
  max-width: 40%;
  z-index: 2;
}

.slide-content h2 {
  font-size: 3rem;
  margin: 0 0 1rem;
}

.slide-content p {
  font-size: 1.2rem;
  margin: 0;
}

/* Overlay gradient */
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Pagination Dots */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #007bff;
  opacity: 1;
}

.banner-style-one {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.banner-style-one .banner-angle-shape .shape-item {
  position: absolute;
  right: -300px;
  bottom: -400px;
  height: 0;
  width: 600px;
  background: linear-gradient(-45deg, #5410ba 45%, var(--color-primary) 100%);
  z-index: 1;
  transform: rotate(35deg);
  opacity: 0;
  transition: all 1000ms ease;
  box-shadow: 0px 0px 10px #232931;
  transition-delay: 800ms;
}

#aboutcompany {
  overflow: hidden;
  height: 90vh;
  background-image: url(../images/index-aboutus.png);
  background-repeat: no-repeat;
  background-size: 37% auto;
  opacity: 1;
  background-position: top left;
  padding: 30px 0px;
}
#aboutcompany .titleHeader {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  background: linear-gradient(to right, var(--color-primary), var(--secondary-800), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 220% 150%;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-left: 40px;
  font-size: var(--font-size-24);
}
#aboutcompany .titleHeader::before {
  content: "→";
  /* Unicode for → */
  margin-right: 8px;
  font-size: 1.2em;
  color: var(--primary-950);
}
#aboutcompany p {
  font-size: var(--font-size-16);
}
#aboutcompany .aboutUs-card:last-child {
  margin-top: 50px;
}
#aboutcompany .aboutUs-card .aboutUs-item {
  border: 1px solid #e7e7e7;
  border-radius: 30px;
  transition: all 0.35s ease-in-out;
  background: var(--white-color);
}
@media (max-width: 576px) and (max-width: 767px) {
  #aboutcompany .aboutUs-card .aboutUs-item {
    width: 50%;
  }
}
#aboutcompany .aboutUs-card .aboutUs-item:first-child {
  background: #f9f9f9;
}
#aboutcompany .aboutUs-card .aboutUs-item img,
#aboutcompany .aboutUs-card .aboutUs-item svg {
  height: 100%;
  border-radius: 30px;
  width: 100%;
}
#aboutcompany .aboutUs-card .aboutUs-item span {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 3px;
}
#aboutcompany .aboutUs-card h4 {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 576px) and (max-width: 767px) {
  #aboutcompany {
    height: auto;
    background-size: 100% auto;
    background-position: top right;
    padding: 30px 0px;
    margin-top: 88px;
  }
}

#chooseUs {
  overflow: hidden;
  height: 90vh;
  background-image: url(../images/index-whyChoose.png);
  background-repeat: no-repeat;
  background-size: 50% auto;
  opacity: 1;
  background-position: top right;
  padding: 30px 0px;
}
#chooseUs .titleHeader {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  background: linear-gradient(to right, var(--color-primary), var(--secondary-800), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 220% 150%;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-left: 40px;
  font-size: var(--font-size-24);
  margin-top: 3rem !important;
}
#chooseUs .titleHeader::before {
  content: "→";
  /* Unicode for → */
  margin-right: 8px;
  font-size: 1.2em;
  color: var(--primary-950);
}
@media (max-width: 576px) and (max-width: 767px) {
  #chooseUs .titleHeader {
    font-size: var(--font-size-30);
    margin-top: 1rem !important;
  }
}
#chooseUs p {
  font-size: var(--font-size-30);
  line-height: 1.1;
}
@media (max-width: 576px) and (max-width: 767px) {
  #chooseUs p {
    font-size: var(--font-size-20);
  }
}
#chooseUs .short-feature-list {
  display: flex;
  /* margin: 0 -15px; */
  list-style: none;
  padding-left: 0;
  flex-direction: column;
  flex-wrap: wrap;
}
#chooseUs .short-feature-list li {
  padding: 0 15px;
  flex: 1;
  margin-top: 20px;
  position: relative;
}
#chooseUs .short-feature-list li h4 {
  padding-left: 40px;
  position: relative;
  z-index: 1;
}
#chooseUs .short-feature-list li h4::after ::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 12px;
  border-right: 2px solid green;
  border-bottom: 2px solid green;
  transform: rotate(45deg);
  margin-right: 6px;
}
#chooseUs .short-feature-list li p {
  font-size: var(--font-size-15) !important;
  list-style: 1.2 !important;
}
#chooseUs .chooseUs-card:first-child {
  margin-top: 50px;
}
#chooseUs .chooseUs-card .chooseUs-item {
  border: 1px solid #e7e7e7;
  padding: 50px;
  border-radius: 30px;
  transition: all 0.35s ease-in-out;
  background: var(--white-color);
}
#chooseUs .chooseUs-card .chooseUs-item:first-child {
  background: #f9f9f9;
}
#chooseUs .chooseUs-card .chooseUs-item img,
#chooseUs .chooseUs-card .chooseUs-item svg {
  height: 100px;
  margin-bottom: 20px;
  color: var(--primary-700);
  fill: var(--primary-700);
}
#chooseUs .chooseUs-card .chooseUs-item span {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 3px;
}
@media (max-width: 576px) and (max-width: 767px) {
  #chooseUs .chooseUs-card .chooseUs-item {
    padding: 20px;
    margin: 10px;
  }
}
#chooseUs .chooseUs-card .chooseUs-item a {
  font-size: var(--font-size-14);
  color: var(--color-primary);
}
#chooseUs .chooseUs-card h4 {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 576px) and (max-width: 767px) {
  #chooseUs {
    height: auto;
    background-size: 150% auto;
    background-position: top right;
  }
}

.short-feature-list {
  display: flex;
  /* margin: 0 -15px; */
  list-style: none;
  padding-left: 0;
  flex-wrap: wrap;
}
.short-feature-list li {
  padding: 0 15px;
  flex: 1;
  margin-top: 30px;
  position: relative;
}
.short-feature-list li h4 {
  padding-left: 40px;
  position: relative;
  z-index: 1;
}
.short-feature-list li h4::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  /* Unicode for checkmark (✓) */
  display: inline-block;
  height: 25px;
  width: 25px;
  line-height: 25px;
  text-align: center;
  background: linear-gradient(to right, var(--color-primary), var(--secondary-500), var(--color-primary));
  color: var(--white-color);
  font-size: 18px;
  border-radius: 50%;
  background-size: 200% 150%;
}
.short-feature-list li p {
  font-size: var(--font-size-15) !important;
  list-style: 1.2 !important;
}

#indexServices {
  background-color: #E7EDF8;
  padding: 20px;
  background-image: url(../images/index-services-bg.png);
  background-repeat: no-repeat;
  opacity: 1;
  background-position: top left;
  background-size: auto, cover;
}
#indexServices .headerTitle {
  margin-bottom: 20px;
  width: 100%;
}
#indexServices .headerTitle .titleHeader {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  background: linear-gradient(to right, var(--color-primary), var(--secondary-800), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 180% 150%;
  position: relative;
  z-index: 1;
  font-size: var(--font-size-30);
  padding-bottom: 10px;
}
#indexServices .headerTitle .titleHeader::before {
  content: "→";
  /* Unicode for → */
  margin-right: 8px;
  font-size: 1.2em;
  color: var(--primary-950);
}
#indexServices .headerTitle p {
  font-size: var(--font-size-30);
  line-height: 0.7;
  margin-bottom: 20px;
}
@media (max-width: 576px) and (max-width: 767px) {
  #indexServices .headerTitle p {
    font-size: var(--font-size-20);
    line-height: 1;
  }
}
#indexServices .container-fill {
  padding: 30px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 10px;
  border: 0.5px solid var(--neutral-200);
}
#indexServices .container-fill:hover {
  box-shadow: 0 0 10px var(--primary-200);
  background-color: var(--primary-200);
  border: 1px solid var(--primary-900);
}
#indexServices .container-fill:hover .iconsServices img,
#indexServices .container-fill:hover .iconsServices svg {
  color: var(--primary-900);
  margin-bottom: 20px;
}
#indexServices .container-fill:hover .bottom h4 {
  font-weight: 700;
  margin: 0;
  color: var(--primary-950);
}
#indexServices .container-fill:hover .bottom > a {
  opacity: 1;
  padding-right: 0;
}
#indexServices .container-fill .iconsServices img,
#indexServices .container-fill .iconsServices svg {
  margin-bottom: 20px;
}
#indexServices .container-fill .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--primary-950);
  margin-top: 30px;
  padding-top: 15px;
}
#indexServices .container-fill .bottom h4 {
  font-weight: 700;
  margin: 0;
  font-size: var(--font-size-18);
}
#indexServices .container-fill .bottom a {
  opacity: 0;
  padding-right: 15px;
}
#indexServices .container-fill-Service {
  padding: 30px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 10px;
  border: 0.5px solid var(--neutral-200);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
#indexServices .container-fill-Service:hover {
  box-shadow: 0 0 10px var(--primary-200);
  background-color: var(--primary-200);
  border: 1px solid var(--primary-900);
}
#indexServices .container-fill-Service:hover .iconsServicesMain img,
#indexServices .container-fill-Service:hover .iconsServicesMain svg {
  color: var(--primary-900);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
#indexServices .container-fill-Service:hover .iconsServicesMain img:hover,
#indexServices .container-fill-Service:hover .iconsServicesMain svg:hover {
  transform: scale(1.05);
}
#indexServices .container-fill-Service .iconsServicesMain {
  display: flex;
  align-items: center;
}
#indexServices .container-fill-Service .iconsServicesMain img,
#indexServices .container-fill-Service .iconsServicesMain svg {
  width: 300px;
  height: 250px;
  color: var(--primary-900);
  border: 2px solid var(--secondary-950);
  border-radius: 20px;
  box-shadow: 10px 0 30px var(--primary-800);
}
#indexServices .container-fill-Service .contentServicesMain {
  display: flex;
  flex-direction: column;
  padding: 0px 20px;
}
#indexServices .container-fill-Service .contentServicesMain h4 {
  font-size: var(--font-size-50);
  margin-left: 20px;
  color: var(--primary-800);
  transition: all 0.3s ease;
}
@media (max-width: 576px) and (max-width: 767px) {
  #indexServices .container-fill-Service .contentServicesMain h4 {
    font-size: var(--font-size-30);
    margin-left: 0px;
  }
}
#indexServices .container-fill-Service .contentServicesMain h4:hover {
  transform: scale(1.04);
}
#indexServices .container-fill-Service .contentServicesMain p {
  margin-left: 20px;
}
@media (max-width: 576px) and (max-width: 767px) {
  #indexServices .container-fill-Service .contentServicesMain {
    width: 100%;
  }
}
@media (max-width: 576px) and (max-width: 767px) {
  #indexServices .container-fill-Service {
    flex-direction: column;
  }
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #5065c0;
  /* your primary color */
  background: var(--bg-gradient);
  /* your primary color */
  color: #fff;
  border: none;
  padding: 5px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: none;
  /* hidden by default */
  transition: opacity 0.3s ease;
  z-index: 999;
}

.scroll-top:hover {
  background: var(--bg-gradientHover);
}

.bg-gradientInfo {
  width: 50vw;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(3, 82, 157, 0.8), rgba(178, 36, 48, 0.8)), url("../images/index-info-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 10px;
}
@media (max-width: 576px) and (max-width: 767px) {
  .bg-gradientInfo {
    width: 100%;
    height: auto;
  }
}

.bg-gradientInfo01 {
  width: 50vw;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%), url("../images/customer-experience.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 10px;
}
@media (max-width: 576px) and (max-width: 767px) {
  .bg-gradientInfo01 {
    width: 100%;
    height: auto;
  }
}

#indexInfo {
  padding: 25px;
  background-color: var(--neutral-50);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#indexInfo .infoRight {
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
}
#indexInfo .infoRight h5 {
  font-size: var(--font-size-50);
  color: var(--white-color);
  margin-bottom: 10px;
}
#indexInfo .infoRight span {
  font-size: var(--font-size-40);
  color: var(--white-color);
  margin-bottom: 10px;
}
#indexInfo .infoRight p {
  font-size: var(--font-size-14);
  color: var(--white-color);
  line-height: 1.4;
}
#indexInfo .infoLeft {
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
}
#indexInfo .infoLeft h5 {
  font-size: var(--font-size-50);
  color: var(--white-color);
  margin-bottom: 10px;
}
#indexInfo .infoLeft span {
  font-size: var(--font-size-40);
  color: var(--white-color);
  margin-bottom: 10px;
}
#indexInfo .infoLeft p {
  font-size: var(--font-size-14);
  color: var(--white-color);
  line-height: 1.4;
}
@media (max-width: 576px) and (max-width: 767px) {
  #indexInfo {
    flex-direction: column;
  }
}

#ourSolutions {
  background: radial-gradient(circle at 10% 80%, #0B4AB1 0%, #091D3E 60%, #091D3E 100%);
  color: var(--white-color);
  min-height: 45vh;
  padding: 50px 20px;
}
#ourSolutions .headerTitle {
  margin-bottom: 20px;
  width: 100%;
}
#ourSolutions .headerTitle .titleHeader {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  background: linear-gradient(to right, var(--color-primary), var(--white-color), var(--white-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 180% 150%;
  position: relative;
  z-index: 1;
  font-size: var(--font-size-30);
  padding-bottom: 10px;
  text-align: left;
}
#ourSolutions .headerTitle .titleHeader::before {
  content: "→";
  /* Unicode for → */
  margin-right: 8px;
  font-size: 1.2em;
  color: var(--primary-950);
}
#ourSolutions .headerTitle p {
  font-size: var(--font-size-40);
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
}
#ourSolutions .indexSolContents {
  padding: 10px 0px;
  display: flex;
  flex-direction: column;
}
#ourSolutions .indexSolContents h4 {
  font-size: var(--font-size-20);
  color: var(--white-color);
  margin: 10px 0;
  font-weight: 700;
}
#ourSolutions .indexSolContents h4 span {
  font-size: var(--font-size-16);
}
#ourSolutions .indexSolContents span {
  font-size: var(--font-size-14);
  color: var(--white-color);
  margin-bottom: 20px;
}
#ourSolutions .indexSolContents a {
  color: var(--white-color);
}
#ourSolutions .indexSolContents a:hover {
  color: var(--bg-gradient);
}
@media (max-width: 576px) and (max-width: 767px) {
  #ourSolutions {
    height: auto;
  }
}

#footer {
  background-image: url(../images/footerBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  background-color: var(--primary-950);
  height: 60vh;
  padding: 50px;
  color: white;
}
#footer div {
  display: flex;
}
#footer div .footerlogo {
  width: 40%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
#footer div .footerlogo img.footer-logo {
  width: 70%;
}
@media (max-width: 576px) and (max-width: 767px) {
  #footer div .footerlogo {
    width: 100%;
    margin: 10px;
  }
}
#footer div .footerlinks {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 30%;
}
#footer div .footerlinks h6 {
  font-size: var(--font-size-18);
  border-bottom: 2px solid var(--white-color);
  line-height: 1.5;
}
#footer div .footerlinks ul.footerList {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
#footer div .footerlinks ul.footerList li {
  padding: 2px 5px;
  font-size: var(--font-size-14);
  display: flex;
  transition: all 0.3s ease;
}
#footer div .footerlinks ul.footerList li a {
  color: var(--white-color);
}
#footer div .footerlinks ul.footerList li a::before {
  content: "→";
  /* Unicode for → */
  margin-right: 8px;
  font-size: 1.2em;
  color: var(--white-color);
}
#footer div .footerlinks ul.footerList li:hover {
  transform: scale(1.08);
}
#footer div .footerlinks ul.footerList li:hover::after {
  animation: shine 0.75s;
}
#footer div .footerlinks ul.footerList li .icons {
  margin-right: 20px;
}
@media (max-width: 576px) and (max-width: 767px) {
  #footer div .footerlinks ul.footerList li {
    font-size: var(--font-size-16);
  }
}
@media (max-width: 576px) and (max-width: 767px) {
  #footer div .footerlinks {
    width: 100%;
    margin: 10px;
  }
}
#footer div .footerContact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 30%;
}
#footer div .footerContact h6 {
  font-size: var(--font-size-18);
  border-bottom: 2px solid var(--white-color);
  line-height: 1.5;
}
#footer div .footerContact ul.footerContactList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
#footer div .footerContact ul.footerContactList li {
  padding: 2px 5px;
  font-size: var(--font-size-13);
  display: flex;
  align-items: baseline;
  transition: all 0.3s ease;
}
#footer div .footerContact ul.footerContactList li .icons {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer div .footerContact ul.footerContactList li .iconContents {
  display: flex;
  flex-direction: column;
}
#footer div .footerContact ul.footerContactList li .iconContents h5 {
  margin: 0 0 4px 0;
  font-size: var(--font-size-16);
  font-weight: 600;
}
#footer div .footerContact ul.footerContactList li .iconContents p {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: var(--font-size-13);
  line-height: 1.4;
}
@media (max-width: 767px) {
  #footer div .footerContact ul.footerContactList li {
    font-size: var(--font-size-16);
  }
  #footer div .footerContact ul.footerContactList li .icons {
    margin-right: 10px;
  }
  #footer div .footerContact ul.footerContactList li .iconContents h5 {
    font-size: var(--font-size-14);
  }
}
@media (max-width: 576px) and (max-width: 767px) {
  #footer div .footerContact {
    width: 100%;
    margin: 10px;
  }
}
@media (max-width: 576px) and (max-width: 767px) {
  #footer div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
#footer .copyright {
  display: flex;
  align-items: center;
  padding: 0px 20px 0px;
  font-size: var(--font-size-12);
}
@media (max-width: 576px) and (max-width: 767px) {
  #footer .copyright {
    font-size: var(--font-size-15);
  }
}
@media (max-width: 576px) and (max-width: 767px) {
  #footer {
    height: auto;
    padding: 10px;
  }
}

#contactAds {
  background-image: url(../images/contactus-ads.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  color: var(--white-color);
  height: 193px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contactAds div {
  padding: 20px;
}
#contactAds div h4 {
  font-size: var(--font-size-20);
  transition: all 0.3s ease;
}
#contactAds div h4:hover {
  transform: scale(1.04);
}
@media (max-width: 576px) and (max-width: 767px) {
  #contactAds div {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 576px) and (max-width: 767px) {
  #contactAds {
    height: auto;
  }
}

.breadcrumb-area {
  padding: 150px 0;
  word-break: break-word;
}
.breadcrumb-area h1 {
  font-size: var(--font-size-50);
}

.shadow.dark {
  position: relative;
  z-index: 1;
}

.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-center {
  text-align: center !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.breadcrumb-area .breadcrumb {
  background: transparent none repeat scroll 0 0;
  border: none;
  display: inline-block;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 0;
  text-align: center;
}
.breadcrumb-area .breadcrumb a {
  font-size: var(--font-size-16);
  color: var(--white-color);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}
@media (max-width: 576px) and (max-width: 767px) {
  .breadcrumb nav {
    display: block;
  }
}

.productsDetails .container-fill {
  padding: 30px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 10px;
  border: 0.5px solid var(--primary-600);
  display: flex;
  align-items: center;
  background-color: linear-gradient(273.55deg, rgba(66, 81, 111, 0.25) 2.92%, rgba(25, 29, 37, 0.25) 97.08%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
@media (max-width: 576px) and (max-width: 767px) {
  .productsDetails .container-fill {
    flex-direction: column;
  }
}
.productsDetails .container-fill:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: linear-gradient(273.55deg, rgba(66, 81, 111, 0.25) 2.92%, rgba(25, 29, 37, 0.25) 97.08%);
  border: 1px solid;
  border-image: linear-gradient(to right, #d58448 0%, #009FC4 100%) 1;
  -moz-border-image: linear-gradient(to right, #d58448 0%, #009FC4 100%) 1;
  -ms-border-image: linear-gradient(to right, #d58448 0%, #009FC4 100%) 1;
  -o-border-image: linear-gradient(to right, #d58448 0%, #009FC4 100%) 1;
  border-radius: 15px;
  transition: var(--l-transition--default);
}
.productsDetails .container-fill:hover .iconsServices img,
.productsDetails .container-fill:hover .iconsServices svg {
  color: var(--primary-900);
  margin-bottom: 20px;
}
.productsDetails .container-fill:hover .bottom h4 {
  font-weight: 700;
  margin: 0;
  color: var(--primary-950);
}
.productsDetails .container-fill:hover .bottom > a {
  opacity: 1;
  padding-right: 0;
}
.productsDetails .container-fill .iconsProducts {
  margin-right: 40px;
}
.productsDetails .container-fill .iconsProducts .svgConnect {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #2B4C98, #B22430);
  mask: url("../images/wiseAi.svg") no-repeat center;
  -webkit-mask: url("../images/wiseAi.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  border: 1px solid red;
}
.productsDetails .container-fill .iconsProducts img,
.productsDetails .container-fill .iconsProducts svg,
.productsDetails .container-fill .iconsProducts i {
  color: var(--primary-900);
  margin: 40px 20px;
  border-radius: 20px;
  border: 1px solid #007bff;
  width: 300px;
  transition: all 0.3s ease;
}
.productsDetails .container-fill .iconsProducts img:hover,
.productsDetails .container-fill .iconsProducts svg:hover,
.productsDetails .container-fill .iconsProducts i:hover {
  transform: scale(1.04);
}
.productsDetails .container-fill .contentProducts h4 {
  font-size: var(--font-size-30);
  color: var(--secondary-400);
}
.productsDetails .container-fill .contentProducts p strong {
  color: var(--secondary-400);
}

#contactUsMain .contactUsCard01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 37px;
  background: linear-gradient(rgba(3, 82, 157, 0.8), rgba(178, 36, 48, 0.8)), url(../images/index-info-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 10px;
  margin: 20px 0px;
  height: 70vh;
}
#contactUsMain .contactUsCard01 i {
  font-size: var(--font-size-50);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-900);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  transition: all 0.3s ease;
}
#contactUsMain .contactUsCard01 i:hover {
  transform: scale(1.04);
}
#contactUsMain .contactUsCard01 h5 {
  font-size: var(--font-size-20);
  margin-bottom: 20px;
}
#contactUsMain .contactUsCard01 p {
  font-size: var(--font-size-14);
  line-height: 1.1;
  margin-bottom: 30px;
}
#contactUsMain .contactUsCard01 h4 {
  font-size: var(--font-size-20);
}
@media (max-width: 576px) and (max-width: 767px) {
  #contactUsMain .contactUsCard01 {
    padding: 30px 20px;
    margin: 10px 0px;
    height: 40vh;
  }
}
#contactUsMain .contactUsCard02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 37px;
  background: linear-gradient(180deg, #7A85C1 0%, #1A2A80 100%), url(../images/index-info-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 10px;
  margin: 20px 0px;
  height: 70vh;
}
@media (max-width: 576px) and (max-width: 767px) {
  #contactUsMain .contactUsCard02 {
    padding: 30px 20px;
    margin: 10px 0px;
    height: 40vh;
  }
}
#contactUsMain .contactUsCard02 i {
  font-size: var(--font-size-50);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: #3B38A0;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  transition: all 0.3s ease;
}
#contactUsMain .contactUsCard02 i:hover {
  transform: scale(1.04);
}
#contactUsMain .contactUsCard02 h5 {
  font-size: var(--font-size-20);
  margin-bottom: 20px;
}
#contactUsMain .contactUsCard02 p {
  font-size: var(--font-size-14);
  line-height: 1.1;
  margin-bottom: 30px;
}
#contactUsMain .contactUsCard02 h4 {
  font-size: var(--font-size-20);
}
#contactUsMain .contactUsCard03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 37px;
  background: linear-gradient(180deg, #FCEF91 0%, #FB9E3A 100%), url(../images/index-info-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 10px;
  margin: 20px 0px;
  height: 70vh;
}
@media (max-width: 576px) and (max-width: 767px) {
  #contactUsMain .contactUsCard03 {
    padding: 30px 20px;
    margin: 10px 0px;
    height: 40vh;
  }
}
#contactUsMain .contactUsCard03 i {
  font-size: var(--font-size-50);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: #E6521F;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
}
#contactUsMain .contactUsCard03 h5 {
  font-size: var(--font-size-20);
  margin-bottom: 20px;
}
#contactUsMain .contactUsCard03 p {
  font-size: var(--font-size-14);
  line-height: 1.1;
  margin-bottom: 30px;
}
#contactUsMain .contactUsCard03 h4 {
  font-size: var(--font-size-20);
}

#contactMap {
  background-color: var(--primary-200);
  position: relative;
}
#contactMap .backImages {
  overflow: hidden;
  height: 80vh;
  background-image: url(../images/index-whyChoose.png);
  background-repeat: no-repeat;
  background-size: 150% auto;
  opacity: 1;
  background-position: top right;
  padding: 10px 0px;
}
#contactMap .backImages .contactForm {
  background-color: var(--white-color);
  border-radius: 6px;
  padding: 20px;
  z-index: 1000;
  width: 38%;
  position: absolute;
}
@media (max-width: 576px) and (max-width: 767px) {
  #contactMap .backImages .contactForm {
    top: 20%;
    left: 15%;
    width: 75%;
  }
}
#contactMap .backImages .contactForm .titleHeader {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  background: linear-gradient(to right, var(--color-primary), var(--secondary-800), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 220% 150%;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-left: 40px;
  font-size: var(--font-size-24);
}
#contactMap .backImages .contactForm .titleHeader::before {
  content: "→";
  /* Unicode for → */
  margin-right: 8px;
  font-size: 1.2em;
  color: var(--primary-950);
}
#contactMap .google-maps {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  border-right: 2px solid var(--white);
}
@media (max-width: 576px) and (max-width: 767px) {
  #contactMap .google-maps {
    width: 100%;
  }
}
#contactMap .google-maps iframe {
  border: 0;
  width: 100%;
  height: 80vh;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: var(--font-size-16) !important;
}/*# sourceMappingURL=shorewiseMain.css.map */


.widget-header-header-9{
         display: none;
    }

#73419053-1186-44c0-948d-11d982a8b886, #71a5b96d-5d09-4403-9988-2116efa4263f{
    display: none;
    margin-top: -120px;
    margin-bottom: -120px;
}
#mainNew{
    height: 100%;
}

.x .c1-i {
    padding-bottom: 0px;
}
.x .c1-h {
    padding-top: 0px;
}

.x .c1-a > div {
    margin-left: 0px;
}
.x .c1-9 > div {
    margin-bottom: 0px;
}
.x .c1-8 > div {
    margin-right: 0px;
}
.x .c1-7 > div {
    margin-top: -55px;
}

.x .c1-6 > div {
    overflow: hidden;
}
.x .c1-5 > div {
    position: relative;
}

.x *, .x :after, .x :before {
    box-sizing: content-box !important;
}

.page-inner {
    background-color: rgb(255, 255, 255);
    min-height: 100vh;
    height: 100vh !important;
}

@media (min-width: 1280px) {
    .x .c1-z {
        width: 100%;
    }
}

.x .c1-v {
    padding-right: 0px !important;
}
.x .c1-u {
    padding-left: 0px !important;
}

#iframe-01{
  height: 1300px !important;
}