/*--------------------------
    Project Name: Chemlabs
    Version: 1.0
    Author: 7oorof
    Relase Date: November 2023
---------------------------*/
/*---------------------------
      Table of Contents
    -------------------------

    01- Global Styles
    02- Helper Classes
    03- Background & Colors
    04- Typography
    05- page title 
    06- Buttons
    07- Forms
    08- Tabs
    09- Icons
    10- Breadcrumb
    11- Pagination
    12- Lists
    13- Animations
    14- Alerts
    16- Carousel
    17- Preloader
    18- Header & Navbar 
    19- Accordions
    20- Banners
    21- Footer
    22- Call to Action
    23- Carousel 
    24- Slider
    26- Video
    27- Features
    28- Fancybox
    29- Team
    30- Testimonials
    31- Clients
    32- Blog
    33- Contact
    34- Pricing
    35- Sidebar
    36- About
    36- Services
    37- Gallery
    38- Shop
    39- Work Process

----------------------------*/
/*-------------------------- 
      Global Styles
---------------------------*/
:root {
  --font-size-base: 15px;
  --font-primary: "Lexend", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --color-primary: #21cdad;
  --color-secondary: #002678;
  --color-primary-rgb: 33, 205, 173;
  --color-secondary-rgb: 0, 38, 120;
  --color-white: #ffffff;
  --color-accent: #152f56;
  --color-dark: #222222;
  --color-light: #6d6fb3;
  --bs-gray: #828599;
  --bs-gray-dark: #222222;
  --color-gray-100: #f9f9f9;
  --color-gray-200: #e9e9f0;
  --color-gray-300: #dee2e6;
  --color-green-100: #d7f6f0;
  /* overide Bootstrap color theme */
  --bs-primary: #21cdad;
  --bs-secondary: #002678;
  --bs-success: #198754;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 33, 205, 173;
  --bs-secondary-rgb: 0, 38, 120;
  --bs-success-rgb: 25, 135, 84;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --color-white-rgb: 255, 255, 255;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-link-color: #21cdad;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: none;
  --bs-link-hover-color: #002678;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-highlight-bg: #fff3cd;
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
   --primary: #0b1c3d;
  --accent: #c9a24a;
  
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  color: var(--bs-gray);
  overflow-x: hidden;
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

section {
  position: relative;
  padding-top:50px;
  padding-bottom: 50px;
}

img {
  max-width: 100%;
}

/*-------------------------
     RESET Default Styles
 --------------------------*/
* {
  outline: none;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
}

select {
  background-color: transparent;
}

button,
button:focus,
.form-control,
.form-control:focus {
  outline: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea {
  resize: none;
}

.svg-pathes {
  position: absolute;
}

@media (max-width: 991px) {
  html,
  body {
    overflow-x: hidden;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1400px) {
  .row {
    --bs-gutter-x: 40px;
  }
  .container {
    max-width: 1320px;
  }
}
/*----------------------------
      Helper Classes
----------------------------*/
.sticky-top {
  z-index: 500;
}


.border-top {
  border-top: 1px solid #e7ebef !important;
}

.border-bottom {
  border-bottom: 1px solid #e7ebef !important;
}

/*  margin Top */
.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

/* Margin Bottom */
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

/* Margin Right */
.mr-0 {
  margin-right: 0 !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

/* Margin Left */
.ml-0 {
  margin-left: 0 !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}


/* padding Top */
.pt-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

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

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

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

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-170 {
  padding-top: 170px !important;
}

.pt-220 {
  padding-top: 220px !important;
}

/*  Padding Bottom */
.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-130 {
  padding-bottom: 130px !important;
}

.pb-140 {
  padding-bottom: 140px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pb-170 {
  padding-bottom: 170px !important;
}


.pb-220 {
  padding-bottom: 220px !important;
}

/* padding Right */
.pr-0 {
  padding-right: 0 !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

/* padding Left */
.pl-0 {
  padding-left: 0 !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

@media (max-width: 992px) {
  .order-3-md {
    order: 3;
  }
  .mt-30 {
    margin-top: 20px !important;
  }
  .mt-40 {
    margin-top: 20px !important;
  }
  .mt-50 {
    margin-top: 25px !important;
  }
  .mt-60 {
    margin-top: 30px !important;
  }
  .mt-70 {
    margin-top: 35px !important;
  }
  .mt-80 {
    margin-top: 40px !important;
  }
  .mt-90 {
    margin-top: 45px !important;
  }
  .mt-100 {
    margin-top: 50px !important;
  }
  .mb-30 {
    margin-bottom: 15px !important;
  }
  .mb-40 {
    margin-bottom: 20px !important;
  }
  .mb-50 {
    margin-bottom: 25px !important;
  }
  .mb-60 {
    margin-bottom: 30px !important;
  }
  .mb-70 {
    margin-bottom: 35px !important;
  }
  .mb-80 {
    margin-bottom: 40px !important;
  }
  .mb-90 {
    margin-bottom: 45px !important;
  }
  .mb-100 {
    margin-bottom: 50px !important;
  }
  /* Margin Right */
  .mr-30 {
    margin-right: 15px !important;
  }
  .mr-40 {
    margin-right: 20px !important;
  }
  .mr-50 {
    margin-right: 25px !important;
  }
  /* Margin Left */
  .ml-30 {
    margin-left: 15px !important;
  }
  .ml-40 {
    margin-left: 20px !important;
  }
  .ml-50 {
    margin-left: 25px !important;
  }
  /* padding Top */
  .pt-30 {
    padding-top: 15px !important;
  }
  .pt-40 {
    padding-top: 20px !important;
  }
  .pt-50 {
    padding-top: 25px !important;
  }
  .pt-60 {
    padding-top: 30px !important;
  }
  .pt-70 {
    padding-top: 35px !important;
  }
  .pt-80 {
    padding-top: 40px !important;
  }
  .pt-90 {
    padding-top: 45px !important;
  }
  .pt-100 {
    padding-top: 50px !important;
  }
  .pt-110 {
    padding-top: 55px !important;
  }
  .pt-120 {
    padding-top: 60px !important;
  }
  .pt-130 {
    padding-top: 70px !important;
  }
  .pt-140 {
    padding-top: 70px !important;
  }
  .pt-150 {
    padding-top: 75px !important;
  }
  .pt-160 {
    padding-top: 80px !important;
  }
  .pt-170 {
    padding-top: 85px !important;
  }
  .pt-220 {
    padding-top: 110px !important;
  }
  /*  Padding Bottom */
  .pb-30 {
    padding-bottom: 15px !important;
  }
  .pb-40 {
    padding-bottom: 20px !important;
  }
  .pb-50 {
    padding-bottom: 25px !important;
  }
  .pb-60 {
    padding-bottom: 30px !important;
  }
  .pb-70 {
    padding-bottom: 35px !important;
  }
  .pb-80 {
    padding-bottom: 40px !important;
  }
  .pb-90 {
    padding-bottom: 45px !important;
  }
  .pb-100 {
    padding-bottom: 50px !important;
  }
  .pb-110 {
    padding-bottom: 55px !important;
  }
  .pb-120 {
    padding-bottom: 60px !important;
  }
  .pb-130 {
    padding-bottom: 65px !important;
  }
  .pb-140 {
    padding-bottom: 70px !important;
  }
  .pb-150 {
    padding-bottom: 75px !important;
  }
  .pb-160 {
    padding-bottom: 80px !important;
  }
  .pb-170 {
    padding-bottom: 85px !important;
  }
  .pl-50 {
    padding-left: 25px !important;
  }
  .pb-220 {
    padding-bottom: 110px !important;
  }
}
@media (max-width: 991px) {
  .order-1-md {
    order: 1;
  }
  .order-2-md {
    order: 2;
  }
}
/* Medium Devices */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/*-------------------------
   Background & Colors
--------------------------*/

.color-dark {
  color: var(--color-dark) !important;
}

.color-primary,
.color-primary-hover:hover {
  color: var(--color-primary) !important;
}

a.color-primary:hover {
  color: var(--color-secondary) !important;
}

.color-secondary {
  color: var(--color-secondary) !important;
}

a.color-secondary:hover {
  color: var(--color-primary) !important;
}


.color-white,
.color-white-hover:hover,
a.color-white-hover:hover {
  color: var(--color-white) !important;
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  background-color: var(--color-white) !important;
}

.bg-gray {
  background-color: var(--color-gray-100) !important;
}

.bg-dark {
  background-color: var(--color-dark) !important;
}

.bg-heading {
  background-color: var(--color-accent) !important;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-img {
  position: relative;
  z-index: 1;
}

.background-size-auto {
  background-size: auto !important;
}

.bg-parallax {
  background-attachment: fixed;
}

.bg-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(27, 26, 26, 0.25);
}


.bg-overlay-secondary:before {
  background-color: rgba(0, 38, 120, 0.93);
}

.bg-overlay-primary:before {
  background-color: rgba(33, 205, 173, 0.9);
}

.bg-overlay-primary-gradient:before {
  opacity: 0.95;
  background-color: var(--color-primary);
  background-image: linear-gradient(90deg, rgba(6, 70, 178, 0) 0%, rgba(11, 173, 246, 0) 3%, rgb(var(--color-primary-rgb)) 80%);
}

.bg-overlay-secondary-gradient:before {
  opacity: 0.95;
  background-color: var(--color-secondary);
  background-image: linear-gradient(90deg, rgba(37, 55, 69, 0) 0%, rgba(0, 38, 120, 0.04) 3%, rgb(var(--color-secondary-rgb)) 80%);
}


/*-------------------------
   Typography
--------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

p {
  line-height: 1.75;
  margin-bottom: 15px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

.heading-subtitle {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.heading-title {
  font-size: 36px;
  margin-bottom: 20px;
}
.heading-title .underlined-text {
  border-bottom: 4px solid var(--color-primary);
}


.heading-light .heading-subtitle {
  color: #f0f1f4;
}
.heading-light .heading-title {
  color: var(--color-white);
}

[class*=underlined-text] {
  padding-bottom: 2px;
  border-bottom: 2px solid;
}

.underlined-text,
.underlined-text-primary {
  border-bottom-color: var(--color-primary);
}

.underlined-text-secondary {
  border-bottom-color: var(--color-secondary);
}


@media (min-width: 768px) and (max-width: 991px) {
  .heading-title {
    font-size: 30px;
  }
}
/* Mobile Phones and tablets  */
@media (min-width: 320px) and (max-width: 767px) {
  .heading-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
      }
/*-------------------------
    page title 
-------------------------*/
.header-transparent + .page-title {
  margin-top: -135px;
}


.pagetitle-heading {
  font-size: 75px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}
.papertitle-heading {
  font-size: 35px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}
.pagetitle-desc {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0;
}

.home-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: var(--color-white) !important;
  background-color: var(--color-secondary);
  border: 10px solid var(--color-white);
}

[class*=page-title] .breadcrumb-item a {
  font-weight: 700;
  color: var(--color-secondary);
}
[class*=page-title] .breadcrumb-item a:hover {
  color: var(--color-primary);
}
[class*=page-title] .breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-secondary);
}
[class*=page-title] .breadcrumb-item.active {
  color: var(--bs-gray);
}
[class*=page-title] .btn,
[class*=page-title] .video-btn {
  margin-top: 32px;
}
[class*=page-title] .btn:not(.btn-xl) {
  min-width: 200px;
}
[class*=page-title] {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 60%, #0e6494 100%);
}
[class*=page-title] .bg-img {
  opacity: 0.07;
}
[class*=page-title].bg-overlay:before {
  opacity: 0.15;
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(0, 34, 108, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
}
[class*=page-title].bg-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(13, 14, 67, 0.08);
}

.page-title-light .pagetitle-heading,.papertitle-heading,
.page-title-light .breadcrumb-item a,
.page-title-light .breadcrumb-item.active,
.page-title-light .breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-white);
}
.page-title-light .pagetitle-desc {
  color: var(--color-gray-100);
}

.page-title-layout1 {
  padding-top: 160px;
}

.page-title-layout2 {
  padding-top: 130px;
}
.page-title-layout2 .pagetitle-desc {
  max-width: 610px;
}

.page-title-layout4 .breadcrumb-area {
  padding: 22px 0;
  margin-bottom: 70px;
  border-bottom: 1px solid rgba(130, 133, 153, 0.25);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .pagetitle-heading {
    font-size: 60px;
  }
  .pagetitle-desc {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .page-title-layout2 {
    padding-top: 60px;
  }
  .page-title-layout1,
    .pagetitle-heading {
    font-size: 35px;
    line-height: 1.3;
  }
  .pagetitle-desc {
    font-size: 15px;
    font-weight: 400;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .pagetitle-desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .pagetitle-heading {
    font-size: 30px !important;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
/*--------------------
   Buttons
---------------------*/
.btn {
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 700;
  min-width: 195px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  border: 0;
  border-radius: 5px;
  transition: all 0.3s linear;
}
.btn:focus, .btn.active, .btn:active {
  box-shadow: none;
  outline: none;
}
.btn .icon-filled,
.btn .icon-outlined {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  transition: all 0.3s linear;
}
.btn:not(.btn-link) span,
.btn:not(.btn-link) i {
  margin: 0 5px;
}

.btn-primary {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.btn-primary .icon-outlined {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: var(--color-white);
}
.btn-primary .icon-filled {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.btn-primary:hover {
  color: var(--color-white);
}
.btn-primary:hover .icon-outlined {
  color: var(--color-secondary);
  background-color: var(--color-white);
}
.btn-primary:hover .icon-filled {
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.btn-primary.btn-outlined {
  color: var(--color-primary);
  background-color: transparent;
  border: 2px solid var(--color-primary);
}
.btn-primary.btn-outlined:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.btn-primary:active, .btn-primary:focus, .btn-primary:not(.btn-outlined):hover {
  color: var(--color-white);
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.btn-secondary {
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.btn-secondary .icon-filled {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.btn-secondary .icon-outlined {
  color: var(--color-secondary);
  border: 1px solid #b2bdd6;
}
.btn-secondary:hover {
  color: var(--color-white);
}
.btn-secondary:hover .icon-filled {
  background-color: var(--color-secondary);
}
.btn-secondary.btn-outlined {
  color: var(--color-secondary);
  background-color: transparent;
  border: 2px solid #b2bdd6;
}
.btn-secondary.btn-outlined:hover {
  color: var(--color-white);
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}
.btn-secondary:active, .btn-secondary:focus, .btn-secondary:not(.btn-link):hover, .btn-secondary:not(.btn-outlined):hover {
  color: var(--color-white);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.btn-white {
  color: var(--color-secondary);
  background-color: var(--color-white);
}
.btn-white:active, .btn-white:focus {
  color: var(--color-secondary);
  border-color: var(--color-white);
  background-color: var(--color-white);
}
.btn-white:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.btn-white.btn-outlined {
  color: var(--color-white);
  background-color: transparent;
  border: 2px solid var(--color-white);
}
.btn-white.btn-outlined:before {
  border-right-color: var(--color-white);
}
.btn-white.btn-outlined:hover {
  color: var(--color-primary);
  background-color: var(--color-white);
}


.btn-outlined {
  background-color: transparent;
}

.btn-link {
  min-width: 0;
  height: auto;
  padding: 0;
  text-decoration: none;
  border-color: transparent !important;
  background-color: transparent !important;
}
.btn-link:focus, .btn-link:active {
  background-color: transparent;
}
.btn-link.btn-icon {
  height: auto;
  line-height: 1;
  padding: 0;
}
.btn-link.btn-primary {
  color: var(--color-primary);
}
.btn-link.btn-link.btn-primary.btn-underlined {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--color-primary);
}
.btn-link.btn-primary:hover {
  color: var(--color-secondary);
  background-color: transparent;
}
.btn-link.btn-secondary {
  color: var(--color-secondary);
}
.btn-link.btn-secondary:hover {
  color: var(--color-primary);
}
.btn-link.btn-white {
  color: var(--color-white);
}
.btn-link.btn-white .btn-link.btn-white.btn-underlined {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--color-white);
}
.btn-link.btn-white:hover {
  color: var(--color-secondary);
}
.btn-link.btn-white:hover.btn-underlined {
  border-color: var(--color-secondary);
}

.btn-block {
  width: 100%;
}


.btn-xl {
  height: 70px;
  min-width: 250px;
}
.btn-xl i,
.btn-xl span {
  margin: 0 7px;
}

.btn-xhight {
  height: 70px;
  line-height: 68px;
}


/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .btn:not(.btn-link) {
    font-size: 13px;
    min-width: 120px;
    height: 55px;
  }
  .btn-icon {
    padding: 0 10px;
  }
  .btn-xl {
    height: 55px;
    min-width: 150px;
  }
}
/*---------------------------
        Forms
----------------------------*/
label {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
label.error {
  color: red;
  font-size: 14px;
  font-weight: 400;
  margin: 7px 0 0 0;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-control {
  font-size: 14px;
  height: 60px;
  padding: 0 20px;
  border-radius: 7px;
  background-color: var(--color-white);
  border: 2px solid #e6e8eb;
}
.form-control:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
}
.form-control::-webkit-input-placeholder {
  color: #26365e;
}
.form-control:-moz-placeholder {
  color: #26365e;
}
.form-control::-moz-placeholder {
  color: #26365e;
}
.form-control:-ms-input-placeholder {
  color: #26365e;
}

.custom-control {
  display: flex;
  align-items: center;
}

textarea.form-control {
  min-height: 120px;
  padding-top: 16px;
}

.form-title {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 20px;
}

.custom-checkbox {
  position: relative;
}
.custom-checkbox input[type=checkbox],
.custom-checkbox input[type=radio] {
  display: none;
}


/* Input Radio */


.custom-control-label {
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 27px;
}
.custom-control-label:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  pointer-events: none;
  border: 2px solid #e7ebef;
  transition: all 0.3s ease-in-out;
}
.custom-control-label:after {
  font-family: "icomoon";
  content: "\e93e";
  position: absolute;
  top: 3px;
  left: 4px;
  font-size: 6px;
  color: var(--color-primary);
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  transform: scale(1);
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  border-color: transparent;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--color-primary) !important;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}

input[type=checkbox],
input[type=radio] {
  box-shadow: none !important;
}

.nice-select {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 7px;
  margin-bottom: 30px;
}
.nice-select .list {
  width: 100%;
}
.nice-select .current,
.nice-select .option {
  color: var(--bs-gray);
}


::-webkit-inner-spin-button,
::-webkit-calendar-picker-indicator {
  opacity: 0;
}

/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 767px) {
  .form-group,
  .nice-select {
    margin-bottom: 20px;
  }
}
/*--------------------
    Tabs
--------------------*/
.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav-link {
  display: block;
  position: relative;
  padding: 0 0 10px;
  margin: 0 30px 0 0;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1;
  font-size: 16px;
  color: var(--color-secondary);
  border: 0;
}
.nav-tabs .nav-link:last-of-type {
  margin-right: 0;
}
.nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
  transition: transform 2s cubic-bezier(0.2, 1, 0.3, 1);
}
.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
  color: var(--color-primary);
}
.nav-tabs .nav-link.active:after, .nav-tabs .nav-link:hover:after {
  transform: scale3d(1, 1, 1);
  transform-origin: 0 50%;
}


/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .nav-tabs .nav-link {
    font-size: 13px;
    margin: 0 15px 0 0;
  }
  .nav-tabs .nav-link:after {
    bottom: 4px;
  }
}
/*------------------- 
    Icons & clip paths
------------------*/
.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.social-icons li {
  margin-right: 10px;
}
.social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;


  transition: all 0.4s linear;
}
.social-icons li a i {
  font-size: 23px;
  color: var(--color-secondary);
  transition: all 0.4s linear;
}
.social-icons li a:hover {
  background-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary) inset;
}
.social-icons li a:hover i {
  color: var(--color-white);
}
.social-icons li:last-of-type {
  margin-right: 0;
}

.icon-arrow-right,
.icon-arrow-left {
  font-size: 65%;
}

.plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  margin-right: 3px;
  font-style: normal;
  color: var(--color-white);
  background-color: var(--color-primary);
  transition: all 0.3s linear;
}

.rating .active {
  color: #f4572e;
}

.curve-top-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  transform: rotate(180deg);
}
.curve-top-shape .curve-svg {
  height: 48px;
  width: 100%;
}
.curve-top-shape .curve-path {
  fill: var(--color-white);
  transform-origin: center;
  transform: rotateY(0);
}

.hexagon-clippath {
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
          clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.hexagon-clippath2 {
  -webkit-clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
          clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.octagon-clippath {
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.cms-octagon-clippath {
  filter: url(#rounded-clippath-filter);
}

/*-------------------------
    Breadcrumb
--------------------------*/
.breadcrumb {
  padding: 0;
  background-color: transparent;
}

.breadcrumb-item {
  position: relative;
  font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .breadcrumb-item a,
  .breadcrumb-item + .breadcrumb-item {
    font-size: 12px;
  }
}
/*----------------------
    Pagination
-----------------------*/
.pagination li {
  margin-right: 10px;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  width: 58px;
  height: 58px;
  border-radius: 5px;
  color: var(--color-secondary);
  border: 2px solid #b2bdd6;
  background-color: var(--color-white);
  transition: all 0.3s linear;
}
.pagination li a:hover,
.pagination li a.current {
  color: var(--color-white);
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .pagination li a {
    font-size: 16px;
    width: 35px;
    height: 35px;
  }
}
/*-------------------
    lists
-------------------*/
.contact-list li {
  font-size: 14px;
  margin-bottom: 5px;
}
.contact-list li:last-child {
  margin-bottom: 0;
}
.contact-list li a {
  color: var(--bs-gray);
}


/* Extra Small Devices */

/*------------------------
    Animations
-----------------------*/
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slideTopDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}
@keyframes headerAnimation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomOut {
  50% {
    transform: scale(1.1);
  }
}
/*------------------------
    Alerts
--------------------------*/
.alert-primary {
  padding: 30px;
  border-radius: 15px;
  color: var(--color-secondary);
  border-color: transparent;
  background-color: #e0f8f4;
}
.alert-primary .alert-title {
  font-size: 19px;
}

.alert-info {
  padding: 27px;
  color: var(--bs-gray);
  border-color: #eef7ff;
  background-color: #eef7ff;
}

/*----------------------
    Carousel
-----------------------*/
.slick-list {
  margin: 0 -10px;
}

.slick-slide {
  margin: 0 10px;
}

.m-slides-0 .slick-list {
  margin: 0;
}
.m-slides-0 .slick-slide {
  margin: 0;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 0;
  border-radius: 50%;
  transition: all 0.3s linear;
  transform: translateY(-50%);
}
.slick-arrow:before {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "icomoon";
  font-size: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--color-white);
  background-color: var(--color-primary);
  transition: all 0.3s linear;
}
.slick-arrow:hover {
  box-shadow: 0 0 0 2px #dfdfea inset;
}
.slick-arrow:hover:before {
  background-color: var(--color-secondary);
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-next:before {
  content: "\e94a";
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-prev:before {
  content: "\e940";
}

.slick-dots {
  list-style: none;
  position: relative;
  z-index: 2;
  padding: 0;
  text-align: center;
  margin-bottom: 0;
}
.slick-dots li {
  display: inline-flex;
  position: relative;
  width: 20px;
  height: 8px;
  margin: 0 4px;
  transition: all 0.3s linear;
}
.slick-dots li button {
  display: block;
  font-size: 0;
  width: 20px;
  height: 8px;
  padding: 0;
  border-radius: 3px;
  background-color: var(--color-secondary);
  transition: all 0.2s linear;
}
.slick-dots li.slick-active {
  width: 40px;
}
.slick-dots li.slick-active button {
  width: 40px;
  background-color: var(--color-primary);
}

.carousel-dots-light .slick-dots li:not(.slick-active) button {
  background-color: var(--color-white);
}

/*----------------------
    Pre Loader
-----------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader .loading {
  position: relative;
  width: 80px;
  height: 80px;
}
.preloader .loading span {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 5px solid #21cdad;
  border-radius: 50%;
  animation: rotating 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--color-primary) transparent transparent transparent;
}
.preloader .loading span:nth-child(1) {
  animation-delay: -0.45s;
}
.preloader .loading span:nth-child(2) {
  animation-delay: -0.3s;
}
.preloader .loading span:nth-child(3) {
  animation-delay: -0.15s;
}

/* Rotating Animation */
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*----------------------------
      Navbar & Header
-----------------------------*/
.header {
  position: relative;
  z-index: 1000;
}

/* Navbar */
.navbar {
  padding: 0;
  height: 100px;
  max-height: 100px;
  background-color: var(--color-white);
  /*  dropdown-menu  */
}
.navbar > .container,
.navbar > .container-fluid {
  position: relative;
  height: 100px;
}
.navbar .navbar-brand {
  padding: 0;
  margin: 0;
  line-height: 100px;
}
.navbar .logo-light {
  display: none;
}
.navbar .navbar-toggler {
  padding: 0;
  border: none;
  border-radius: 0;
  width: 23px;
  position: relative;
}
.navbar .navbar-toggler .menu-lines {
  display: inline-block;
}
.navbar .navbar-toggler .menu-lines:before, .navbar .navbar-toggler .menu-lines:after {
  content: "";
  position: absolute;
  left: 0;
  width: 23px;
  height: 1px;
  display: inline-block;
  background-color: var(--color-secondary);
  transition: 0.3s ease;
}
.navbar .navbar-toggler .menu-lines:before {
  top: 0;
}
.navbar .navbar-toggler .menu-lines:after {
  top: 12px;
}
.navbar .navbar-toggler .menu-lines span {
  position: absolute;
  top: 6px;
  left: 0;
  width: 18px;
  height: 1px;
  background-color: var(--color-secondary);
}
.navbar .navbar-toggler.actived .menu-lines > span {
  opacity: 0;
}
.navbar .navbar-toggler.actived .menu-lines:before {
  top: 0;
  transform: rotate(-45deg);
}
.navbar .navbar-toggler.actived .menu-lines:after {
  top: 0;
  transform: rotate(45deg);
}
.navbar .nav-item {
  position: relative;
  margin-right: 25px;
}
.navbar .nav-item .nav-item-link {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  position: relative;
  color: var(--color-secondary);
  line-height: 100px;
  letter-spacing: 0.4px;
  padding-right: 15px;
}
.navbar .nav-item .nav-item-link.active, .navbar .nav-item .nav-item-link:hover {
  color: var(--color-primary);
}
.navbar .nav-item .nav-item-link.active:before, .navbar .nav-item .nav-item-link:hover:before {
  width: 100%;
}
.navbar .nav-item:last-child {
  margin-right: 0;
}
.navbar .dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  vertical-align: middle;
  margin-left: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.navbar .dropdown-menu {
  border-radius: 0;
  border: none;
  margin: 0;
  background-color: var(--color-white);
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
}
.navbar .dropdown-menu.mega-dropdown-menu {
  padding: 0;
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block {
  padding: 50px 20px 40px;
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured {
  padding: 45px 50px 40px;
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured > .nav {
  justify-content: space-between;
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-title {
  font-size: 24px;
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-desc {
  font-size: 14px;
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 10px;
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link {
  color: var(--color-white);
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 55px !important;
  margin-right: 15px;
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link:before {
  background-color: #dfdfea;
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link:hover {
  color: var(--color-secondary);
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link:hover [class*=icon-] {
  background-color: var(--color-secondary);
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item [class*=icon-] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-right: 10px;
  color: var(--color-primary);
  background-color: var(--color-white);
  transition: 0.3s ease;
}
.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-block-inner {
  padding: 47px 50px 35px;
  border-radius: 10px;
  background-color: var(--color-primary);
}
.navbar .dropdown-menu .nav-item {
  padding: 0 40px;
  margin-right: 0;
}
.navbar .dropdown-menu .nav-item > .nav-item-link {
  font-size: 14px;
  color: var(--bs-gray);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 42px !important;
  white-space: nowrap;
  position: relative;
  padding-right: 0;
  border-bottom: 1px solid #dfdfea;
}
.navbar .dropdown-menu .nav-item > .nav-item-link:before {
  content: "";
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: 0.5s ease;
}
.navbar .dropdown-menu .nav-item > .nav-item-link:hover {
  color: var(--color-primary);
}
.navbar .dropdown-menu .nav-item > .nav-item-link:hover:before {
  width: 100%;
}
.navbar .dropdown-menu .nav-item:last-child {
  margin-right: 0;
}
.navbar .dropdown-menu .nav-item:last-child > .nav-item-link {
  border-bottom: 0;
}
.navbar .dropdown-menu .nav-item:last-child > .nav-item-link:before {
  display: none;
}
.navbar .dropdown-menu .dropdown-toggle:after {
  right: 0;
}
.navbar .dropdown-menu .nav-title {
  font-size: 18px;
  margin-bottom: 8px;
}

/* navbar-actions */

.action-btn {
  color: var(--color-secondary);
}


/* header topbar */
.header-topbar {
  height: 60px;
  display: flex;
  align-items: center;
  background-color: var(--color-accent);
}
.header-topbar .header-topbar-links li {
  margin-right: 20px;
}
.header-topbar .header-topbar-links li a {
  font-size: 13px;
  color: var(--color-white);
}
.header-topbar .header-topbar-links li a:hover {
  color: var(--color-primary);
}
.header-topbar .contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-right: 30px;
  margin-bottom: 0;
}
.header-topbar .contact-list li a:not(.btn) {
  color: #f4f4f4;
}
.header-topbar .contact-list li a:not(.btn):hover {
  color: var(--color-white);
}
.header-topbar .contact-list li > i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 8px;
}
.header-topbar .contact-list li:last-child {
  margin-right: 0;
}
.header-topbar .social-icons li a {
  width: 34px;
  height: 34px;
}
.header-topbar .social-icons li a .social-icon {
  font-size: 20px;
  color: var(--color-white);
}
.header-topbar .header-topbar-search {
  position: relative;
}
.header-topbar .header-topbar-search .form-control {
  height: 30px;
  border: 0;
  border-radius: 0;
  color: var(--color-white);
  border: 2px solid;
  background-color: transparent;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.15);
}
.header-topbar .header-topbar-search .form-control:focus {
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.header-topbar .header-topbar-search .form-control::-webkit-input-placeholder {
  color: var(--color-gray-100);
  font-style: italic;
  font-size: 13px;
}
.header-topbar .header-topbar-search .form-control:-moz-placeholder {
  color: var(--color-gray-100);
  font-style: italic;
  font-size: 13px;
}
.header-topbar .header-topbar-search .form-control::-moz-placeholder {
  color: var(--color-gray-100);
  font-style: italic;
  font-size: 13px;
}
.header-topbar .header-topbar-search .form-control:-ms-input-placeholder {
  color: var(--color-gray-100);
  font-style: italic;
  font-size: 13px;
}
.header-topbar .header-topbar-search .header-topbar-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
}
.header-topbar .header-topbar .header-topbar .action-btn {
  color: var(--color-white) !important;
}


.header {
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.1);
}
.header .promo-text a {
  color: var(--color-primary) !important;
}
.header .promo-text a:hover {
  color: var(--color-white) !important;
}


/* sticky-navbar */
.is-sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 80px !important;
  max-height: 80px !important;
  background-color: var(--color-white) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
  animation: headerAnimation 0.8s;
}
.is-sticky > .container,
.is-sticky > .container-fluid {
  position: relative;
  height: 80px;
}
.is-sticky .is-sticky .navbar-brand {
  line-height: 80px;
}
.is-sticky .header-top-right {
  display: none !important;
}
.is-sticky .nav-item .nav-item-link {
  line-height: 80px !important;
}
.is-sticky .logo-light {
  display: none;
}
.is-sticky .logo-dark {
  display: inline-block;
}
.is-sticky .navbar-nav {
  margin-top: 0 !important;
}


/* search-popup */
.search-popup {
  position: fixed;
  z-index: 2300;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: var(--color-white);
  transform: scale(0.7);
  transition: all 0.5s ease-in-out;
}
.search-popup.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.search-popup.active .search-popup-form {
  transform: translateY(-50%) scaleX(1);
}
.search-popup.inActive {
  opacity: 0;
  transition-delay: 0.5s;
  transform: scale(1);
}
.search-popup.inActive .search-popup-form {
  transition-delay: 0s;
  transform: translateY(-50%) scaleX(0);
}
.search-popup .search-popup-close {
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
  font-style: normal;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 3px;
  color: var(--color-white);
  background-color: var(--color-primary);
  transition: all 0.2s linear;
}
.search-popup .search-popup-close:hover {
  background-color: var(--color-secondary);
}
.search-popup .search-popup-form {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 550px;
  margin: -40px auto 0;
  transition-delay: 0.5s;
  transition: all 0.5s ease-in-out;
  transform: translateY(-50%) scaleX(0);
}
.search-popup .search-popup-btn {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 80px;
  text-align: center;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-secondary);
  transition: 0.3s ease;
}
.search-popup .search-popup-btn:hover {
  color: var(--color-primary);
}
.search-popup .search-popup-form-input {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 35px;
  z-index: 1;
  width: 100%;
  height: 80px;
  border: none;
  padding: 0 0 0 40px;
  color: var(--bs-gray);
  background: transparent;
  border-bottom: 2px solid #e7ebef;
  transition: all 0.3s ease;
}
.search-popup .search-popup-form-input::-webkit-input-placeholder {
  color: var(--bs-gray);
}
.search-popup .search-popup-form-input:-moz-placeholder {
  color: var(--bs-gray);
}
.search-popup .search-popup-form-input::-moz-placeholder {
  color: var(--bs-gray);
}
.search-popup .search-popup-form-input:-ms-input-placeholder {
  color: var(--bs-gray);
}


.contact-phone .contact-icon {
  width: 61px;
  height: 61px;
  font-size: 17px;
  border-radius: 50%;
  padding: 7px;
  margin-right: 12px;
  box-shadow: 0 0 0 2px #b2bdd6;
}
.contact-phone .contact-icon .icon-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  color: var(--color-white);
  background-color: var(--color-primary);
}
.contact-phone .phone-link {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--color-secondary);
}
.contact-phone .phone-link:hover {
  color: var(--color-primary);
}


@media (min-width: 1200px) {
  .navbar > .container-fluid,
  .header-topbar > .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .header-topbar {
    display: none;
  }
}

@media (min-width: 1400px) {
  .navbar > .container-fluid,
  .header-topbar > .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
/* Large Size Screens */
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar .nav-item {
    margin-right: 20px;
  }
}
/* Mobile and Tablets */
@media (max-width: 991px) {
  .navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    height: 13px;
  }
  .navbar .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar .collapse:not(.show) {
    display: block;
  }
  .navbar .navbar-nav {
    margin: 0 !important;
  }
  .navbar .nav-item {
    margin-right: 0;
  }
  .navbar .nav-item .nav-item-link {
    color: var(--color-dark);
    line-height: 35px !important;
    padding-left: 15px;
  }
  .navbar .nav-item .nav-item-link:hover {
    color: var(--color-primary);
  }
  .navbar .nav-item .nav-item-link:before {
    display: none;
  }
  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    padding: 0;
    transition: 0.4s ease;
  }
  .navbar .navbar-collapse .navbar-nav {
    opacity: 0;
    width: 240px;
    height: 100%;
    overflow-y: auto;
    padding: 50px 0 20px;
    background-color: var(--color-white);
    transition: 0.3s ease;
    transition-delay: 0.4s;
    transform: translateX(-100%);
  }
  .navbar .navbar-collapse.menu-opened {
    opacity: 1;
    visibility: visible;
  }
  .navbar .navbar-collapse.menu-opened .navbar-nav {
    opacity: 1;
    transform: translateX(0);
  }
  .navbar .navbar-collapse.menu-opened .close-mobile-menu {
    opacity: 1;
    transform: scale(1);
  }
  .navbar .close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1100;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    transition-delay: 0.5s;
  }
  .navbar .nav-item [data-bs-toggle=dropdown]:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    width: 50%;
    text-align: right;
    z-index: 2;
    padding-right: 15px;
    line-height: 35px;
    display: block !important;
  }
  .navbar .dropdown-toggle:after {
    display: none;
  }
  .navbar .nav-item [data-bs-toggle=dropdown].opened:after,
  .navbar .nav-item [data-bs-toggle=dropdown].show:after {
    content: "\f106";
  }
  .navbar .dropdown-menu {
    background-color: white;
  }
  .navbar .dropdown-menu .nav-item {
    padding: 0 15px 0 30px;
  }
  .navbar .dropdown-menu .nav-item .nav-item-link {
    padding-left: 0;
    border-bottom: none;
  }
  .navbar .dropdown-menu .dropdown-menu-col .nav-item {
    padding: 0;
  }
  .navbar .nav-item.dropdown-submenu > .dropdown-menu.show {
    padding-left: 10px;
  }
  .navbar .dropdown-submenu .dropdown-menu .nav-item {
    padding: 0 0 0 15px;
  }
  .navbar .navbar-nav .dropdown-menu.show {
    padding: 0;
  }
  .navbar .mega-dropdown-menu .container {
    max-width: none;
  }
  .navbar .mega-dropdown-menu > .nav-item {
    padding: 0 10px;
  }
  .navbar .mega-dropdown-menu .nav-item {
    padding: 0;
  }
  .navbar .dropdown-menu .nav-title {
    font-size: 15px;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav-block {
    padding: 10px 0 0;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured {
    padding: 10px;
    height: auto;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured:after {
    display: none;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-title {
    font-size: 18px;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-desc {
    font-size: 13px;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link {
    line-height: 40px !important;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item [class*=icon-] {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-right: 10px;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-block-inner {
    padding: 10px;
    margin: -10px;
  }
  .header .navbar,
  .header-transparent .navbar {
    background-color: var(--color-white);
  }
  .header .logo-dark,
  .header-transparent .logo-dark {
    display: inline-block;
    width:50px;
  }
  .header .logo-light,
  .header-transparent .logo-light {
    display: none;
  }
  .header .module-btn,
  .header-transparent .module-btn {
    color: var(--color-secondary);
    margin: 0 60px 0 0;
  }
  .header .navbar .navbar-toggler .menu-lines:before,
  .header .navbar .navbar-toggler .menu-lines:after,
  .header .navbar .navbar-toggler .menu-lines span,
  .header-transparent .navbar .navbar-toggler .menu-lines:before,
  .header-transparent .navbar .navbar-toggler .menu-lines:after,
  .header-transparent .navbar .navbar-toggler .menu-lines span {
    background-color: var(--color-secondary);
  }
  .header .navbar-expand-lg > .container,
  .header .navbar-expand-lg > .container-fluid,
  .header-transparent .navbar-expand-lg > .container,
  .header-transparent .navbar-expand-lg > .container-fluid {
    width: 100%;
    max-width: none;
  }
  .header .navbar,
  .header .navbar > .container,
  .header .navbar > .container-fluid,
  .header-transparent .navbar,
  .header-transparent .navbar > .container,
  .header-transparent .navbar > .container-fluid {
    height: 80px;
  }
  .header .header-full .navbar,
  .header .header-full .navbar .navbar-brand,
  .header .navbar-brand,
  .header-transparent .header-full .navbar,
  .header-transparent .header-full .navbar .navbar-brand,
  .header-transparent .navbar-brand {
    margin-left: 15px;
    line-height: 80px !important;
  }
  .header .header-full .navbar,
  .header .header-full .navbar .navbar-brand,
  .header-transparent .header-full .navbar,
  .header-transparent .header-full .navbar .navbar-brand {
    line-height: 80px;
  }
  .header-topbar > .container {
    max-width: none;
  }
    .action-btn-search {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
  }
}
/* Medium and large Screens */
@media (min-width: 992px) {
  .navbar .nav-item .nav-item-link:before {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: 0.4s ease;
  }
  .navbar .nav-item .nav-item-link.active:before, .navbar .nav-item .nav-item-link:hover:before {
    width: 100%;
  }
  .navbar .dropdown-menu {
    width: auto;
    min-width: 235px;
    padding: 25px 0 23px;
    border-radius: 0 0 4px 4px;
  }
  .navbar .nav-item.has-dropdown > .dropdown-menu,
  .navbar .nav-item.dropdown-submenu > .mega-menu,
  .navbar .nav-item.has-dropdown > .mega-menu,
  .navbar .nav-item.has-dropdown > .dropdown-menu > .nav-item.dropdown-submenu > .dropdown-menu {
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateY(10px);
  }
  .navbar .nav-item.has-dropdown > .dropdown-menu > .nav-item.dropdown-submenu > .dropdown-menu,
  .navbar .nav-item.dropdown-submenu > .dropdown-menu > .nav-item.has-dropdown > .dropdown-menu {
    top: 0;
    left: 100%;
  }
  .navbar .nav-item.has-dropdown:hover > .dropdown-menu,
  .navbar .nav-item.dropdown-submenu:hover > .mega-menu,
  .navbar .nav-item.has-dropdown:hover > .mega-menu,
  .navbar .nav-item.has-dropdown > .dropdown-menu > .nav-item.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar .nav-item.has-dropdown.has-mega-dropdown {
    position: static;
  }
  .navbar .nav-item.has-dropdown .mega-dropdown-menu {
    width: 100%;
  }
  .navbar .nav-item.has-dropdown .mega-dropdown-menu .container {
    display: block;
    max-width: none;
    padding-left: 50px;
  }
  .navbar .dropdown-menu.mega-dropdown-menu .nav-item {
    padding: 0;
  }
  .nav-item i[data-bs-toggle=dropdown] {
    display: none;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .dropdown-menu.mega-dropdown-menu > .nav-item {
    padding: 0 15px;
  }
  .dropdown-menu.mega-dropdown-menu .nav-item:last-child > .nav-item-link {
    border-bottom: 1px solid #f2f2f2;
  }
  .dropdown-menu.mega-dropdown-menu [class^=col-]:last-child .nav-item:last-child > .nav-item-link {
    border-bottom: none;
  }
}
/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 575px) {
  .search-popup .search-popup-form {
    width: 90%;
  }
  .search-popup .search-popup-form-input {
    font-size: 20px;
    font-weight: 400;
    height: 40px;
    padding: 0 0 0 30px;
  }
  .search-popup .search-popup-btn {
    font-size: 20px;
    line-height: 40px;
  }
  .search-popup .search-popup-close {
    font-size: 14px;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media (max-width: 420px) {
  .header .navbar-brand img {
    max-width: 120px;
  }
  .header .action-btn-login span {
    display: none;
  }
}
/*----------------------
    Accordions
------------------------*/
.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
}

.accordion-item {
  padding: 22px 0;
  margin-top: -1px;
  border-top: 2px solid #e7ebef;
  border-bottom: 2px solid #e7ebef;
  background-color: var(--color-white);
}
.accordion-item:first-child {
  border-top: 8px solid var(--color-primary);
}
.accordion-item .accordion-title {
  font-weight: 700;
  font-size: 19px;
  cursor: pointer;
  display: block;
  position: relative;
  padding-right: 40px;
  color: var(--color-secondary);
}
.accordion-item .accordion-title:hover {
  color: var(--color-primary);
}
.accordion-item .accordion-title:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "+";
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.accordion-item.opened .accordion-header:not(.collapsed) .accordion-title {
  color: var(--color-primary);
}
.accordion-item.opened .accordion-header:not(.collapsed) .accordion-title:after {
  content: "-";
  background-color: var(--color-primary);
}
.accordion-item .accordion-body {
  padding-top: 20px;
}
.accordion-item .accordion-body p {
  font-size: 15px;
  margin-bottom: 0;
}
.accordion-item .accordion-body p:not(:last-child) {
  margin-bottom: 30px;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .accordion-item {
    padding: 10px 0;
  }
  .accordion-item .accordion-title {
    font-size: 15px;
  }
  .accordion-item .accordion-body p {
    font-size: 13px;
  }
}
/*-----------------------
    banner
------------------------*/


/* Extra Large Size Screens */

/* Mobile Phones & tablets and Small Screens */


/*-------------------------
    Footer
--------------------------*/
.footer {
  overflow-x: hidden;
}
.footer .footer-primary {
  position: relative;
  padding: 50px 0 30px;
background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 60%, #0e6494 100%);
}
.footer .footer-primary:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 377px;
  z-index: 1;
  background-image: url(../images/backgrounds/pattern.png);
  background-position: bottom right;
  background-repeat: no-repeat;
}
.footer .footer-secondary {
  position: relative;
  padding: 46px 0;
  background-color: var(--color-white);
}
.footer .footer-secondary:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50px;
  right: 50px;
  height: 5px;
  background-color: var(--color-primary);
}
.footer [class*=footer-widget] {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.footer .footer-widget-title {
  color: var(--color-white);
  font-size: 17px;
  text-transform: capitalize;
  margin-bottom: 33px;
}
.footer .contact-list li {
  margin-bottom: 17px;
}
.footer .contact-list li:last-child {
  margin-bottom: 0;
}
.footer .contact-list li a {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--color-primary);
}
.footer .contact-list li a .contact-icon {
  margin-right: 15px;
}
.footer .contact-list li a:hover {
  color: var(--color-white);
}
.footer .contact-list li p {
  margin-bottom: 7px;
}
.footer .footer-widget-contact p {
  color: var(--color-gray-100);
}
.footer .footer-widget-nav li a {
  display: block;
  position: relative;
  color: var(--color-white);
  font-size: 14px;
  margin-bottom: 11px;
}
.footer .footer-widget-nav li a:hover {
  color: var(--color-primary);
}
.footer .footer-copyright-links li a {
  position: relative;
  color: var(--color-secondary);
  display: block;
  margin-right: 25px;
  padding: 3px 0;
}
.footer .footer-copyright-links li a:before {
  content: "-";
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  color: var(--color-secondary);
}
.footer .footer-copyright-links li a:hover {
  color: var(--color-primary);
}
.footer .footer-copyright-links li:last-child a {
  margin-right: 0;
}
.footer .footer-copyright-links li:last-child a:before {
  display: none;
}
.footer .social-icons li {
  margin-right: 30px;
}
.footer .social-icons li a {
  width: auto;
  height: auto;
  box-shadow: none;
}
.footer .social-icons li a i {
  font-size: 17px;
}
.footer .social-icons li a .social-title {
  font-weight: 700;
  color: var(--bs-gray);
  margin-left: 10px;
  transition: all 0.4s linear;
}
.footer .social-icons li a:hover {
  background-color: transparent;
}
.footer .social-icons li a:hover i {
  color: var(--color-primary);
}
.footer .social-icons li a:hover .social-title {
  color: var(--color-primary);
}
.footer .social-icons li:last-of-type {
  margin-right: 0;
}

/* Scroll Top Button */
#scrollTopBtn {
  color: var(--color-primary);
  transition: all 0.4s linear;
}
#scrollTopBtn .btn-text {
  font-weight: 700;
}
#scrollTopBtn:hover {
  color: var(--color-secondary);
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 1200px) {
  .footer .footer-primary {
    padding-top: 35px;
    padding-bottom: 30px;
  }
  .footer .footer-secondary {
    padding: 20px 0;
  }
  .footer .footer-secondary:after {
    left: 20px;
    right: 20px;
    height: 3px;
  }
  .footer .footer-widget {
    margin-bottom: 20px;
  }
  .footer .footer-widget-title {
    margin-bottom: 15px;
  }
  .footer .footer-widget-nav li a {
    font-size: 13px;
  }
  .footer .phone-number {
    margin: 10px 0;
  }
}
/* Mobile Phones */
@media (min-width: 320px) and (max-width: 767px) {
  .footer .social-icons {
    margin: 10px 0;
  }
  .footer .social-icons li:not(:last-child) {
    margin-right: 20px;
  }
}
/*-------------------------
       Counters
--------------------------*/


/* Mobile Phones and tablets */


.cta-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.cta-desc {
  font-size: 16px;
}

.cta-banner {
  position: relative;
  z-index: 3;
  padding: 50px;
  border-radius: 10px;
  background-color: var(--color-white);
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
}
.cta-banner .cta-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.cta-banner .cta-desc {
  font-size: 16px;
}


@media (max-width: 991px) {
  .cta-banner .cta-title {
    font-size: 16px;
  }
}
/*-----------------------
    careers
------------------------*/
.careers {
  overflow-x: hidden;
}
.careers .slick-slide {
  margin: 15px;
  transition: opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.4s ease, transform 0.5s ease;
}
.careers .slick-slide:not(.slick-active) {
  opacity: 0;
  visibility: hidden;
}
.careers .slick-list {
  margin: -15px;
  overflow: visible;
}
.careers .slick-dots {
  margin-top: 15px;
}

.job-item {
  padding: 40px;
  border-radius: 5px;
  background-color: var(--color-white);
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
  transition: all 0.4s ease;
}
.job-item:hover {
  transform: translateY(-6px);
}
.job-item .job-meta {
  margin-bottom: 32px;
}
.job-item .job-type {
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: var(--color-primary);
}
.job-item .job-location {
  font-size: 13px;
  color: var(--color-secondary);
}
.job-item .job-title {
  font-size: 22px;
  margin-bottom: 18px;
}
.job-item .btn {
  margin-top: 10px;
}
.job-item .btn .plus-icon {
  background-color: var(--color-secondary);
}
.job-item .btn:hover .plus-icon {
  background-color: var(--color-primary);
}

@media (min-width: 1400px) {
  .careers .slick-list {
    margin: -20px;
  }
  .careers .slick-slide {
    margin: 20px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .job-item {
    padding: 20px;
  }
  .job-item .job-meta {
    margin-bottom: 20px;
  }
  .job-item .job-title {
    margin-bottom: 10px;
  }
}
/*------------------------
    Slider 
--------------------------*/
.header-transparent + .slider {
  margin-top: -100px;
}
.header-transparent.header-full + .slider {
  margin-top: -135px;
}

.header-transparent + .slider .slide-item {
  padding-top: 100px;
}

.slider {
  padding: 0;
}
.slider .slide-item {
  min-height: 550px;
  height: calc(100vh - 160px);
}
.slider .slide-item.bg-overlay:before {
  background-color: rgba(1, 29, 89, 0.15);
}
.slider .slide-item.bg-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
  background: linear-gradient(to bottom, rgba(0, 34, 108, 0.99) 0%, rgba(179, 189, 211, 0.1) 70%, rgba(255, 255, 255, 0) 100%);
}
.slider .slide-subtitle {
  display: inline-block;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.slider .slide-subtitle.highlighted {
  padding: 5px 13px;
  border-radius: 10px;
  background-color: var(--color-secondary);
}
.slider .slide-title {
  color: var(--color-white);
  margin-bottom: 25px;
}
.slider .slide-desc {
  color: var(--color-gray-100);
  max-width: 600px;
  margin-bottom: 30px;
}
.slider .slick-arrow:before {
  background-color: transparent;
}
.slider .slick-arrow:hover {
  box-shadow: none;
}
.slider .slick-arrow.slick-next:before {
  content: "\e949";
}
.slider .slick-arrow.slick-prev:before {
  content: "\e948";
}
.slider .slick-dots {
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
}
.slider .slick-dots li.slick-active button {
  background-color: var(--color-secondary);
}
.slider .cta-banner {
  padding: 50px;
}
.slider .cta-banner .cta-icon {
  font-size: 50px;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 28px;
}
.slider .cta-banner .icon-filled {
  background-color: var(--color-secondary);
}
.slider .cta-banner .slick-dots {
  position: static;
  text-align: left;
  margin-left: -17px;
}

@media (min-width: 1200px) {
  .slider .slide-title {
    font-size: 75px;
    line-height: 1.1;
    font-weight: 700;
  }
  .slider .slide-desc {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
  }
  .slider .slick-arrow:before {
    font-size: 50px;
  }
  .slider .slick-arrow.slick-next {
    right: -5px;
  }
  .slider .slick-arrow.slick-prev {
    left: -5px;
  }
  .slider .btn {
    min-width: 190px;
  }
  .slider .btn.btn-outlined {
    line-height: 58px;
  }
  .slider .btn.btn-xl {
    min-width: 225px;
  }
} 
@media (min-width: 1400px) {
  .slider .slick-arrow.slick-prev {
    left: 30px;
  }
  .slider .slick-arrow.slick-next {
    right: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .slider .slide-item {
    padding-right: 50px;
    padding-left: 50px;
  }
  .slider .slick-arrow.slick-prev {
    left: 10px;
  }
  .slider .slick-arrow.slick-next {
    right: 10px;
  }
}
/* Large Size Screens */
@media (min-width: 992px) and (max-width: 1200px) {
  .slider .slide-title {
    font-size: 65px;
  }
}
/* Medium Size Screens */
@media (min-width: 768px) and (max-width: 991px) {
  .slider .slide-title {
    font-size: 50px;
    margin-bottom: 10px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .header-transparent + .slider {
    margin-top: 0 !important;
  }
  .slider .slide-item {
    min-height: 0;
    padding: 100px 10px;
    height: auto !important;
  }
  .slider .slide-desc {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .slider .slick-arrow:before {
    font-size: 25px;
  }
  .slider .slick-arrow.slick-next {
    right: -20px;
  }
  .slider .slick-arrow.slick-prev {
    left: -20px;
  }
}
/*  Small Screens and tablets  */
@media (min-width: 576px) and (max-width: 767px) {
  .slider .slide-title {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 10px;
  }
}
/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 575px) {
  .slider .slide-title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .slider .btn {
    padding: 0 10px;
    margin-bottom: 10px;
  }
  .slider .slide-item {
    padding: 120px 10px 50px;
  }
  .slider .slide-subtitle.highlighted {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
  }
}
/*--------------------------
      Video
--------------------------*/
.video-btn {
  text-align: center;
  display: inline-flex;
  position: relative;
  padding-left: 88px;
  height: 88px;
  align-items: center;
}
.video-btn .video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 88px;
  line-height: 88px;
  border-radius: 50%;
  color: var(--color-white);
  background-color: var(--color-secondary);
  transition: all 0.3s linear;
}
.video-btn .video-player:before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.2);
}
.video-btn .video-player:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 30px;
  width: 30px;
  z-index: 3;
  border-radius: 50%;
  animation: ripple 3s infinite;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
}
.video-btn:hover .video-player {
  background-color: var(--color-primary);
}
.video-btn .video-btn-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  margin-left: 22px;
}
.video-btn-primary .video-player {
  background-color: var(--color-primary);
}
.video-btn-primary:hover .video-player {
  background-color: var(--color-secondary);
}

.video-btn-white .video-player {
  color: var(--color-accent);
  background-color: var(--color-white) !important;
}
.video-btn-white .video-player-animation {
  border-color: var(--color-white) !important;
}

.video-btn-no-shadow .video-player:before {
  border: 0;
}

.video-banner {
  position: relative;
  z-index: 2;
}
.video-banner img {
  border-radius: 15px;
}
.video-banner .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-banner .video-btn-title {
  position: absolute;
  bottom: -30px;
  left: -7px;
  line-height: 1.5;
}

/*-----------------------
    Features
------------------------*/
.feature-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.3s linear;
}
.feature-item:last-of-type {
  margin-bottom: 0 !important;
}
.feature-item .feature-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-right: 30px;
  font-size: 8px;
  color: var(--color-primary);
  background-color: var(--color-green-100);
}
.feature-item .feature-title {
  font-size: 19px;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 18px;
}


@media (max-width: 991px) {
  .feature-item .feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
}
/* Mobile Phones and tablets  */
@media (min-width: 320px) and (max-width: 767px) {
  .feature-item .feature-content {
    padding: 20px;
  }
  .feature-item .feature-title {
    font-size: 16px !important;
    margin-bottom: 5px;
  }
  .feature-item .feature-desc {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
/*-----------------------
     fancybox 
------------------------*/
.fancybox-item {
  position: relative;
}
.fancybox-item .fancybox-icon {
  font-size: 45px;
  line-height: 1;
}
.fancybox-item .fancybox-desc {
  margin-bottom: 0;
}

.fancybox-layout1 .fancybox-item,
.fancybox-layout1 .fancybox-item .fancybox-icon,
.fancybox-layout1 .fancybox-item .fancybox-title,
.fancybox-layout1 .fancybox-item .fancybox-desc,
.fancybox-layout1 .fancybox-item .fancybox-title,
.fancybox-layout1 .fancybox-item .fancybox-desc,
.fancybox-layout1 .fancybox-item .btn .icon-outlined,

.fancybox-layout1 .certificates-container {
  margin-right: -20px;
  margin-left: -20px;
}
.fancybox-layout1 .fancybox-item {
  margin: 30px 0 0;
}
.fancybox-layout1 .fancybox-item .fancybox-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
  transform: translateY(101%);
}
.fancybox-layout1 .fancybox-item .fancybox-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(var(--color-secondary-rgb), 0.9);
}
.fancybox-layout1 .fancybox-item .fancybox-overlay img {
  height: 100%;
}
.fancybox-layout1 .fancybox-item:hover .fancybox-overlay {
  transform: translateY(0);
}
.fancybox-layout1 .fancybox-item:hover .fancybox-title,
.fancybox-layout1 .fancybox-item:hover .fancybox-desc {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
}
.fancybox-layout1 .fancybox-item:hover .btn {
  color: var(--color-white);
}
.fancybox-layout1 .fancybox-item:hover .btn .icon-outlined {
  color: var(--color-secondary);
  border-color: var(--color-white);
  background-color: var(--color-white);
}


@media (max-width: 991px) {
  .fancybox-layout1 .fancybox-item {
    margin: 0 0 20px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .fancybox-item .fancybox-icon {
    font-size: 40px;
  }
  .fancybox-item .fancybox-title {
    font-size: 15px !important;
    margin-bottom: 5px;
  }
}
/*--------------------
     Team
---------------------*/


/*--------------------
     Team Layout 1 Hover Effects
---------------------*/


/* Mobile Phones and tablets */

/*----------------------------
     Testimonial
------------------------------*/


/* Mobile Phones and tablets */

/*---------------------------
    Client
---------------------------*/
.client {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 90px;
}
.client img {
  padding: 0 15px;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.client:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.clients-light .client img {
  opacity: 0.8;
  filter: brightness(100);
}

.certificates-container {
  margin-right: -20px;
  margin-left: -20px;
}
.certificates-container > [class*=col] {
  padding: 20px;
}
.certificates-container img {
  max-width: 100px;
  filter: brightness(100);
  transition: all 0.3s linear;
}
.certificates-container img:hover {
  transform: translateY(-8px);
}

/*--------------------
     Blog
-------------------*/
.post-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s linear;
}
.post-item .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.post-item .post-img img {
  width: 100%;
  transition: all 0.9s ease;
}
.post-item .post-title {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 15px;
}
.post-item .post-title a {
  color: var(--color-secondary);
}
.post-item .post-title a:hover {
  color: var(--color-primary);
}
.post-item .post-desc {
  margin-bottom: 25px;
}
.post-item .post-meta {
  margin-bottom: 33px;
}
.post-item .post-meta > * {
  position: relative;
  font-size: 13px;
  line-height: 1;
  margin-right: 8px;
  padding-right: 8px;
}
.post-item .post-meta > *:after {
  content: "-";
  position: absolute;
  top: 0;
  right: -2px;
  color: var(--bs-gray);
}
.post-item .post-meta > *:last-child {
  padding-right: 0;
  margin-right: 0;
}
.post-item .post-meta > *:last-child:after {
  display: none;
}
.post-item .post-meta-author {
  color: var(--color-secondary);
}
.post-item .post-meta-date {
  color: var(--bs-gray);
}
.post-item .post-body {
  position: relative;
  z-index: 3;
  padding: 37px 45px;
  transition: all 0.3s ease-in-out 0s;
}
.post-item .post-meta-cat {
  position: absolute;
  right: 40px;
  bottom: 30px;
  z-index: 2;
  display: flex;
}
.post-item .post-meta-cat a {
  position: relative;
  font-size: 12px;
  padding: 7px 15px;
  margin-left: 5px;
  border-radius: 6px;
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.post-item .post-meta-cat a:hover {
  background-color: var(--color-primary);
}
.post-item .btn-link {
  color: var(--color-secondary);
}
.post-item .btn-link .plus-icon {
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.post-item .btn-link:hover .plus-icon {
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
}
.post-item:hover {
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
}
.post-item:hover .post-img img {
  transform: scale(1.1) rotate(1deg);
}


.post-item-single {
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
}
.post-item-single:after {
  left: 45px;
  right: 45px;
  height: 6px;
  width: calc(100% - 90px);
}
.post-item-single .post-meta {
  margin-bottom: 13px;
}
.post-item-single .post-img {
  border-radius: 20px;
}


.blog-widget-title {
  font-size: 21px;
  margin-bottom: 24px;
}

.widget-nav .nav-icon {
  position: relative;
  max-width: 60px;
  flex: 0 0 60px;
  height: 60px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  border: 2px solid #eaeaea;
  transition: all 0.3s linear;
}
.widget-nav .nav-ttile {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--color-secondary);
  flex: 0 0 calc(100% - 80px);
  max-width: calc(100% - 80px);
  transition: all 0.3s linear;
}
.widget-nav .nav-next .nav-icon {
  margin-right: 20px;
}
.widget-nav .nav-prev .nav-icon {
  margin-left: 20px;
}
.widget-nav .nav-prev .nav-ttile {
  text-align: right;
}
.widget-nav .nav-next,
.widget-nav .nav-prev {
  flex: 0 0 160px;
  max-width: 160px;
}
.widget-nav .nav-next:hover .nav-icon,
.widget-nav .nav-prev:hover .nav-icon {
  color: var(--color-white);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.widget-nav .nav-next:hover .nav-ttile,
.widget-nav .nav-prev:hover .nav-ttile {
  color: var(--color-primary);
}


.comments-list .comment-item {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 2px solid #eaeaea;
  margin-bottom: 30px;
}
.comments-list .comment-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.comments-list .comment-item .comment-avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.comments-list .comment-item .comment-avatar img {
  border-radius: 5px;
}
.comments-list .comment-item .comment-content {
  padding-left: 120px;
}
.comments-list .comment-item .comment-content .comment-author {
  display: inline-flex;
  font-size: 18px;
  margin-right: 20px;
  margin-bottom: 0;
}
.comments-list .comment-item .comment-content .comment-date {
  font-size: 12px;
  line-height: 1;
  color: #616161;
}
.comments-list .comment-item .comment-content .comment-desc {
  margin-bottom: 6px;
  padding: 35px 40px;
  position: relative;
  margin: 10px 0;
  background-color: #e0f8f4;
}
.comments-list .comment-item .comment-content .comment-desc:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  border-style: solid;
  border-width: 0 20px 15px 0;
  border-color: transparent #e0f8f4 transparent transparent;
}
.comments-list .comment-item .comment-content .comment-reply {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}
.comments-list .comment-item .comment-content .comment-reply:hover {
  color: var(--color-secondary);
}
.comments-list .comment-item .nested-comment {
  border-top: 1px solid #eaeaea;
  padding: 30px 0 0 0;
  margin: 30px 0 0 90px;
}


@media (min-width: 768px) {
  .widget-nav-next {
    text-align: right;
    flex-direction: row-reverse;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .post-item .post-title {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .post-item .post-body {
    padding: 17px 20px;
  }
  .post-item .post-meta {
    margin-bottom: 13px;
  }
  .post-item .post-desc {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .post-item .post-meta-cat {
    right: 20px;
    bottom: 10px;
  }
  .post-item .plus-icon {
    font-size: 18px;
  }
                .widget-nav .nav-icon {
    max-width: 40px;
    flex: 0 0 40px;
    height: 40px;
  }
  .widget-nav .nav-next .nav-icon {
    margin-right: 10px;
  }
  .widget-nav .nav-prev .nav-icon {
    margin-left: 10px;
  }
  .widget-nav .nav-ttile {
    flex: 0 0 calc(100% - 50px);
    max-width: calc(100% - 50px);
  }
  .comments-list .comment-item .comment-avatar {
    width: 40px;
    height: 40px;
  }
  .comments-list .comment-item .comment-content {
    padding-left: 60px;
  }
  .comments-list .comment-item .comment-content .comment-desc {
    font-size: 13px;
    padding: 10px;
  }
  .comments-list .comment-item .nested-comment {
    padding: 20px 0 0 0;
    margin: 20px 0 0 40px;
  }
  }
/*----------------------------
    Contact
----------------------------*/
.contact-panel {
  position: relative;
  z-index: 2;
  padding: 60px;
  border-radius: 15px;
  background-color: var(--color-white);
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.1);
}
.contact-panel .panel-header {
  padding: 35px 40px;
  border-radius: 10px;
  background-color: var(--color-secondary);
}
.contact-panel .panel-header .panel-title {
  font-size: 20px;
}

.map iframe {
  width: 100%;
}


.contact-panel-title {
  font-size: 24px;
  margin-bottom: 14px;
}


.login-form {
  margin: auto;
  padding: 60px;
  max-width: 400px;
  border-radius: 20px;
  background-color: var(--color-white);
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
}

/* Mobile Phones & tablets and Small Screens */
@media (max-width: 992px) {
  .contact-panel {
    padding: 20px;
  }
  .contact-panel .contact-panel-desc {
    font-size: 13px;
    line-height: 23px;
  }
}
/*--------------------------
        pricing
--------------------------*/
[class*=pricing-widget-layout] {
  padding: 40px;
  border-radius: 12px;
}
[class*=pricing-widget-layout] .pricing-title {
  font-size: 19px;
}
[class*=pricing-widget-layout] .pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dcdee2;
}
[class*=pricing-widget-layout] .pricing-list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
[class*=pricing-widget-layout] .pricing-list li .price {
  line-height: 1;
  padding: 6px 10px;
  border-radius: 5px;
}

.pricing-widget-layout1 {
  background-color: #f2f4f8;
}
.pricing-widget-layout1 .pricing-list li .price {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.pricing-widget-layout2 {
  background-color: #e0f8f4;
}
.pricing-widget-layout2 .pricing-list li .price {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.pricing-widget-layout3 {
  border: 2px solid #dfdfea;
}
.pricing-widget-layout3 .pricing-list li .price {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.widget-plan {
  border-radius: 13px;
  border: 2px solid #e6e8eb;
}
.widget-plan .widget-body {
  padding: 50px;
}
.widget-plan .widget-footer {
  padding: 50px;
  border-top: 2px solid #e6e8eb;
}
.widget-plan .plan-price {
  line-height: 1;
  font-size: 50px;
  color: #435BA1;
}
.widget-plan .plan-price .period {
  font-size: 14px;
}
.widget-plan .plan-items {
  padding: 30px;
  border-radius: 10px;
  background-color: #e0f8f4;
}
.widget-plan .plan-items .feature-title {
  color: var(--color-secondary);
}

/* Mobile Phones & tablets and Small Screens */
@media (max-width: 992px) {
  [class*=pricing-widget-layout] {
    padding: 20px;
    border-radius: 8px;
  }
  [class*=pricing-widget-layout] .pricing-title {
    font-size: 16px;
  }
  [class*=pricing-widget-layout] .pricing-list li {
    font-size: 14px;
  }
  [class*=pricing-widget-layout] .pricing-list li .price {
    padding: 3px 6px;
  }
}
/*--------------------
    Sidebar
----------------------*/
.sidebar.sticky-top {
  top: 100px;
}

.widget {
  position: relative;
  padding: 50px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
}
.widget:after {
  content: "";
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 0;
  height: 6px;
  background-color: var(--color-primary);
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .widget-title {
  font-size: 22px;
  margin-bottom: 23px;
}


.widget-services ul li {
  margin-bottom: 4px;
}
.widget-services ul li:last-child {
  margin-bottom: 0;
}
.widget-services ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  padding: 22px 30px;
  text-transform: capitalize;
  border-radius: 50px;
  font-family: var(--font-primary);
  color: var(--color-secondary);
  background-color: var(--color-white);
  transition: all 0.4s ease;
}
.widget-services ul li a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.widget-tags ul {
  display: flex;
  flex-wrap: wrap;
}
.widget-tags ul li a {
  display: block;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  padding: 9px 12px;
  margin: 0 10px 10px 0;
  border-radius: 7px;
  color: var(--color-white);
  background-color: var(--color-secondary);
  transition: all 0.4s ease;
}
.widget-tags ul li a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

/*widget posts*/
.widget-post-item {
  margin-bottom: 25px;
}
.widget-post-item:last-of-type {
  margin-bottom: 0;
}
.widget-post-item .widget-post-title {
  font-size: 16px;
  margin-bottom: 0;
}
.widget-post-item .widget-post-title a {
  color: var(--color-accent);
}
.widget-post-item:hover .widget-post-title a {
  color: var(--color-primary);
}
.widget-post-item .widget-post-img {
  flex: 0 0 80px;
  max-width: 80px;
  margin-right: 15px;
}
.widget-post-item .widget-post-img img {
  border-radius: 5px;
}
.widget-post-item .widget-post-date {
  line-height: 1;
  font-size: 13px;
  margin-bottom: 4px;
}

/*widget products*/
.widget-poducts .widget-product-item {
  margin-bottom: 20px;
}
.widget-poducts .widget-product-item:last-of-type {
  margin-bottom: 0;
}
.widget-poducts .widget-product-item .widget-product-title {
  font-size: 15px;
  margin-bottom: 0;
}
.widget-poducts .widget-product-item .widget-product-title a {
  color: var(--color-accent);
}
.widget-poducts .widget-product-item:hover .widget-product-title a {
  color: var(--color-primary);
}
.widget-poducts .widget-product-item .widget-product-img {
  margin-right: 20px;
  flex: 0 0 60px;
  max-width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 2px;
}
.widget-poducts .widget-product-item .widget-product-img img {
  border-radius: 5px;
}
.widget-poducts .widget-product-item .widget-product-price {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
}

/* Widget Help */
.widget-banner .widget-icon {
  font-size: 55px;
  margin-bottom: 4px;
}
.widget-banner .widget-icon,
.widget-banner .widget-title {
  color: var(--color-white);
}
.widget-banner .widget-desc {
  font-size: 16px;
  color: var(--color-gray-100);
  margin-bottom: 90px;
}
.widget-banner .phone-number {
  font-size: 20px;
  margin-top: 5px;
  color: var(--color-white) !important;
}

/* Widget schedule */
.widget-schedule {
  background-color: #f6f6f6;
}
.widget-schedule .widget-icon {
  color: var(--color-secondary);
  font-size: 50px;
  margin-bottom: 6px;
}


/* widget member */

/* Widget download */
.widget-download .btn {
  height: 80px;
  border-radius: 0;
  -webkit-clip-path: none;
          clip-path: none;
  padding: 0;
  justify-content: flex-start;
  text-align: center;
}
.widget-download .btn:not(:last-child) {
  margin-bottom: 20px;
}
.widget-download .btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  color: var(--color-white);
  font-size: 30px;
  margin-right: 10px;
  margin: 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}
.widget-download .btn .btn-text {
  flex: 1;
}

/* Widget Filter */
.widget-filter .ui-slider {
  background-color: rgba(34, 34, 34, 0.06);
  border-radius: 0;
  height: 4px;
  margin-bottom: 18px;
}
.widget-filter .ui-slider-range {
  height: 4px;
  background-color: var(--color-primary);
}
.widget-filter .price-output {
  flex: 0 0 50%;
  max-width: 50%;
}
.widget-filter label {
  color: var(--bs-gray);
  font-size: 14px;
  margin-bottom: 0;
}
.widget-filter input {
  background-color: transparent;
  color: var(--bs-gray);
  font-size: 14px;
  border: none;
}
.widget-filter .btn-filter {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-secondary);
}
.widget-filter .btn-filter:hover {
  color: var(--color-primary);
}

.ui-slider {
  position: relative;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-widget.ui-widget-content {
  border: none;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal .ui-slider-handle {
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--color-primary);
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.sidebar-layout2 .widget {
  padding: 0;
  box-shadow: none;
  border-bottom: 0;
  background-color: transparent;
}
.sidebar-layout2 .widget:after {
  display: none;
}

@media (min-width: 1200px) {
  .sidebar.has-marign-right,
  .sidebar-layout2.has-marign-right {
    margin-right: 40px;
  }
  .sidebar.has-marign-left,
  .sidebar-layout2.has-marign-left {
    margin-left: 40px;
  }
  }
@media (min-width: 767px) and (max-width: 992px) {
  .widget {
    padding: 20px;
    margin-bottom: 30px;
  }
  .widget:after {
    left: 20px;
    right: 20px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .widget {
    padding: 15px;
  }
  .widget:after {
    left: 15px;
    right: 15px;
  }
  .widget .widget-title {
    margin-bottom: 14px;
  }
    }
/*----------------------
    About
-----------------------*/


/* Extra Small Devices */


/*-----------------------
    Services 
--------------------------*/
.service-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.08);
  transition: all 0.4s ease;
}
.service-item .service-body {
  position: relative;
  background-color: var(--color-white);
}
.service-item .service-category {
  display: inline-flex;
  margin-bottom: 13px;
}
.service-item .service-category a {
  position: relative;
  color: var(--color-primary);
  font-size: 14px;
  padding-right: 7px;
}
.service-item .service-category a:after {
  content: ",";
  position: absolute;
  top: 0;
  right: 2px;
  color: var(--color-primary);
}
.service-item .service-category a:last-of-type {
  padding-right: 0;
}
.service-item .service-category a:last-of-type:after {
  display: none;
}
.service-item .service-category a:hover {
  color: var(--color-secondary);
}
.service-item .service-icon {
  color: var(--color-secondary);
  font-size: 50px;
  line-height: 1;
  margin-bottom: 25px;
  transition: all 0.3s linear;
}
.service-item .service-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.service-item .service-img img {
  width: 100%;
  transition: all 0.3s linear;
}
.service-item .service-title {
  font-size: 19px;
  margin-bottom: 18px;
}
.service-item .service-title a {
  color: var(--color-secondary);
}
.service-item .service-desc {
  margin-bottom: 0;
}
.service-item .service-title,
.service-item .service-desc,
.service-item .service-category a {
  position: relative;
  z-index: 2;
  transition: all 0.3s linear;
}
.service-item .service-shape {
  display: flex;
  position: absolute;
  top: -13px;
  left: 50px;
  z-index: 2;
  opacity: 0;
  filter: url(#rounded-clippath-filter-small);
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.service-item .hexagon-clippath {
  width: 30px;
  height: 26px;
  margin-right: 3px;
  background-color: var(--color-primary);
}
.service-item .hexagon-clippath2 {
  width: 48px;
  height: 26px;
  background-color: var(--color-secondary);
}
.service-item .btn-link.btn-primary:hover .plus-icon {
  background-color: var(--color-secondary);
}
.service-item:hover {
  box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.12);
}
.service-item:hover .service-img img {
  transform: scale(1.15);
}
.service-item:hover .service-shape {
  opacity: 1;
  transform: scale(1);
}

.services-layout1 .service-item .service-title {
  margin-bottom: 0;
}


[class*=services-layout] .slick-slide {
  margin: 15px;
  transition: opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.4s ease;
}
[class*=services-layout] .slick-slide:not(.slick-active) {
  opacity: 0;
  visibility: hidden;
}
[class*=services-layout] .slick-list {
  margin: -15px;
  overflow: visible;
}

.list-filter li {
  margin-right: 30px;
}
.list-filter li:last-child {
  margin-right: 0;
}
.list-filter .filter {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-secondary);
  padding-bottom: 3px;
}
.list-filter .filter:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: 0.4s ease;
}
.list-filter .filter.active, .list-filter .filter:hover {
  color: var(--color-primary);
}
.list-filter .filter.active:before, .list-filter .filter:hover:before {
  width: 100%;
}

.mix {
  display: none;
}


@media (min-width: 1400px) {
  [class*=services-layout] .slick-list {
    margin: -20px;
  }
  [class*=services-layout] .slick-slide {
    margin: 20px;
  }
}
@media (min-width: 1200px) {
  .service-body {
    padding: 38px 50px;
  }
}

@media (max-width: 1199px) {
  .service-item .service-body {
    padding: 18px 20px !important;
  }
}
/* Mobile Phones & tablets and Small Screens */
@media (max-width: 991px) {
  .service-item .service-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .service-item .service-desc {
    font-size: 14px;
  }
  .service-item .service-category {
    margin-bottom: 15px;
  }
  .list-filter li {
    margin-right: 15px;
  }
}
/*-------------------------
   gallery
-------------------------*/

.gallery .slick-list {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}
.gallery .slick-slide {
  margin: 0;
}
.gallery .slick-arrow.slick-next {
  right: -50px;
}
.gallery .slick-arrow.slick-prev {
  left: -50px;
}

@media (min-width: 320px) and (max-width: 575px) {
  .gallery .slick-arrow.slick-next {
    right: 0;
  }
  .gallery .slick-arrow.slick-prev {
    left: 0;
  }
}
/*------------------------
    Shop
--------------------------*/
.product-item {
  position: relative;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: all 0.3s linear;
}
.product-item .product-action {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.6s ease;
}
.product-item .product-info {
  padding: 28px 0;
}
.product-item .product-action .btn {
  border-radius: 5px;
}
.product-item:hover .product-action {
  opacity: 1;
  bottom: 30px;
}

.product-title {
  font-size: 20px;
  margin-bottom: 8px;
}
.product-title a {
  color: var(--color-secondary);
}
.product-title a:hover {
  color: var(--color-primary);
}

.product-price {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

.product-img {
  position: relative;
  overflow: hidden;
}
.product-img img {
  border-radius: 6px;
}

/* Shop Single */
.product-item-single .product-title {
  font-size: 29px;
  margin-bottom: 15px;
}
.product-item-single .product-rating {
  margin-right: 37px;
}
.product-item-single .product-rating i {
  font-size: 15px;
}
.product-item-single .product-rating i.active {
  color: var(--color-secondary);
}
.product-item-single .product-img img {
  border-radius: 15px;
}
.product-item-single .product-price {
  font-size: 22px;
}
.product-item-single .product-desc {
  font-size: 15px;
}
.product-item-single .social-icons li a {
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.product-details li {
  line-height: 2;
}
.product-details li strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  min-width: 120px;
  display: inline-block;
}

.product-meta-review {
  font-size: 14px;
}
.product-meta-review a {
  position: relative;
  color: var(--bs-gray);
  padding-left: 10px;
}
.product-meta-review a:hover {
  color: var(--color-primary);
}
.product-meta-review a:before {
  content: "/";
  position: absolute;
  top: 0;
  left: 0;
}

.product-meta-details li {
  display: flex;
  font-size: 15px;
  margin-bottom: 13px;
}
.product-meta-details li:last-child {
  margin-bottom: 0;
}
.product-meta-details li span:first-of-type {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 16px;
  min-width: 120px;
}

.related-products-title {
  font-size: 24px;
}

.product-quantity-title {
  margin-bottom: 0;
  display: inline-block;
  margin-right: 10px;
}

.quantity-input-wrap {
  display: inline-flex;
  position: relative;
  width: 80px;
  max-height: 50px;
  border-radius: 3px;
  border: 2px solid #e6e8eb;
}
.quantity-input-wrap i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: var(--color-accent);
  cursor: pointer;
  position: absolute;
  right: 0;
  font-style: normal;
  font-size: 9px;
  border-left: 2px solid #e6e8eb;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.quantity-input-wrap .decrease-qty {
  bottom: 0;
  border-top: 2px solid #e6e8eb;
}
.quantity-input-wrap .qty-input {
  background-color: transparent;
  text-align: center;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 16px;
  padding: 0;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 0;
  outline: 0;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.quantity-input-wrap .qty-input::-webkit-inner-spin-button,
.quantity-input-wrap .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.product-quantity .btn {
  height: 50px;
  -webkit-clip-path: none;
          clip-path: none;
}

.product-details .nav-tabs {
  border-bottom: 3px solid #e6e6e6;
}
.product-details .nav-tabs .nav-link {
  margin-bottom: -2px;
}
.product-details .tab-content {
  padding-top: 20px;
}
.product-details .tab-content p {
  font-size: 15px;
}
.product-details .tab-content p:last-child {
  margin-bottom: 0;
}
.product-details .reviews-form .form-control {
  height: 50px;
}

.magnifier {
  z-index: 3000 !important;
}

.sorting-options .nice-select {
  width: auto;
  min-width: 230px;
  height: 50px;
  line-height: 50px;
  margin-bottom: 0;
}

/* Shopping Cart */


/* Mobile Phones */

/*-------------------------
    Work Process
-------------------------*/


/* Mobile Phones and tablets */
/*# sourceMappingURL=style.css.map */


/* Section */
.timeline-section {
  padding: 10px 20px;
  background: #fff;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.timeline-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 60px;
}

/* Timeline */
/* Section */
.timeline-section {
  padding: 20px 20px;
  background: #fff;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.timeline-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 60px;
}

/* Timeline wrapper */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


/* Item */
.timeline-item {
  width: 18%;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.6s ease forwards;
}

/* Sequential animation */
.timeline-item:nth-child(1) { animation-delay: 0.3s; }
.timeline-item:nth-child(2) { animation-delay: 0.5s; }
.timeline-item:nth-child(3) { animation-delay: 0.7s; }
.timeline-item:nth-child(4) { animation-delay: 0.9s; }
.timeline-item:nth-child(5) { animation-delay: 1.1s; }
.timeline-item:nth-child(6) { animation-delay: 1.3s; }
.timeline-item:nth-child(7) { animation-delay: 1.5s; }
.timeline-item:nth-child(8) { animation-delay: 1.7s; }
.timeline-item:nth-child(9) { animation-delay: 1.9s; }
.timeline-item:nth-child(10){ animation-delay: 2.1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Number circle */
.timeline-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border: 3px solid var(--accent);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
}

/* Subtle glow */
.timeline-number::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Icon */
.timeline-icon {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Text */
.timeline-title-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 13px;
  color: #555;
}

/* Hover */
.timeline-item:hover .timeline-number {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.15);
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
  .timeline::before { display: none; }
  .timeline-item { width: 45%; margin-bottom: 40px; }
}

@media (max-width: 576px) {
  .timeline-item { width: 100%; }
}


/* ============================================================
   Blog List Page
   ============================================================ */

/* ── Section ── */
.blog-list-section {
  padding: 80px 0 60px;
  background: #f8f9fc;
}

/* ── Filter Bar ── */
.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 2px solid #e8ecf4;
}
.blog-filter-bar span {
  font-size: 13px;
  font-weight: 600;
  color: #002678;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-right: 6px;
}
.filter-btn {
  padding: 6px 18px;
  border-radius: 20px;
  border: 2px solid #e0e5f0;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.filter-btn:hover,
.filter-btn.active {
  background: #21cdad;
  border-color: #21cdad;
  color: #fff;
}

/* ── Post List Item ── */
.post-list-item {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 2px 14px rgba(0,38,120,.07);
  transition: transform .28s, box-shadow .28s;
}
.post-list-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,38,120,.13);
}

/* Thumbnail */
.post-list-thumb {
  position: relative;
  flex: 0 0 260px;
  max-width: 260px;
  overflow: hidden;
}
.post-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.post-list-item:hover .post-list-thumb img {
  transform: scale(1.06);
}
.post-list-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.post-list-cat a {
  background: #21cdad;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s;
}
.post-list-cat a:hover {
  background: #002678;
}
.post-list-cat a.cat-activity {
  background: #002678;
}
.post-list-cat a.cat-activity:hover {
  background: #21cdad;
}
.post-list-cat a.cat-research {
  background: #152f56;
}
.post-list-cat a.cat-event {
  background: #e07b39;
}

/* Content */
.post-list-body {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.post-list-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.post-list-meta .meta-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
}
.post-list-meta .meta-date i {
  color: #21cdad;
  font-size: 12px;
}
.post-list-meta .meta-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
}
.post-list-meta .meta-author i {
  color: #002678;
  font-size: 12px;
}
.post-list-meta .meta-views {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #bbb;
  margin-left: auto;
}
.post-list-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 12px;
}
.post-list-title a {
  color: #152f56;
  text-decoration: none;
  transition: color .2s;
}
.post-list-title a:hover {
  color: #21cdad;
}
.post-list-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.post-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eef1f8;
  padding-top: 14px;
  margin-top: 4px;
}
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #21cdad;
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s, gap .2s;
}
.btn-read-more:hover {
  color: #002678;
  gap: 12px;
}
.btn-read-more i {
  font-size: 11px;
}
.post-list-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.post-list-tags a {
  font-size: 11px;
  color: #888;
  background: #f0f3fa;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.post-list-tags a:hover {
  background: #21cdad;
  color: #fff;
}

