/* Custom CSS for Services Mega-Dropdown and Case Study Dropdown */

/* On Desktop: Show dropdowns on hover and style them */
@media (min-width: 992px) {
  .navbar-nav li.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .navbar-nav li.dropdown > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Force hide dropdown menu when clicked */
  .navbar-nav li.dropdown > .dropdown-menu.force-closed,
  .navbar-nav li.dropdown:hover > .dropdown-menu.force-closed {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
  }
}

/* Services Mega Dropdown Styling - 3-COLUMNS GRID */
.mega-dropdown-menu {
  width: 880px !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px) !important;
  background: rgba(15, 35, 56, 0.96) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(73, 207, 206, 0.25) !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
  padding: 16px 24px !important;
}

@media (max-width: 991px) {
  .mega-dropdown-menu {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    background: #1c4670 !important;
    box-shadow: none !important;
    padding: 12px !important;
  }
}

.mega-dropdown-cols {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 991px) {
  .mega-dropdown-cols {
    flex-direction: column;
    gap: 15px;
  }
}

.mega-dropdown-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mega-dropdown-section {
  margin-bottom: 20px;
}
.mega-dropdown-section:last-child {
  margin-bottom: 0;
}

.mega-dropdown-header {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

.mega-dropdown-header a.header-link {
  color: #ff8533 !important; /* Vibrant orange matching the shared image */
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  display: block;
  border-bottom: 1.5px solid rgba(255, 133, 51, 0.25);
  padding-bottom: 4px;
  transition: all 0.2s ease;
}

.mega-dropdown-header a.header-link:hover {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4);
}

.mega-dropdown-links-vertical {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-dropdown-links-vertical .dropdown-item {
  color: #ffffff !important;
  background: transparent !important;
  font-size: 13px;
  padding: 4px 0 !important;
  transition: all 0.2s ease;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08) !important;
  text-align: left;
  display: block;
  width: 100%;
}

.mega-dropdown-links-vertical .dropdown-item:last-child {
  border-bottom: none !important;
}

.mega-dropdown-links-vertical .dropdown-item:hover {
  color: #49cfce !important;
  padding-left: 6px !important;
  transform: translateX(2px);
  background: transparent !important;
}

/* Case Study Dropdown Styling - 2-COLUMN GRID */
.case-study-menu {
  width: 500px !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px) !important;
  background: rgba(15, 35, 56, 0.96) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(73, 207, 206, 0.25) !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
  padding: 12px 18px !important;
}

@media (max-width: 991px) {
  .case-study-menu {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    background: #1c4670 !important;
    box-shadow: none !important;
    padding: 12px !important;
  }
}

.case-study-cols {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .case-study-cols {
    flex-direction: column;
    gap: 4px;
  }
}

.case-study-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-study-col .dropdown-item {
  color: #ffffff !important;
  background: transparent !important;
  font-size: 13px;
  padding: 6px 10px !important;
  border-radius: 4px;
  border: 1px solid transparent !important;
  transition: all 0.2s ease-in-out;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06) !important;
}
.case-study-col .dropdown-item:last-child {
  border-bottom: none !important;
}
.case-study-col .dropdown-item i {
  color: #49cfce;
  font-size: 12px;
  width: 14px;
  text-align: center;
}
.case-study-col .dropdown-item:hover {
  background: rgba(73, 207, 206, 0.12) !important;
  color: #49cfce !important;
  padding-left: 14px !important;
}
.case-study-col .dropdown-item:hover i {
  color: #ffffff;
}

/* Global Case Banner & Badges (Matching Case Study page) */
.case-banner {
  background: linear-gradient(135deg, #0f2b48 0%, #1c4670 50%, #2b789e 100%);
  padding: 120px 0 60px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.case-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #49cfce;
}
.case-badge {
  background: rgba(73, 207, 206, 0.2);
  color: #49cfce;
  border: 1px solid rgba(73, 207, 206, 0.4);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}
.case-banner h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: capitalize;
}