/* ── Sidebar ── */
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 14px rgba(0,38,120,.06);
}
.sidebar-widget-title {
  font-size: 16px;
  font-weight: 700;
  color: #152f56;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #21cdad;
  position: relative;
}

/* Search */
.sidebar-search {
  display: flex;
  border: 2px solid #e0e5f0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.sidebar-search:focus-within {
  border-color: #21cdad;
}
.sidebar-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  background: transparent;
}
.sidebar-search button {
  background: #21cdad;
  border: none;
  padding: 0 16px;
  color: #fff;
  cursor: pointer;
  transition: background .2s;
}
.sidebar-search button:hover {
  background: #002678;
}

/* Categories */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list li {
  border-bottom: 1px solid #f0f3fa;
}
.category-list li:last-child {
  border-bottom: none;
}
.category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}
.category-list li a:hover {
  color: #21cdad;
}
.category-list li a span.cat-count {
  background: #f0f3fa;
  color: #888;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 20px;
  transition: background .2s, color .2s;
}
.category-list li a:hover span.cat-count {
  background: #21cdad;
  color: #fff;
}
.category-list li a i {
  color: #21cdad;
  margin-right: 8px;
  font-size: 12px;
  width: 16px;
}

/* Recent Posts */
.recent-post-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f3fa;
  align-items: flex-start;
}
.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.recent-post-thumb {
  flex: 0 0 70px;
  height: 60px;
  border-radius: 7px;
  overflow: hidden;
}
.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-post-info h6 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 5px;
  line-height: 1.4;
}
.recent-post-info h6 a {
  color: #152f56;
  text-decoration: none;
  transition: color .2s;
}
.recent-post-info h6 a:hover {
  color: #21cdad;
}
.recent-post-info span {
  font-size: 12px;
  color: #aaa;
}
.recent-post-info span i {
  color: #21cdad;
  margin-right: 4px;
}

/* Tags Cloud */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags-cloud a {
  font-size: 12px;
  padding: 5px 14px;
  border: 1px solid #e0e5f0;
  border-radius: 20px;
  color: #666;
  text-decoration: none;
  transition: all .2s;
}
.tags-cloud a:hover {
  background: #21cdad;
  border-color: #21cdad;
  color: #fff;
}

/* Stats Banner */
.sidebar-stats {
  background: linear-gradient(135deg, #002678 0%, #152f56 100%);
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 28px;
  color: #fff;
  text-align: center;
}
.sidebar-stats h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #21cdad;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-item {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 14px 8px;
}
.stat-item .stat-num {
  font-size: 26px;
  font-weight: 700;
  color: #21cdad;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}

/* Buy Data CTA */
.sidebar-cta {
  background: linear-gradient(135deg, #21cdad 0%, #17a88e 100%);
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 28px;
  color: #fff;
  text-align: center;
}
.sidebar-cta i {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
  color: rgba(255,255,255,.85);
}
.sidebar-cta h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}
.sidebar-cta .btn-cta {
  display: inline-block;
  background: #fff;
  color: #21cdad;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.sidebar-cta .btn-cta:hover {
  background: #002678;
  color: #fff;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 2px solid #e8ecf4;
}
.blog-pagination .page-info {
  font-size: 13px;
  color: #888;
}
.blog-pagination .pagination {
  gap: 6px;
}
.blog-pagination .pagination li a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid #e0e5f0;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.blog-pagination .pagination li a:hover,
.blog-pagination .pagination li a.current {
  background: #21cdad;
  border-color: #21cdad;
  color: #fff;
}

/* Results count bar */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.results-bar p {
  font-size: 14px;
  color: #888;
  margin: 0;
}
.results-bar p strong {
  color: #002678;
}
.sort-select {

  border: 2px solid #e0e5f0;
  border-radius: 8px;
  font-size: 13px;
  color: #555;
  background: #fff;
  outline: none;
  cursor: pointer;
}
.sort-select:focus {
  border-color: #21cdad;
}

/* Blog list responsive */
@media (max-width: 768px) {
  .post-list-item {
    flex-direction: column;
  }
  .post-list-thumb {
    flex: 0 0 220px;
    max-width: 100%;
    height: 220px;
  }
  .post-list-body {
    padding: 20px;
  }
}


/* ============================================================
   Blog Single Post Page
   ============================================================ */

.single-post-section {
  padding: 70px 0 60px;
  background: #f8f9fc;
}

/* ── Post Card Wrapper ── */
.single-post-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,38,120,.08);
  margin-bottom: 28px;
}