/* Sticky Side Card & Sidebar Layouts */
.sidebar,
.sticky-side-card {
  position: sticky;
  top: 100px;
}
.sidebar .sticky-side-card {
  position: static !important;
  box-shadow: none !important;
}
.sticky-side-card {
  background: linear-gradient(135deg, #1c4670 0%, #0f2b48 100%) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 30px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}
.sticky-side-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #49cfce !important;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(73, 207, 206, 0.2);
  padding-bottom: 10px;
}

/* Sticky Card Sidebar Tabs overrides (Vibrant layout) */
.sticky-side-card ul.case_list {
  list-style: none !important;
  padding-left: 0 !important;
}
.sticky-side-card ul.case_list li {
  margin-bottom: 8px !important;
}
.sticky-side-card ul.case_list li a {
  display: block;
  padding: 12px 20px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  position: relative;
  box-shadow: none !important;
}
.sticky-side-card ul.case_list li a:before {
  display: none !important;
}
.sticky-side-card ul.case_list li a:after {
  content: "\f054";
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 11px;
  opacity: 0.5;
  transition: transform 0.2s ease;
  display: block !important;
}
.sticky-side-card ul.case_list li a:hover {
  background: rgba(73, 207, 206, 0.15) !important;
  color: #49cfce !important;
  border-color: rgba(73, 207, 206, 0.4) !important;
  transform: translateX(4px);
}
.sticky-side-card ul.case_list li a:hover:after {
  transform: translateX(2px);
  opacity: 1;
}
.sticky-side-card ul.case_list li a.active {
  background: #49cfce !important;
  color: #1c4670 !important;
  border-color: #49cfce !important;
  box-shadow: 0 4px 15px rgba(73, 207, 206, 0.4) !important;
}
.sticky-side-card ul.case_list li a.active:after {
  opacity: 1;
  color: #1c4670;
  transform: translateX(2px);
}

/* Technology Pills (Matching Case Study page) */
.tech-pill {
  background: rgba(73, 207, 206, 0.08);
  color: #49cfce;
  border: 1px solid rgba(73, 207, 206, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin: 5px;
  transition: all 0.2s ease;
}
.tech-pill:hover {
  background: #49cfce;
  color: #1c4670;
  transform: scale(1.05);
}

/* Our Other Services Panel */
.more_indu {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(28, 70, 112, 0.06);
  border: 1px solid rgba(28, 70, 112, 0.06);
}
.more_indu h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #1c4670;
  border-bottom: 2px solid rgba(73, 207, 206, 0.15);
  padding-bottom: 8px;
}
.more_indu .list-group-item {
  border: none !important;
  padding: 8px 0 !important;
  background: transparent !important;
}
.more_indu .list-group-item a {
  color: #555555;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.more_indu .list-group-item a:before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 8px;
  color: #49cfce;
  font-weight: bold;
  transition: transform 0.2s ease;
}
.more_indu .list-group-item a:hover {
  color: #49cfce !important;
  padding-left: 6px;
}
.more_indu .list-group-item a:hover:before {
  transform: translateX(2px);
}

/* Content Container and Typography */
.mytab-content {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(28, 70, 112, 0.08);
  border: 1px solid rgba(28, 70, 112, 0.06) !important;
  overflow: hidden;
  padding: 30px !important;
}
.tab-pane {
  background: #ffffff;
}
.tab-pane h3.page_title_sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1c4670;
  border-bottom: 2px solid rgba(73, 207, 206, 0.15);
  padding-bottom: 12px;
  margin-top: 10px !important;
  margin-bottom: 25px !important;
  text-align: left !important;
}
.tab-pane p {
  font-size: 15px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 18px;
  text-align: justify;
}

/* List checkmarks customization */
ul.ist_list.case_list {
  list-style: none !important;
  padding-left: 0 !important;
}
ul.ist_list.case_list li {
  position: relative;
  padding-left: 30px !important;
  margin-bottom: 12px !important;
  font-size: 15px;
  line-height: 1.6;
  color: #4d4d4d;
}
ul.ist_list.case_list li:before {
  content: "\f058" !important; /* FontAwesome check-circle icon */
  font-family: FontAwesome !important;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: #49cfce !important;
  transition: color 0.2s ease;
}
ul.ist_list.case_list li:hover:before {
  color: #1c4670 !important;
}

/* Owl Carousel inside tab styling - Height constraint to prevent layout break */
.tab-slider {
  margin-top: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.tab-slider .item {
  height: 280px; /* Constrained image slide container */
  background: #fafafa;
}
.tab-slider .item img {
  border-radius: 8px;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover; /* Prevents distorting and controls scaling */
}

/* Service Details Section Background */
.service-details-section {
  background-color: #f8fafc !important; /* Nice modern clean off-white background */
}

/* Services Banner with background slider */
.services-banner {
  height: 280px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-banner .banner-slider {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.services-banner .banner-slide-item {
  height: 280px !important;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 43, 72, 0.85) 0%, rgba(28, 70, 112, 0.8) 100%);
  z-index: 2;
}
.services-banner .container {
  z-index: 3;
}

/* Case Study Content Box Styling */
.case-content-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 30px;
}
.case-section-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #1c4670;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.case-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #49cfce;
}

/* Statistics Card Styling */
.stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(73, 207, 206, 0.5);
}
.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #49cfce;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 5px;
  line-height: 1.25;
}
.stat-label {
  font-size: 14px;
  color: #555555;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .stat-number {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .stat-number {
    font-size: 20px;
  }
  .stat-card {
    padding: 15px 10px;
    min-height: 110px;
  }
  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .stat-number {
    font-size: 26px;
  }
  .stat-card {
    padding: 20px 15px;
    min-height: 120px;
  }
  .stat-label {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .stat-number {
    font-size: 28px;
  }
}

/* Results Grid and Cards */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  .case-banner h1 {
    font-size: 28px;
  }
}
.results-card {
  background: #f8f9fa;
  border-left: 4px solid #49cfce;
  padding: 20px;
  border-radius: 0 8px 8px 0;
}
.results-card h4 {
  font-weight: 700;
  font-size: 16px;
  color: #1c4670;
  margin-bottom: 8px;
}
.results-card p {
  font-size: 14px;
  margin-bottom: 0;
  color: #666666;
}