/* ── Hero Image ── */
.single-hero-wrap {
  position: relative;
  overflow: hidden;
  max-height: 460px;
}
.single-hero-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-hero-cats {
  position: absolute;
  bottom: 20px;
  left: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.single-hero-cats a {
  background: #21cdad;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s;
}
.single-hero-cats a:hover       { background: #002678; }
.single-hero-cats a.cat-activity { background: #002678; }
.single-hero-cats a.cat-activity:hover { background: #21cdad; }
.single-hero-cats a.cat-research { background: #152f56; }
.single-hero-cats a.cat-event    { background: #e07b39; }

/* ── Post Header ── */
.single-post-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid #eef1f8;
}
.single-post-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.single-post-meta-row .spm-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
}
.single-post-meta-row .spm-item i {
  font-size: 12px;
  color: #21cdad;
}
.single-post-meta-row .spm-item.author i { color: #002678; }
.single-post-meta-row .spm-item a {
  color: #555;
  text-decoration: none;
  transition: color .2s;
}
.single-post-meta-row .spm-item a:hover { color: #21cdad; }
.single-post-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: #152f56;
  margin: 0;
}

/* ── Post Body ── */
.single-post-body {
  padding: 30px 36px 28px;
}
.single-post-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 20px;
}
.single-post-body blockquote {
  margin: 28px 0;
  padding: 20px 28px;
  background: #f4fbf9;
  border-left: 4px solid #21cdad;
  border-radius: 0 8px 8px 0;
}
.single-post-body blockquote p {
  font-size: 16px;
  font-style: italic;
  color: #152f56;
  margin: 0;
  line-height: 1.7;
}
.post-inline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.post-inline-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 200px;
  display: block;
}

/* ── Tags & Share ── */
.post-tags-share {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 36px;
  border-top: 1px solid #eef1f8;
}
.post-tags-share .pts-label {
  font-size: 12px;
  font-weight: 700;
  color: #152f56;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
  display: block;
}
.post-tags-share .pts-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.post-tags-share .pts-tags a {
  font-size: 12px;
  padding: 5px 14px;
  border: 1px solid #e0e5f0;
  border-radius: 20px;
  color: #666;
  text-decoration: none;
  transition: all .2s;
}
.post-tags-share .pts-tags a:hover {
  background: #21cdad;
  border-color: #21cdad;
  color: #fff;
}
.post-tags-share .pts-share {
  text-align: right;
}
.pts-share-icons {
  display: flex;
  gap: 10px;
}
.pts-share-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f3fa;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.pts-share-icons a:hover          { background: #21cdad; color: #fff; }
.pts-share-icons a.share-fb:hover { background: #3b5998; color: #fff; }
.pts-share-icons a.share-tw:hover { background: #1da1f2; color: #fff; }
.pts-share-icons a.share-yt:hover { background: #ff0000; color: #fff; }
.pts-share-icons a.share-tg:hover { background: #0088cc; color: #fff; }
.pts-share-icons a.share-ln:hover { background: #0077b5; color: #fff; }

/* ── Prev / Next Nav ── */
.single-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.spn-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 2px 14px rgba(0,38,120,.07);
  text-decoration: none;
  transition: box-shadow .25s, transform .25s;
}
.spn-btn:hover {
  box-shadow: 0 6px 24px rgba(0,38,120,.14);
  transform: translateY(-3px);
}
.spn-btn.spn-next { justify-content: flex-end; text-align: right; }
.spn-btn .spn-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0f3fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #21cdad;
  font-size: 14px;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.spn-btn:hover .spn-icon {
  background: #21cdad;
  color: #fff;
}
.spn-btn .spn-text span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #21cdad;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 4px;
}
.spn-btn .spn-text strong {
  font-size: 13px;
  color: #152f56;
  line-height: 1.4;
  font-weight: 600;
}

/* ── Author Box ── */
.single-author-card {
  display: flex;
  gap: 22px;
  background: #fff;
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 2px 14px rgba(0,38,120,.07);
  margin-bottom: 28px;
  align-items: flex-start;
}
.sac-avatar {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #21cdad;
}
.sac-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sac-info .sac-label {
  font-size: 11px;
  font-weight: 700;
  color: #21cdad;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 4px;
  display: block;
}
.sac-info h5 {
  font-size: 17px;
  font-weight: 700;
  color: #152f56;
  margin: 0 0 8px;
}
.sac-info p {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
  margin-bottom: 12px;
}
.sac-socials {
  display: flex;
  gap: 8px;
}
.sac-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f3fa;
  color: #555;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.sac-socials a:hover { background: #21cdad; color: #fff; }

/* ── Comments ── */
.single-comments-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 30px 36px;
  box-shadow: 0 2px 14px rgba(0,38,120,.07);
  margin-bottom: 28px;
}
.section-heading-sm {
  font-size: 18px;
  font-weight: 700;
  color: #152f56;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid #21cdad;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading-sm .count-badge {
  background: #21cdad;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
}
.comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-card {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f3fa;
  align-items: flex-start;
}
.comment-card:last-child { border-bottom: none; }
.comment-avatar {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e8ecf4;
}
.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment-body { flex: 1; }
.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.comment-meta h6 {
  font-size: 14px;
  font-weight: 700;
  color: #152f56;
  margin: 0;
}
.comment-meta .comment-date {
  font-size: 12px;
  color: #aaa;
}
.comment-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
}
.comment-reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #21cdad;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .2s;
}
.comment-reply-btn:hover { color: #002678; }
.comment-reply-btn i { font-size: 10px; }
.nested-comments {
  margin-top: 14px;
  padding-left: 24px;
  border-left: 2px solid #eef1f8;
  list-style: none;
}

/* ── Comment Form ── */
.comment-form-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 30px 36px;
  box-shadow: 0 2px 14px rgba(0,38,120,.07);
}
.comment-form-wrap .form-control {
  border: 2px solid #e0e5f0;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  color: #333;
  transition: border-color .2s;
}
.comment-form-wrap .form-control:focus {
  border-color: #21cdad;
  box-shadow: none;
  outline: none;
}
.comment-form-wrap textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.btn-submit-comment {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #21cdad;
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-submit-comment:hover {
  background: #002678;
  transform: translateY(-2px);
}

/* ── Single post responsive ── */
@media (max-width: 768px) {
  .single-post-header,
  .single-post-body,
  .post-tags-share { padding-left: 20px; padding-right: 20px; }
  .single-post-title { font-size: 20px; }
  .post-inline-grid { grid-template-columns: 1fr; }
  .single-post-nav { flex-direction: column; }
  .single-author-card { flex-direction: column; align-items: center; text-align: center; }
  .sac-socials { justify-content: center; }
  .single-comments-wrap,
  .comment-form-wrap { padding: 22px 18px; }
}

/* ============================================================
   About Us Page
   ============================================================ */

/* Shared labels */
.au-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #21cdad;
  margin-bottom: 14px;
}
.au-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #21cdad;
  flex-shrink: 0;
}
.au-label-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.au-label-light::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #21cdad;
  flex-shrink: 0;
}
.au-title {
  font-size: 34px;
  font-weight: 700;
  color: #002678;
  line-height: 1.3;
  margin-bottom: 20px;
}
.au-title-light {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* ── Section 1: Mission & Vision ── */
.au-about-section {
  background: #f5f7fb;
  padding: 90px 0 80px;
}
.au-img-frame {
  position: relative;
  padding: 0 0 32px 32px;
}
.au-img-frame::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 75%;
  border-left: 3px solid #21cdad;
  border-bottom: 3px solid #21cdad;
  border-radius: 0 0 0 6px;
  pointer-events: none;
}
.au-main-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,38,120,0.14);
}
.au-img-badge {
  position: absolute;
  bottom: 8px;
  right: 0;
  width: 68px;
  height: 68px;
  background: #21cdad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(33,205,173,0.45);
}
.au-img-badge i {
  font-size: 26px;
  color: #fff;
}
.au-content-pad {
  padding-left: 20px;
}
.au-lead {
  font-size: 15px;
  line-height: 1.85;
  color: #5a6070;
  border-left: 3px solid #21cdad;
  padding-left: 16px;
  margin-bottom: 28px;
}
.au-mv-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border-left: 4px solid #21cdad;
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(0,38,120,0.07);
  transition: box-shadow 0.3s;
}
.au-mv-card:hover {
  box-shadow: 0 8px 30px rgba(0,38,120,0.13);
}
.au-mv-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(33,205,173,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.au-mv-icon i {
  font-size: 15px;
  color: #21cdad;
}
.au-mv-title {
  font-size: 16px;
  font-weight: 700;
  color: #002678;
  margin-bottom: 6px;
}
.au-mv-text {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

/* ── Section 2: Why Choose Us ── */
.au-why-section {
  padding: 80px 0 70px;
}
.au-why-header {
  margin-bottom: 48px;
}
.au-why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 26px 24px;
  height: 100%;
  transition: background 0.3s, border-color 0.3s;
}
.au-why-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(33,205,173,0.45);
}
.au-why-dot {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #21cdad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.au-why-dot i {
  font-size: 13px;
  color: #fff;
}
.au-why-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin: 0;
  padding-top: 6px;
}
.au-certs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.au-certs img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity 0.3s;
}
.au-certs img:hover {
  opacity: 1;
}

/* ── Section 4: Core Services ── */
.au-services-section {
  position: relative;
}
.au-services-top {
  padding-top: 80px;
  padding-bottom: 60px;
}
.au-services-lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.au-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.au-svc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px;
  transition: background 0.3s;
}
.au-svc-item:hover {
  background: rgba(255,255,255,0.11);
}
.au-svc-item--full {
  grid-column: 1 / -1;
}
.au-svc-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(33,205,173,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.au-svc-icon i {
  font-size: 18px;
  color: #21cdad;
}
.au-svc-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.au-svc-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.62);
  margin: 0;
  line-height: 1.55;
}
.au-provider-strip {
  background: #fff;
  padding: 56px 0;
}
.au-provider-title {
  font-size: 22px;
  font-weight: 700;
  color: #002678;
  margin-bottom: 12px;
}
.au-provider-text {
  font-size: 15px;
  color: #5a6070;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 24px;
}
.au-certs-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.au-certs-light img {
  height: 64px;
  width: auto;
}

/* ── About page responsive ── */
@media (max-width: 991px) {
  .au-content-pad { padding-left: 0; margin-top: 40px; }
  .au-img-frame { padding: 0 0 24px 24px; }
  .au-title, .au-title-light { font-size: 28px; }
}
@media (max-width: 767px) {
  .au-about-section { padding: 60px 0 50px; }
  .au-why-section { padding: 60px 0 50px; }
  .au-services-grid { grid-template-columns: 1fr; }
  .au-svc-item--full { grid-column: auto; }
  .au-title, .au-title-light { font-size: 24px; }
}