/* Key Statistics Side List */
.sticky-side-card ul {
  list-style: none;
  padding-left: 0;
}
.sticky-side-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}
.sticky-side-card ul li:before {
  content: "\f058";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 2px;
  color: #49cfce;
  font-size: 16px;
}

/* Mobile sliding sidebar menu styles */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px; /* Hide to the right */
  width: 300px;
  height: 100vh;
  background: rgba(15, 35, 56, 0.98);
  backdrop-filter: blur(10px);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: #ffffff;
}
.mobile-sidebar.open {
  right: 0;
}
.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.sidebar-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.sidebar-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sidebar-logo {
  height: 35px;
}
.sidebar-close {
  background: transparent;
  border: none;
  color: #49cfce;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.sidebar-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}
.sidebar-nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.sidebar-nav > li {
  margin-bottom: 15px;
}
.sidebar-nav > li > a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s ease;
}
.sidebar-nav > li > a:hover {
  color: #49cfce;
}
.sidebar-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-submenu {
  list-style: none;
  padding-left: 15px;
  margin-top: 8px;
  display: none; /* Collapsed by default */
  border-left: 2px solid rgba(73, 207, 206, 0.2);
}
.sidebar-submenu.open {
  display: block;
}
.sidebar-submenu li {
  margin-bottom: 8px;
}
.sidebar-submenu li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.sidebar-submenu li a:hover {
  color: #49cfce;
}
.sidebar-submenu li a i {
  color: #49cfce;
  font-size: 12px;
  width: 14px;
  text-align: center;
}
.submenu-header {
  font-size: 11px;
  color: #49cfce !important;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 5px;
}
.sidebar-social .social_list {
  list-style: none;
  padding-left: 0;
  gap: 15px;
  margin-bottom: 0;
}
.sidebar-social .social_list li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border-bottom: none !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition: all 0.2s ease;
}
.sidebar-social .social_list li a:hover {
  background: #49cfce;
  color: #1c4670 !important;
  border-bottom: none !important;
}

@media (min-width: 992px) {
  .mobile-sidebar,
  .sidebar-backdrop {
    display: none !important;
  }
}

/* Premium Breadcrumbs Styling */
.breadcrumb-nav {
  background-color: #f8f9fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.breadcrumb {
  background: transparent !important;
  padding: 12px 0 !important;
  font-size: 13.5px;
}
.breadcrumb-item a {
  color: #1c4670;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
  color: #49cfce;
}
.breadcrumb-item.active {
  color: #777777;
  font-weight: 500;
  max-width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: bottom;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105" !important; /* FontAwesome angle-right */
  font-family: FontAwesome !important;
  color: #bbbbbb;
  font-size: 13px;
  padding: 0 8px;
}

/* Mobile responsive layout for Sub Services tabs */
@media (max-width: 991px) {
  /* Hide Other Services list at the top on mobile */
  .sidebar .more_indu {
    display: none !important;
  }
  
  /* Reset sidebar stickiness and background styling on mobile */
  .sidebar {
    position: static !important;
    margin-bottom: 20px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  
  .sidebar .sticky-side-card {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    border: none !important;
  }
  
  .sidebar .sticky-side-card h3 {
    display: none !important; /* Hide Sub Services heading to save space */
  }
  
  /* Horizontal swipeable pills wrapper for mobile */
  .sidebar ul.case_list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 4px !important;
    margin-bottom: 20px !important;
    gap: 8px !important;
    list-style: none !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE 10+ */
    background: rgba(15, 35, 56, 0.03) !important;
    border-radius: 40px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
  }
  
  .sidebar ul.case_list::-webkit-scrollbar {
    display: none !important; /* Safari and Chrome */
  }
  
  .sidebar ul.case_list li {
    flex: 0 0 auto !important;
    margin-bottom: 0 !important;
  }
  
  .sidebar ul.case_list li a {
    display: block !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
    background: #ffffff !important;
    color: #1c4670 !important;
    border: 1px solid rgba(28, 70, 112, 0.15) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.2s ease !important;
  }
  
  .sidebar ul.case_list li a:after {
    display: none !important; /* Disable arrow indicator on mobile tabs */
  }
  
  .sidebar ul.case_list li a:hover {
    transform: none !important;
  }
  
    .sidebar ul.case_list li a.active {
    background: #1c4670 !important;
    color: #ffffff !important;
    border-color: #1c4670 !important;
    box-shadow: 0 4px 10px rgba(28, 70, 112, 0.25) !important;
  }
}

/* Static Page Background Banner Images */
.about-banner {
  background-image: url('../img/page_banner/about-us.png') !important;
  background-size: cover;
  background-position: center;
}
.contact-banner {
  background-image: url('../img/page_banner/Infotech-contact-us.png') !important;
  background-size: cover;
  background-position: center;
}
.privacy-banner {
  background-image: url('../img/page_banner/Data-privacy01.png') !important;
  background-size: cover;
  background-position: center;
}
.about-banner .banner-overlay,
.contact-banner .banner-overlay,
.privacy-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 43, 72, 0.7) 0%, rgba(28, 70, 112, 0.6) 100%) !important;
  z-index: 2;
}