/* ============================================================
   Team Page
   ============================================================ */
.tm-section {
  background: #f5f7fb;
  padding: 70px 0 50px;
}
.tm-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.tm-section-header p {
  max-width: 580px;
  margin: 0 auto;
  color: #5a6070;
  font-size: 15px;
  line-height: 1.75;
}
.tm-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,38,120,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 28px;
}
.tm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,38,120,0.14);
}
.tm-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef0f8;
}
.tm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.tm-card:hover .tm-photo img {
  transform: scale(1.06);
}
.tm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,38,120,0.78) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.tm-card:hover .tm-overlay {
  opacity: 1;
}
.tm-overlay a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  margin: 0 4px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.tm-overlay a:hover {
  background: #21cdad;
  border-color: #21cdad;
  color: #fff;
}
.tm-info {
  padding: 18px 20px 20px;
  border-top: 3px solid #21cdad;
}
.tm-name {
  font-size: 16px;
  font-weight: 700;
  color: #002678;
  margin-bottom: 4px;
  line-height: 1.3;
}
.tm-role {
  font-size: 13px;
  color: #21cdad;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ============================================================
   FAQs Page
   ============================================================ */
.faq-section {
  background: #fff;
  padding: 80px 0 70px;
}
.faq-header {
  text-align: center;
  margin-bottom: 52px;
}
.faq-header p {
  max-width: 560px;
  margin: 0 auto;
  color: #5a6070;
  font-size: 15px;
  line-height: 1.75;
}
.faq-accordion .accordion-item {
  border: 1px solid #e8ecf2 !important;
  border-radius: 10px !important;
  margin-bottom: 12px;
  background: #fff;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-accordion .accordion-item.opened {
  border-color: rgba(33,205,173,0.45) !important;
  box-shadow: 0 4px 18px rgba(33,205,173,0.1);
}
.faq-accordion .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  gap: 14px;
}
.faq-accordion .accordion-item.opened .accordion-header {
  background: #002678;
  border-radius: 10px 10px 0 0;
}
.faq-accordion .accordion-title {
  font-size: 15px;
  font-weight: 600;
  color: #002678;
  text-decoration: none !important;
  flex: 1;
  line-height: 1.4;
}
.faq-accordion .accordion-item.opened .accordion-title {
  color: #fff;
}
.faq-toggle-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(33,205,173,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.faq-toggle-icon::before {
  content: '+';
  font-size: 18px;
  color: #21cdad;
  font-weight: 400;
  line-height: 1;
}
.faq-accordion .accordion-item.opened .faq-toggle-icon {
  background: rgba(255,255,255,0.15);
}
.faq-accordion .accordion-item.opened .faq-toggle-icon::before {
  content: '\2212';
  color: #fff;
}
.faq-accordion .accordion-body {
  padding: 16px 22px 22px;
  font-size: 14.5px;
  color: #666;
  line-height: 1.75;
  border-top: 1px solid #eef0f5;
}
.faq-accordion .accordion-body p { margin: 0; }
.faq-sidebar-card {
  background: #002678;
  border-radius: 14px;
  padding: 36px 28px;
}
.faq-sidebar-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.faq-sidebar-card > p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 28px;
}
.faq-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.faq-contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(33,205,173,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-contact-icon i {
  font-size: 15px;
  color: #21cdad;
}
.faq-contact-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.faq-contact-value {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: block;
}
.faq-contact-value:hover { color: #21cdad; }
.faq-cta-btn {
  display: block;
  text-align: center;
  background: #21cdad;
  color: #fff !important;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  margin-top: 26px;
  transition: background 0.2s;
}
.faq-cta-btn:hover { background: #1ab99b; }
@media (max-width: 991px) {
  .faq-sidebar-card { margin-top: 40px; }
}

/* ============================================================
   Member Modal (Team Page)
   ============================================================ */
.mm-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  display: block;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(0,38,120,0.12);
}
.mm-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.mm-socials a {
  width: 34px;
  height: 34px;
  background: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002678;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mm-socials a:hover {
  background: #21cdad;
  color: #fff;
}
.mm-cv { padding-left: 8px; }
.mm-bio {
  font-size: 14.5px;
  line-height: 1.82;
  color: #5a6070;
  border-left: 3px solid #21cdad;
  padding-left: 14px;
  margin-bottom: 22px;
}
.mm-section { margin-bottom: 18px; }
.mm-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #002678;
  margin-bottom: 10px;
}
.mm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mm-tag {
  background: rgba(33,205,173,0.1);
  color: #21cdad;
  border: 1px solid rgba(33,205,173,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}
.mm-position-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #5a6070;
}
.mm-position-row i {
  color: #21cdad;
  font-size: 15px;
}
.tm-view-cue {
  font-size: 12px;
  color: #21cdad;
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tm-view-cue i {
  font-size: 10px;
  transition: transform 0.2s;
}
.tm-card:hover .tm-view-cue i { transform: translateX(3px); }
.tm-card { cursor: pointer; }
@media (max-width: 576px) {
  .mm-cv { padding-left: 0; margin-top: 20px; }
  }

/* ============================================================
   Index Page
   ============================================================ */

/* ── Stats Strip ── */
.ix-stats-strip {
  background: #002678;
}
.ix-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.ix-stat-last {
  border-right: none;
}
.ix-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #21cdad;
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
}
.ix-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── Section label helper ── */
.ix-section-lead {
  max-width: 560px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* ── Services Section ── */
.ix-services-section {
  background: #f5f7fb;
  padding: 80px 0 60px;
}
.ix-svc-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 26px 28px;
  text-align: center;
  box-shadow: 0 4px 22px rgba(0,38,120,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-top-color 0.3s;
  border-top: 3px solid transparent;
  margin-bottom: 28px;
}
.ix-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,38,120,0.14);
  border-top-color: #21cdad;
}
.ix-svc-icon {
  width: 72px;
  height: 72px;
  background: rgba(33,205,173,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}
.ix-svc-card:hover .ix-svc-icon {
  background: #21cdad;
}
.ix-svc-icon i {
  font-size: 28px;
  color: #21cdad;
  transition: color 0.3s;
}
.ix-svc-card:hover .ix-svc-icon i {
  color: #fff;
}
.ix-svc-title {
  font-size: 17px;
  font-weight: 700;
  color: #002678;
  margin-bottom: 12px;
}
.ix-svc-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  flex: 1;
  margin-bottom: 20px;
}
.ix-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #21cdad;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.2s;
}
.ix-svc-link:hover {
  gap: 10px;
  color: #21cdad;
}

/* ── Clients Strip ── */
.ix-clients-strip {
  padding: 40px 0;
}
.ix-clients-heading {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

/* ── About / Contributions Section ── */
.ix-about-section {
  background: #fff;
  padding: 90px 0 80px;
}
.ix-feature-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.ix-feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33,205,173,0.08);
  border: 1px solid rgba(33,205,173,0.25);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #002678;
}
.ix-feat-pill i {
  color: #21cdad;
  font-size: 13px;
}
.ix-contrib-list {
  padding-left: 22px;
  margin-bottom: 20px;
}
.ix-contrib-list li {
  font-size: 14.5px;
  line-height: 1.8;
  color: #5a6070;
  margin-bottom: 10px;
}
.ix-about-text {
  font-size: 14.5px;
  color: #5a6070;
  line-height: 1.8;
  margin-bottom: 20px;
}
.ix-note-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0,38,120,0.04);
  border-left: 3px solid #21cdad;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
}
.ix-note-box i {
  color: #21cdad;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.ix-note-box p {
  font-size: 14px;
  color: #5a6070;
  margin: 0;
  line-height: 1.7;
}

/* ── What to Expect Section ── */
.ix-expect-section {
  padding: 90px 0;
}
.ix-expect-lead {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.ix-video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.ix-video-wrap img {
  width: 100%;
  display: block;
}
.ix-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: #21cdad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.ix-play-btn:hover {
  background: #fff;
  color: #21cdad;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ── Research Stages Timeline ── */
.ix-timeline-section {
  background: #f5f7fb;
  padding: 80px 0 60px;
}
.ix-tl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.ix-tl-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,38,120,0.07);
  transition: transform 0.3s, box-shadow 0.3s, border-bottom-color 0.3s;
  border-bottom: 3px solid transparent;
}
.ix-tl-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,38,120,0.12);
  border-bottom-color: #21cdad;
}
.ix-tl-num {
  font-size: 10px;
  font-weight: 700;
  color: #21cdad;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}
.ix-tl-icon {
  width: 50px;
  height: 50px;
  background: rgba(33,205,173,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: background 0.3s;
}
.ix-tl-item:hover .ix-tl-icon {
  background: #21cdad;
}
.ix-tl-icon i {
  font-size: 20px;
  color: #21cdad;
  transition: color 0.3s;
}
.ix-tl-item:hover .ix-tl-icon i {
  color: #fff;
}
.ix-tl-title {
  font-size: 13px;
  font-weight: 700;
  color: #002678;
  margin-bottom: 6px;
}
.ix-tl-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* ── How to Request Section ── */
.ix-steps-section {
  padding: 90px 0;
}
.ix-steps-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 36px;
  counter-reset: step-counter;
}
.ix-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  counter-increment: step-counter;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}
.ix-steps-list li::before {
  content: counter(step-counter, decimal-leading-zero);
  flex-shrink: 0;
  min-width: 36px;
  height: 36px;
  background: #21cdad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}

/* ── Latest News Section ── */
.ix-news-section {
  background: #fff;
  padding: 80px 0 60px;
}
.ix-news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,38,120,0.08);
  margin-bottom: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ix-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,38,120,0.14);
}
.ix-news-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.ix-news-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.ix-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ix-news-card:hover .ix-news-img img {
  transform: scale(1.05);
}
.ix-news-cats {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.ix-news-cat {
  background: #21cdad;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
}
.ix-news-body {
  padding: 22px 24px 24px;
  border-top: 3px solid #21cdad;
}
.ix-news-title {
  font-size: 16px;
  font-weight: 700;
  color: #002678;
  margin-bottom: 10px;
  line-height: 1.45;
}
.ix-news-title a {
  color: inherit;
  text-decoration: none;
}
.ix-news-title a:hover {
  color: #21cdad;
}
.ix-news-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}
.ix-news-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 16px;
}
.ix-news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #21cdad;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: gap 0.2s;
}
.ix-news-link:hover {
  gap: 10px;
  color: #21cdad;
}
.ix-all-news-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #21cdad;
  color: #21cdad;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.ix-all-news-btn:hover {
  background: #21cdad;
  color: #fff;
}

/* ── Index responsive ── */
@media (max-width: 991px) {
  .ix-tl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .ix-stat-num { font-size: 22px; }
  .ix-stat-item { padding: 10px 12px; }
  .ix-about-section { padding: 60px 0 50px; }
  .ix-expect-section { padding: 60px 0; }
  .ix-timeline-section { padding: 60px 0 40px; }
  .ix-steps-section { padding: 60px 0; }
  .ix-news-section { padding: 60px 0 40px; }
}
@media (max-width: 575px) {
  .ix-tl-grid { grid-template-columns: repeat(2, 1fr); }
  .ix-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ============================================================
   Tests Single Page (st-*)
   ============================================================ */

/* ── Hero ── */
.st-hero-section {
  padding: 90px 0 70px;
  position: relative;
}
.st-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.st-hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 0;
}
.st-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.st-breadcrumb a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.st-breadcrumb a:hover {
  color: #21cdad;
}
.st-breadcrumb-sep {
  color: rgba(255,255,255,0.35);
  font-size: 10px;
}
.st-breadcrumb-current {
  color: #21cdad;
  font-size: 13px;
  font-weight: 600;
}

/* ── Main section ── */
.st-main-section {
  background: #f5f7fb;
  padding: 60px 0 80px;
}

/* ── Sidebar widgets ── */
.st-widget {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 22px rgba(0,38,120,0.07);
  margin-bottom: 24px;
}
.st-widget-title {
  font-size: 15px;
  font-weight: 700;
  color: #002678;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f2f8;
  margin-bottom: 18px;
}
.st-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.st-cat-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: #5a6070;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 4px;
}
.st-cat-item a:hover,
.st-cat-item a.active {
  background: rgba(33,205,173,0.09);
  color: #002678;
}
.st-cat-count {
  background: rgba(0,38,120,0.07);
  color: #002678;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.st-cat-item a:hover .st-cat-count,
.st-cat-item a.active .st-cat-count {
  background: #21cdad;
  color: #fff;
}
.st-info-widget {
  background: #002678;
  border-radius: 14px;
  padding: 28px 24px;
  margin-bottom: 24px;
}
.st-info-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 12px;
}
.st-info-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 22px;
}
.st-info-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #21cdad;
  color: #fff;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 18px;
  transition: background 0.2s;
}
.st-info-cta:hover {
  background: #1ab89d;
  color: #fff;
}
.st-info-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  text-decoration: none;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s;
}
.st-info-phone i {
  color: #21cdad;
  font-size: 16px;
}
.st-info-phone:hover {
  color: #fff;
}
.st-dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.st-dl-btn:hover {
  opacity: 0.85;
}
.st-dl-btn-navy {
  background: #002678;
  color: #fff;
}
.st-dl-btn-teal {
  background: #21cdad;
  color: #fff;
}
.st-dl-btn i {
  font-size: 17px;
}

/* ── Content cards ── */
.st-content-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 4px 22px rgba(0,38,120,0.07);
  margin-bottom: 24px;
}
.st-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #002678;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f2f8;
}
.st-lead-text {
  font-size: 15px;
  line-height: 1.85;
  color: #5a6070;
  border-left: 3px solid #21cdad;
  padding-left: 16px;
  margin-bottom: 20px;
}
.st-body-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #5a6070;
  margin-bottom: 16px;
}

/* ── Pricing cards ── */
.st-pricing-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,38,120,0.07);
  margin-bottom: 24px;
}
.st-pricing-header {
  padding: 16px 22px;
}
.st-pricing-header-navy {
  background: #002678;
}
.st-pricing-header-teal {
  background: #21cdad;
}
.st-pricing-header h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.st-pricing-body {
  padding: 6px 22px 10px;
}
.st-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f4f6fb;
  font-size: 14px;
  color: #5a6070;
}
.st-pricing-item:last-child {
  border-bottom: none;
}
.st-price-val {
  font-weight: 700;
  color: #21cdad;
  font-size: 15px;
  flex-shrink: 0;
  margin-left: 12px;
}

/* ── Plan card ── */
.st-plan-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,38,120,0.07);
  margin-bottom: 0;
}
.st-plan-body {
  padding: 28px 30px;
}
.st-plan-title {
  font-size: 18px;
  font-weight: 700;
  color: #002678;
  margin-bottom: 10px;
}
.st-plan-text {
  font-size: 14px;
  line-height: 1.75;
  color: #5a6070;
  margin-bottom: 20px;
}
.st-plan-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.st-plan-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #5a6070;
  margin-bottom: 12px;
}
.st-plan-check-dot {
  width: 22px;
  height: 22px;
  background: rgba(33,205,173,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.st-plan-check-dot i {
  font-size: 9px;
  color: #21cdad;
}
.st-plan-footer {
  background: linear-gradient(135deg, #002678 0%, #152f56 100%);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.st-plan-price-wrap .st-plan-price {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.st-plan-price-wrap .st-plan-period {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  font-weight: 400;
  margin-left: 4px;
}
.st-plan-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Book a Visit form section ── */
.st-form-section {
  background: #fff;
  padding: 80px 0;
}
.st-form-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.st-form-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.st-form-feature-icon {
  width: 46px;
  height: 46px;
  background: rgba(33,205,173,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.st-form-feature-icon i {
  font-size: 20px;
  color: #21cdad;
}
.st-form-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #002678;
  margin-bottom: 4px;
}
.st-form-feature-text {
  font-size: 13px;
  color: #5a6070;
  margin: 0;
  line-height: 1.6;
}
.st-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,38,120,0.1);
  border: 1px solid #e8ecf2;
}
.st-form-title {
  font-size: 22px;
  font-weight: 700;
  color: #002678;
  margin-bottom: 8px;
}
.st-form-desc {
  font-size: 14px;
  color: #5a6070;
  margin-bottom: 24px;
  line-height: 1.7;
}
.st-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #002678;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.st-submit-btn:hover {
  background: #21cdad;
  transform: translateY(-2px);
}

/* ── Values / Culture section ── */
.st-values-section {
  background: #f5f7fb;
  padding: 80px 0;
}
.st-values-text {
  font-size: 15px;
  line-height: 1.85;
  color: #5a6070;
  margin-bottom: 18px;
}
.st-values-text-bold {
  font-size: 15px;
  font-weight: 600;
  color: #152f56;
  line-height: 1.8;
  border-left: 3px solid #21cdad;
  padding-left: 16px;
  margin-bottom: 20px;
}
.st-values-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #5a6070;
  margin-bottom: 12px;
}
.st-values-check-dot {
  width: 24px;
  height: 24px;
  background: rgba(33,205,173,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.st-values-check-dot i {
  font-size: 10px;
  color: #21cdad;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .st-hero-title { font-size: 32px; }
  .st-hero-section { padding: 70px 0 50px; }
}
@media (max-width: 767px) {
  .st-hero-title { font-size: 26px; }
  .st-form-card { padding: 24px 20px; }
  .st-content-card { padding: 22px 18px; }
  .st-plan-body { padding: 22px 20px; }
  .st-plan-footer { padding: 16px 20px; }
  .st-form-section { padding: 60px 0; }
  .st-values-section { padding: 60px 0; }
  .st-main-section { padding: 50px 0 60px; }
}

/* ==============================================
   Contact Us Page
   ============================================== */

/* ── Page Hero ── */
.contact-hero {
  position: relative;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 60%, #0e6494 100%);
  padding: 100px 0 80px;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/backgrounds/1.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.contact-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 13px;
  color: #a8d8f0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 540px;
}
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  font-size: 14px;
}
.breadcrumb-custom li { color: rgba(255,255,255,0.55); }
.breadcrumb-custom li a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color .2s; }
.breadcrumb-custom li a:hover { color: #fff; }
.breadcrumb-custom li.active { color: #a8d8f0; }
.breadcrumb-custom .sep { color: rgba(255,255,255,0.3); }

/* ── Info Cards ── */
.contact-cards-section {
  background: #f8fafc;
  padding: 60px 0 40px;
}
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.contact-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.contact-card .card-icon.bg-blue   { background: #e8f4fd; color: #0e6494; }
.contact-card .card-icon.bg-teal   { background: #e6f7f5; color: #0aab8e; }
.contact-card .card-icon.bg-purple { background: #f0ecfd; color: #6c4ecb; }
.contact-card .card-icon.bg-orange { background: #fff3e8; color: #e07b2a; }
.contact-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
}
.contact-card p,
.contact-card a {
  font-size: 14px;
  color: #6b7c93;
  margin: 0;
  text-decoration: none;
  line-height: 1.6;
  display: block;
}
.contact-card a:hover { color: #0e6494; }

/* ── Main Contact Section ── */
.contact-main-section {
  padding: 80px 0 90px;
  background: #fff;
}
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0e6494;
  margin-bottom: 10px;
  display: block;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 15px;
  color: #6b7c93;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Form Panel ── */
.form-panel {
  background: #f8fafc;
  border-radius: 20px;
  padding: 44px 40px;
}
.form-panel .form-label {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
  margin-bottom: 6px;
}
.form-panel .form-control {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;

  font-size: 14px;
  color: #1a2a3a;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-panel .form-control:focus {
  border-color: #0e6494;
  box-shadow: 0 0 0 3px rgba(14,100,148,0.12);
  outline: none;
}
.form-panel .form-control::placeholder { color: #b0b9c6; }
.form-panel textarea.form-control { min-height: 140px; resize: vertical; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0e6494, #0aab8e);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  width: 100%;
  justify-content: center;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }
.contact-result { margin-top: 12px; font-size: 14px; }

/* ── Right Info Panel ── */
.info-panel {
  padding-left: 20px;
}
.office-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  margin-bottom: 24px;
}
.office-card-header {
  background: linear-gradient(135deg, #0d1b2a, #1a3a5c);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}
.office-card-header i { color: #a8d8f0; font-size: 16px; }
.office-card-body {
  padding: 20px 24px;
  background: #fff;
}
.office-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}
.office-detail-row:last-child { border-bottom: none; }
.office-detail-row .det-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e8f4fd;
  color: #0e6494;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}
.office-detail-row .det-text { color: #6b7c93; line-height: 1.5; }
.office-detail-row .det-text strong {
  color: #1a2a3a;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}
.social-connect {
  background: linear-gradient(135deg, #0e6494, #0aab8e);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.social-connect h6 { color: #fff; font-weight: 700; margin-bottom: 6px; }
.social-connect p { color: rgba(255,255,255,0.75); font-size: 13px; margin-bottom: 18px; }
.social-connect .social-links { display: flex; gap: 10px; justify-content: center; }
.social-connect .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background .2s;
  text-decoration: none;
}
.social-connect .social-links a:hover { background: rgba(255,255,255,0.3); }

/* ── Map Section ── */
.map-section { padding: 0; }
.map-section .map-wrapper { position: relative; }
.map-section iframe {
  width: 100%;
  height: 480px;
  display: block;
  border: none;
  filter: grayscale(15%);
}
.map-overlay-card {
  position: absolute;
  top: 40px;
  right: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  padding: 0;
  width: 280px;
  overflow: hidden;
  z-index: 10;
}
.map-overlay-card .oc-header {
  background: linear-gradient(135deg, #0d1b2a, #1a3a5c);
  color: #fff;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-overlay-card .oc-header i { color: #a8d8f0; }
.map-overlay-card .oc-body { padding: 16px 20px; }
.map-overlay-card .oc-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #6b7c93;
  padding: 7px 0;
  border-bottom: 1px solid #f1f5f9;
}
.map-overlay-card .oc-row:last-child { border-bottom: none; }
.map-overlay-card .oc-row i { color: #0e6494; margin-top: 2px; width: 14px; flex-shrink: 0; }

@media (max-width: 991px) {
  .info-panel { padding-left: 0; margin-top: 40px; }
  .map-overlay-card { display: none; }
  .form-panel { padding: 30px 22px; }
}
@media (max-width: 575px) {
  .contact-hero { padding: 70px 0 60px; }
}

.st-hero-layout1 {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 60%, #0e6494 100%);
}

/* ==============================================
   Research Grid / Published Articles Page
   ============================================== */

.rg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 13px;
  color: #a8d8f0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Stats Bar */
.rg-stats-bar {
  background: #fff;
  border-bottom: 1px solid #e8edf4;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.rg-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-right: 1px solid #e8edf4;
  text-align: center;
}
.rg-stat-item:last-child { border-right: none; }
.rg-stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #0e6494;
  line-height: 1;
}
.rg-stat-label {
  font-size: 12px;
  color: #6b7c93;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Filter Section */
.rg-filter-section {
  padding: 48px 0 24px;
  background: #f8fafc;
}
.rg-search-box {
  position: relative;
}
.rg-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7c93;
  font-size: 14px;
}
.rg-search-input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 40px;
  padding: 13px 20px 13px 42px;
  font-size: 14px;
  color: #1a2a3a;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.rg-search-input:focus {
  border-color: #0e6494;
  box-shadow: 0 0 0 3px rgba(14,100,148,0.1);
}
.rg-search-input::placeholder { color: #b0b9c6; }
.rg-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.rg-filter-btn {
  border: 1.5px solid #e2e8f0;
  background: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7c93;
  cursor: pointer;
  transition: all .2s;
}
.rg-filter-btn:hover {
  border-color: #0e6494;
  color: #0e6494;
}
.rg-filter-btn.active {
  background: linear-gradient(135deg, #0e6494, #0aab8e);
  border-color: transparent;
  color: #fff;
}

/* Articles Section */
.rg-articles-section {
  padding: 48px 0 80px;
  background: #f8fafc;
}

/* Article Card */
.rg-article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.rg-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}
.rg-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.rg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.rg-article-card:hover .rg-card-img img { transform: scale(1.05); }
.rg-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
}
.rg-category-badge.nanomaterials  { background: #0e6494; }
.rg-category-badge.antimicrobial  { background: #0aab8e; }
.rg-category-badge.anticancer     { background: #c0392b; }
.rg-category-badge.synthesis      { background: #6c4ecb; }
.rg-category-badge.physical-chem  { background: #e07b2a; }
.rg-category-badge.drug           { background: #1a7a4a; }

.rg-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rg-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.rg-meta span {
  font-size: 12px;
  color: #9aa5b4;
  display: flex;
  align-items: center;
  gap: 5px;
}
.rg-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}
.rg-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.rg-card-title a:hover { color: #0e6494; }
.rg-card-abstract {
  font-size: 13px;
  color: #6b7c93;
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rg-card-authors {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 14px;
}
.rg-card-authors img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rg-author-info { display: flex; flex-direction: column; }
.rg-author-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
  line-height: 1.3;
}
.rg-journal-name {
  font-size: 11px;
  color: #9aa5b4;
  line-height: 1.3;
  margin-top: 2px;
}
.rg-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rg-read-btn {
  font-size: 13px;
  font-weight: 600;
  color: #0e6494;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s, color .2s;
}
.rg-read-btn:hover { color: #0aab8e; gap: 10px; }
.rg-doi-btn {
  font-size: 12px;
  color: #9aa5b4;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 10px;
  transition: border-color .2s, color .2s;
}
.rg-doi-btn:hover { border-color: #0e6494; color: #0e6494; }

/* No results */
.rg-no-results {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  color: #9aa5b4;
  width: 100%;
}
.rg-no-results i { font-size: 48px; margin-bottom: 16px; opacity: .4; }
.rg-no-results p { font-size: 16px; }

/* Pagination */
.rg-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.rg-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #6b7c93;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rg-page-btn:hover {
  border-color: #0e6494;
  color: #0e6494;
}
.rg-page-btn.active {
  background: linear-gradient(135deg, #0e6494, #0aab8e);
  border-color: transparent;
  color: #fff;
}
.rg-page-next { width: auto; padding: 0 14px; }
.rg-page-ellipsis { color: #9aa5b4; font-size: 16px; padding: 0 4px; }

@media (max-width: 767px) {
  .rg-stat-item { padding: 16px 10px; }
  .rg-stat-number { font-size: 22px; }
  .rg-filter-section { padding: 32px 0 16px; }
  .rg-articles-section { padding: 32px 0 60px; }
}

/* ==============================================
   Published Paper Detail Page
   ============================================== */

/* Hero badge */
.pp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 12px;
  color: #a8d8f0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero action buttons */
.pp-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.pp-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.pp-action-btn:hover { opacity: .88; transform: translateY(-2px); }
.pp-action-btn.primary {
  background: linear-gradient(135deg, #0e6494, #0aab8e);
  color: #fff;
}
.pp-action-btn.secondary {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}

/* Main section */
.pp-main-section {
  padding: 60px 0 80px;
  background: #f8fafc;
}

/* Meta ribbon */
.pp-meta-ribbon {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.pp-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 100px;
}
.pp-meta-item > i {
  font-size: 18px;
  color: #0e6494;
  width: 20px;
  text-align: center;
}
.pp-meta-label {
  font-size: 11px;
  color: #9aa5b4;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: block;
}
.pp-meta-value {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a3a;
  display: block;
}
.pp-meta-divider,
.divider {
  width: 1px;
  height: 36px;
  background: #e8edf4;
  flex-shrink: 0;
}
.pp-meta-item-lg {
  flex: 3;
  min-width: 260px;
}
.pp-meta-nowrap { white-space: nowrap; }

/* Cover image */
/* Abstract + journal cover side-by-side */
.pp-abstract-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.pp-journal-cover {
  flex-shrink: 0;
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
  border: 1px solid #e2e8f0;
}
.pp-journal-cover img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.pp-journal-cover-caption {
  background: #1a2a3a;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  padding: 8px 10px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.pp-journal-cover-caption i { color: #a8d8f0; flex-shrink: 0; margin-top: 2px; }

@media (max-width: 640px) {
  .pp-abstract-layout { flex-direction: column; }
  .pp-journal-cover { width: 100%; }
  .pp-journal-cover img { height: 220px; }
}

/* Section blocks */
.pp-section-block { margin-bottom: 36px; }
.pp-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pp-section-line {
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #0e6494, #0aab8e);
  border-radius: 2px;
  flex-shrink: 0;
}
.pp-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0;
}

/* Abstract */
.pp-abstract-text p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 14px;
}
.pp-abstract-text p:last-child { margin-bottom: 0; }
.pp-abstract-text em { color: #1a2a3a; font-style: italic; }

/* Keywords */
.pp-keywords {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pp-keywords-label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7c93;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.pp-keywords-label i { color: #0e6494; }
.pp-keywords-list { display: flex; flex-wrap: wrap; gap: 6px; }
.pp-keyword {
  background: #e8f4fd;
  color: #0e6494;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

/* Figures */
.pp-figure-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
}
.pp-figure-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.pp-figure-caption {
  padding: 10px 12px;
  font-size: 11px;
  color: #6b7c93;
  line-height: 1.5;
  background: #f8fafc;
}

/* DOI box */
.pp-doi-box {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 16px;
}
.pp-doi-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid #f1f5f9;
}
.pp-doi-row:last-child { border-bottom: none; }
.pp-doi-label {
  font-size: 12px;
  font-weight: 600;
  color: #9aa5b4;
  text-transform: uppercase;
  letter-spacing: .5px;
  width: 90px;
  flex-shrink: 0;
  padding-top: 2px;
}
.pp-doi-value {
  font-size: 14px;
  color: #0e6494;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.pp-doi-value:hover { color: #0aab8e; }
.pp-doi-value-plain { font-size: 14px; color: #1a2a3a; line-height: 1.5; }

/* Citation box */
.pp-cite-box {
  background: #f0f7fd;
  border: 1.5px solid #bee3f8;
  border-radius: 12px;
  overflow: hidden;
}
.pp-cite-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #e1f0fa;
  font-size: 13px;
  font-weight: 600;
  color: #0e6494;
}
.pp-copy-btn {
  background: #0e6494;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background .2s;
}
.pp-copy-btn:hover { background: #0aab8e; }
.pp-cite-text {
  padding: 14px 16px;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* Back button */
.pp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7c93;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 18px;
  background: #fff;
  transition: color .2s, border-color .2s;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.pp-back-btn:hover { color: #0e6494; border-color: #0e6494; }

/* Sidebar */
.pp-sidebar { display: flex; flex-direction: column; gap: 20px; }
.pp-sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.pp-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pp-sidebar-title i { color: #0e6494; }

/* Access card */
.pp-access-card { text-align: center; }
.pp-access-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e8f4fd, #d4f1ec);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: #0e6494;
}
.pp-access-title { font-size: 16px; font-weight: 700; color: #1a2a3a; margin-bottom: 6px; }
.pp-access-desc { font-size: 13px; color: #6b7c93; margin-bottom: 16px; line-height: 1.6; }
.pp-access-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0e6494, #0aab8e);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity .2s;
}
.pp-access-btn:hover { opacity: .88; color: #fff; }
.pp-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid #e2e8f0;
  color: #6b7c93;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.pp-download-btn:hover { border-color: #0e6494; color: #0e6494; }

/* Authors list */
.pp-authors-list { display: flex; flex-direction: column; gap: 14px; }
.pp-author-row { display: flex; align-items: flex-start; gap: 12px; }
.pp-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e8edf4;
}
.pp-author-details { display: flex; flex-direction: column; gap: 2px; }
.pp-author-name { font-size: 13px; font-weight: 700; color: #1a2a3a; }
.pp-author-affil { font-size: 11px; color: #9aa5b4; line-height: 1.4; }
.pp-author-role { font-size: 11px; display: inline-flex; align-items: center; gap: 4px; margin-top: 3px; }
.pp-role-corresponding { color: #0e6494; font-weight: 600; }

/* Info list */
.pp-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.pp-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
}
.pp-info-list li:last-child { border-bottom: none; }
.pp-info-key { color: #9aa5b4; font-weight: 600; flex-shrink: 0; width: 90px; }
.pp-info-val { color: #1a2a3a; text-align: right; line-height: 1.5; }
.pp-oa-badge {
  background: #d4f1ec;
  color: #0aab8e;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
}

/* Share */
.pp-share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.pp-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.pp-share-btn:hover { opacity: .85; transform: translateY(-2px); }
.pp-share-btn.twitter  { background: #1da1f2; }
.pp-share-btn.linkedin { background: #0a66c2; }
.pp-share-btn.facebook { background: #1877f2; }
.pp-share-btn.whatsapp { background: #25d366; }
.pp-share-btn.copy     { background: #6b7c93; }

/* Related articles */
.pp-related-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}
.pp-related-card {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.pp-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}
.pp-related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.pp-related-body { padding: 16px 18px; }
.pp-related-cat {
  display: inline-block;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.pp-related-cat.antimicrobial { background: #0aab8e; }
.pp-related-cat.synthesis     { background: #6c4ecb; }
.pp-related-cat.physical-chem { background: #e07b2a; }
.pp-related-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pp-related-meta {
  font-size: 12px;
  color: #9aa5b4;
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 991px) {
  .pp-main-section { padding: 40px 0 60px; }
  .pp-meta-divider { display: none; }
  .pp-meta-ribbon { gap: 16px; }
}
@media (max-width: 575px) {
  .pp-meta-item { min-width: calc(50% - 8px); }
  .pp-info-key { width: 80px; }
}

/* ==============================================
   Redesigned Footer (FAQs page)
   ============================================== */

.nf-footer {
  background: #0d1b2a;
  color: rgba(255,255,255,0.75);
}

/* CTA Strip */
.nf-cta-strip {
  background: linear-gradient(135deg, #0e6494 0%, #0aab8e 100%);
  padding: 32px 0;
}
.nf-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  display: block;
}
.nf-cta-title {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.nf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.nf-cta-btn:hover { opacity: .88; transform: translateY(-2px); }
.nf-cta-btn-primary { background: #fff; color: #0e6494; }
.nf-cta-btn-outline { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4); color: #fff; }

/* Main body */
.nf-footer-main {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.nf-brand-col { padding-right: 24px; }
.nf-logo {
  max-height: 52px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.nf-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}
.nf-social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.nf-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.nf-social:hover {
  background: linear-gradient(135deg, #0e6494, #0aab8e);
  border-color: transparent;
  color: #fff;
}

/* Link columns */
.nf-link-col { padding-top: 4px; }
.nf-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.nf-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #0e6494, #0aab8e);
  border-radius: 2px;
}
.nf-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nf-link-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, gap .2s;
}
.nf-link-list a i {
  font-size: 9px;
  color: #0aab8e;
  transition: transform .2s;
}
.nf-link-list a:hover { color: #fff; gap: 12px; }
.nf-link-list a:hover i { transform: translateX(2px); }

/* Contact list */
.nf-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nf-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}
.nf-contact-list a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color .2s;
}
.nf-contact-list a:hover { color: #0aab8e; }
.nf-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #0aab8e;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Bottom bar */
.nf-footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.nf-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.nf-copyright a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color .2s; }
.nf-copyright a:hover { color: #0aab8e; }
.nf-bottom-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color .2s;
}
.nf-bottom-contact-link:hover { color: #0aab8e; }

@media (max-width: 991px) {
  .nf-brand-col { padding-right: 0; }
  .nf-footer-main { padding: 48px 0 36px; }
}
@media (max-width: 575px) {
  .nf-cta-strip { padding: 24px 0; }
  .nf-cta-btn { width: 100%; justify-content: center; }
}