@import url("https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap");
:root {
  --bs-primary-rgb: 206, 9, 9;
  --bs-secondary-rgb: 0, 66, 137;
  --bs-light-rgb: 110, 110, 110;
  --bs-tertiary2-bg: #f5f5f5;
  scroll-behavior: auto;
}
html {
  scroll-behavior: smooth;
}
html, body {
  scrollbar-width: thin;
}
body {
  font-size: 16px;
  color: #000;
  line-height: 1.7em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background: rgb(255, 255, 255);
  font-family: "Yantramanav", sans-serif;
}

.l {
  box-shadow: inset 0 0 0 1px red;
}

/*****************Heading Product Details Page************/
.product-section-title{
    font-size:30px;
    font-weight:700;
    color:#d60000; /* your logo red */
    letter-spacing:0.5px;
    margin-bottom:25px;
    position:relative;
    padding-left:16px;
}

.product-section-title:before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:4px;
    height:28px;
    background:#d60000;
    border-radius:3px;
}




/*************Video Home***********/
.video-box{
    border-radius:25px;
    overflow:hidden;
    position:relative;
    padding:8px;
    
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.video-wrapper{
    position:relative;
    padding-top:56.25%;
    border-radius:20px;
    overflow:hidden;
}

.video-wrapper iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
    border-radius:20px;
}

/* subtle hover effect */
.video-box:hover{
    transform:translateY(-6px);
    transition:all .4s ease;
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
}



/******Search bar********/
#searchResults{
position:absolute;
top:100%;
left:0;
right:0;

background:#fff;
border-radius:8px;

max-height:300px;
overflow-y:auto;

box-shadow:0 10px 25px rgba(0,0,0,0.15);

z-index:1055;
}

.search-result-item{
display:block;
padding:12px 15px;
border-bottom:1px solid #eee;
color:#333;
text-decoration:none;
}

.search-result-item:hover{
background:#f5f5f5;
}


/******International*********/
.global-presence-section{
background:#f7f8fa;
}

.divider{
width:70px;
height:3px;
background:#0d6efd;
}

/* MAP */

.map-wrapper{
position:relative;
}

.world-map{
width:100%;
opacity:.9;
}

/* MAP MARKERS */

.map-marker{
position:absolute;
transform:translate(-50%,-50%);
cursor:pointer;
}

.map-marker::before{
content:'';
width:14px;
height:14px;
background:#0d6efd;
border-radius:50%;
display:block;
animation:pulse 2s infinite;
}

/* CHINA SPECIAL MARKER */

.map-marker.china::before{
background:#e60023;
box-shadow:0 0 0 8px rgba(230,0,35,0.2);
}

.map-marker span{
position:absolute;
top:-30px;
left:50%;
transform:translateX(-50%);
/*background:#fff;*/
padding:4px 10px;
border-radius:4px;
font-size:12px;
/*box-shadow:0 3px 10px rgba(0,0,0,0.15);*/
white-space:nowrap;
}

/* China label */

.map-marker.china span{
background:#e60023;
color:#fff;
}

/* Marker Animation */

@keyframes pulse{
0%{transform:scale(1);opacity:1}
100%{transform:scale(2);opacity:0}
}


/* MAP POSITIONS */
/* EUROPE */

.map-marker.germany{
top:34%;
left:49%;
}

.map-marker.italy{
top:38%;
left:51%;
}


/* ASIA */

.map-marker.china{
top:46%;
left:71%;
}

.map-marker.india{
top:55%;
left:63%;
}

.map-marker.thailand{
top:59%;
left:69%;
}

.map-marker.malaysia{
top:63%;
left:71%;
}

.map-marker.indonesia{
top:70%;
left:73%;
}

.map-marker.philippines{
top:58%;
left:76%;
}


/* AUSTRALIA */

.map-marker.australia{
top:80%;
left:85%;
}

/* COUNTRY LIST */

.country-list{
background:#fff;
padding:30px;
border-radius:8px;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

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

.country-list li{
display:flex;
align-items:center;
gap:12px;
padding:12px 0;
border-bottom:1px solid #eee;
font-weight:500;
font-size:16px;
}

.country-list li:last-child{
border-bottom:none;
}

.country-list img{
width:36px;
border-radius:4px;
}



/***************News Css Homepage******************/
/* HOME NEWS SECTION */

.news-image{
height:220px;
overflow:hidden;
}

.news-image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.home-news-section{
background:#f7f8fa;
}

.news-card{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
transition:0.3s ease;
height:100%;
}

.news-card:hover{
transform:translateY(-6px);
box-shadow:0 8px 30px rgba(0,0,0,0.12);
}

.news-image{
position:relative;
overflow:hidden;
}

.news-image img{
width:100%;
height:220px;
object-fit:cover;
}

.news-tag{
position:absolute;
top:12px;
left:12px;
background:#c12026;
color:#fff;
font-size:12px;
padding:4px 10px;
border-radius:3px;
}

.news-content{
padding:18px;
}

.news-date{
font-size:13px;
color:#888;
margin-bottom:6px;
}

.news-title{
font-weight:600;
margin-bottom:8px;
}

.news-title a{
color:#111;
text-decoration:none;
}

.news-title a:hover{
color:#c12026;
}

.news-excerpt{
font-size:14px;
color:#555;
margin-bottom:12px;
}

.news-readmore{
font-size:14px;
font-weight:600;
color:#c12026;
text-decoration:none;
}


/***************************CHAT WITH US******************/

/* Floating container */
.chat-float-container {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999999;
}

/* Vertical button */
.chat-float-btn {
  position: fixed;
  right: -42px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: red;
  color: #fff;
  padding: 7px 18px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  white-space: nowrap;
}

/* Sliding panel */
.chat-panel {
  position: fixed;
  right: -320px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: auto;
  min-height: 300px;
  padding-bottom: 10px;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0,0,0,0.25);
  transition: right 0.4s ease;
  border-radius: 12px 0 0 12px;
  z-index: 999998;
}

.chat-panel.active {
  right: 0;
}

/* Header */
.chat-header {
  background: #dc0404;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.chat-close {
  cursor: pointer;
  font-size: 20px;
}

/* Body */
.chat-body {
  justify-content: space-between;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.qr-box {
  width: 48%;
  text-align: center;
}

.qr-box img {
  width: 100%;
  max-width: 120px;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 6px;
}

.qr-box.vertical {
  width: 100%;
  text-align: center;
}

.qr-box.vertical img {
  max-width: 160px;
  width: 100%;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.qr-box.vertical img:hover {
  transform: scale(1.05);
}


/********Ashraf*************/
.about-text {
    max-height: 140px;   /* Adjust visible height */
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.about-text.expanded {
    max-height: 1000px; /* Large enough to show full content */
}

/* Light background */
.rvg-light-section {
    background: #f4f7fa;
}

/* Glass Card */
.rvg-glass-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(181, 8, 8, 0.05);
    transition: all 0.3s ease;
}

.rvg-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Icon & Letter Layout */
.icon-area {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.big-letter {
    font-size: 60px;
    font-weight: 800;
    opacity: 0.15;
}

/* Individual Colors */
.r-color { background: #007bff; }     /* Blue – Trust */
.v-color { background: #6f42c1; }     /* Purple – Value/Strategy */
.g-color { background: #28a745; }     /* Green – Sustainability */

.r-text { color: #007bff; }
.v-text { color: #6f42c1; }
.g-text { color: #28a745; }

/* Read More */
.card-content {
    max-height: 170px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.card-content.expanded {
    max-height: 1000px;
}


/* White Section */
.mission-vision-white {
    background: #ffffff;
}

/* Card Style */
.mv-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

/* Subtle Accent Border */
.mv-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    border-radius: 4px;
}

/* Mission Accent */
.mv-card:first-child::before {
    background: #007bff;
}

/* Vision Accent */
.col-lg-5:nth-child(2) .mv-card::before {
    background: #28a745;
}

/* Hover */
.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon Circle */
.mv-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
}

/* Icon Colors */
.mission-icon {
    background: #007bff;
}

.vision-icon {
    background: #28a745;
}
/****************end*********/


.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
}

.ratio-64p {
  --bs-aspect-ratio: 64% !important;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-35 {
  opacity: 0.35;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-45 {
  opacity: 0.45;
}

.text-primary-dark {
  color: #6c0000;
}

.text-secondary-dark {
  color: #011c38;
}

.text-light2 {
  color: #bababa;
}

.bg-tertiary {
  background-color: var(--bs-tertiary-bg);
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle);
}

.bg-light2 {
  background-color: var(--bs-tertiary2-bg);
}

.ts-1p10 {
  transform: scale(1.1) !important;
}

.ts-1p15 {
  transform: scale(1.15) !important;
}

.ts-1p20 {
  transform: scale(1.2) !important;
}

.ts-1p25 {
  transform: scale(1.25);
}

.ts-1p30 {
  transform: scale(1.3);
}

.ts-1p35 {
  transform: scale(1.35);
}

.ts-1p40 {
  transform: scale(1.4);
}

.ts-1p45 {
  transform: scale(1.45);
}

.ts-1p50 {
  transform: scale(1.5);
}

.ts-1p70 {
  transform: scale(1.7);
}

.ts-1p80 {
  transform: scale(1.8);
}

.ts-1p90 {
  transform: scale(1.9);
}

.ts-1p100 {
  transform: scale(2);
}

.to-start {
  transform-origin: left;
}

.fs-48 {
  font-size: 3rem;
}

.maxw-40px {
  max-width: 40px;
}

.maxw-50px {
  max-width: 50px;
}

.maxw-60px {
  max-width: 60px;
}

.maxw-80px {
  max-width: 80px;
}

.maxw-100px {
  max-width: 100px;
}

.maxw-110px {
  max-width: 110px;
}

.maxw-120px {
  max-width: 120px;
}

.maxw-130px {
  max-width: 130px;
}

.maxw-140px {
  max-width: 140px;
}

.maxw-150px {
  max-width: 150px;
}

.maxw-420px {
  max-width: 420px;
}

.maxw-450px {
  max-width: 450px;
}

.maxw-480px {
  max-width: 480px;
}

.maxw-520px {
  max-width: 520px;
}

.maxw-560px {
  max-width: 560px;
}

.maxw-660px {
  max-width: 660px;
}

.maxw-760px {
  max-width: 760px;
}

.mmwh-70px {
  min-width: 70px;
  min-height: 70px;
  max-width: 70px;
  max-height: 70px;
}

.modal-backdrop {
  --bs-backdrop-bg: #011c38;
  --bs-backdrop-opacity: 0.90;
}

.py-0p25 {
  padding-top: 0.063rem;
  padding-bottom: 0.063rem;
}

.py-0p50 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.mt-0p50 {
  margin-top: 0.125rem;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.me-n4 {
  margin-right: -1.25rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.25rem !important;
}

.mt-n4 {
  margin-top: -1.25rem !important;
}

.mt-n5 {
  margin-top: -1.5rem !important;
}

.nav-underline {
  --bs-emphasis-color: #C12026;
  --bs-link-color: #011c38;
  --bs-link-hover-color: #C12026;
}

.dash-line {
  display: inline-block;
  vertical-align: baseline;
  background: currentColor;
  width: 100%;
  height: 1px;
}

.accordion-flush button[aria-expanded=true] {
  pointer-events: none;
}

.btn {
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .30);
}

.btn-primary {
  --bs-btn-font-weight: 500;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: #C12026;
  --bs-btn-border-color: #C12026;
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #6c0000;
  --bs-btn-hover-border-color: #6c0000;
  --bs-btn-focus-shadow-rgb: 206, 9, 9;
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #C12026;
  --bs-btn-active-border-color: #C12026;
}

.btn-secondary {
  --bs-btn-font-weight: 500;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: #004289;
  --bs-btn-border-color: #004289;
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #011c38;
  --bs-btn-hover-border-color: #011c38;
  --bs-btn-focus-shadow-rgb: 0, 66, 137;
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #004289;
  --bs-btn-active-border-color: #004289;
}

.btn-md {
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-padding-y: 0.625rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1.125rem;
  --bs-btn-font-weight: 500;
  --bs-btn-line-height: 1.5;
  padding-bottom: 0.575rem;
}

.offcanvas.offcanvas-top {
  --bs-offcanvas-height: 84px;
}

.offcanvas-backdrop {
  background-color: rgba(1, 28, 56, 0.75);
  backdrop-filter: blur(5px);
}
.offcanvas-backdrop.show {
  opacity: 1;
}

.top-bar {
  background-color: #C12026;
  color: #fff;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  padding: 5px 0;
}
.top-bar .top-call {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
}
.top-bar .top-call:hover {
  opacity: 0.8;
}

.navbar {
  --bs-navbar-padding-y: 0.25rem;
  --bs-navbar-color: #fff;
  --bs-navbar-nav-link-padding-x: 0;
  --logo-width: 180px;
  --bs-navbar-hover-color: var(--bs-warning);
  --bs-navbar-active-color: var(--bs-warning);
  background-color: transparent;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  transition: 300ms;
}
.navbar .navbar-brand img {
  transition: 300ms;
  max-width: var(--logo-width);
  filter: brightness(0) invert(1);
}
.navbar.is-sticky {
  --logo-width: 100px;
  box-shadow: 0 2px 4px rgba(0, 66, 137, 0.15);
  background-color: rgba(1, 28, 56, 0.97);
  backdrop-filter: blur(15px);
}
.navbar.is-sticky .navbar-brand img {
  filter: none;
}
.navbar .dropdown-menu {
  --bs-dropdown-border-color: none;
  --bs-dropdown-border-radius: 8px;
  --bs-dropdown-inner-border-radius: 4px;
  --bs-dropdown-link-active-bg: #C12026;
  --bs-dropdown-font-size: 1.06rem;
  --bs-dropdown-padding-y: 0.75rem;
  --bs-dropdown-item-padding-y: 0.625rem;
  min-width: 300px;
}
.navbar .dropdown-menu .dropdown-item {
  --bs-dropdown-item-padding-y: 0.5rem;
  white-space: normal;
  line-height: 1.35;
}

.navbar-toggler {
  --bs-navbar-toggler-padding-x: 0.375rem;
  --bs-navbar-toggler-border-radius: 0.25rem;
  background-color: #ffffff;
}

.navbar-nav {
  --bs-nav-link-padding-y: 0.75rem;
  --bs-nav-link-font-size: 1.125rem;
  --bs-nav-link-font-weight: 400;
  gap: 36px;
}
.navbar-nav .nav-link {
  font-size: 20px;
}

@media all and (min-width: 992px) {
  .dropdown-lg-600px {
    width: 600px;
  }
  .dropdown-lg-700px {
    width: 700px;
  }
  .dropdown-lg-800px {
    width: 800px;
  }
  .navbar .dropdown-menu {
    max-height: 520px;
    overflow: hidden;
    overflow-y: auto;
  }
}
.hero-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #011c38;
  padding-top: 90px;
  padding-bottom: 1rem;
}
.hero-banner .hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero-banner .container {
  position: relative;
  z-index: 1;
}

.page-title {
  position: relative;
  padding: 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #011c38;
}
.page-title .page-poster {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.page-title .moving-text {
  margin: 0;
  position: absolute;
  font-weight: 900;
  font-size: calc(20px + 12vw);
  white-space: nowrap;
  line-height: 1;
  right: 20px;
  bottom: -20px;
  color: var(--bs-warning);
  text-fill-color: transparent;
  text-stroke: 1.5px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px;
  pointer-events: none;
  z-index: 1;
  transition: 1ms ease;
  transform: translateX(0);
  opacity: 0.2;
}
.page-title .container {
  position: relative;
  z-index: 1;
}
.page-title .display-4, .page-title .display-5 {
  color: #fff;
  font-weight: 600;
}
.page-title .page-breadcrumb {
  --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='%23ffffff'/%3E%3C/svg%3E");
  margin-bottom: -1rem;
}
.page-title .breadcrumb-item {
  color: #fff;
}
.page-title .breadcrumb-item a {
  color: var(--bs-warning);
  text-decoration: none;
}
.page-title .breadcrumb-item a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.carousel-items .owl-stage {
  display: flex;
}

.carousel-items .item {
  display: flex;
  flex: 1 0 auto;
  height: 100%;
}

.owl-carousel-bullet .owl-dots {
  display: flex;
  gap: 10px;
  padding-top: 24px;
  padding-bottom: 5px;
  justify-content: center;
}

.owl-carousel-bullet .owl-dots .owl-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.15);
}

.owl-carousel-bullet .owl-dots .owl-dot.active, .owl-carousel-bullet .owl-dots .owl-dot:focus-visible {
  border: 1px solid var(--bs-primary);
  background: var(--bs-primary);
  outline: none;
}

.card-products {
  --bs-card-spacer-y: 1.25rem;
  --bs-card-spacer-x: 1.25rem;
  height: 100%;
  overflow: hidden;
}
.card-products .card-ratio {
  --bs-aspect-ratio: 80%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--bs-border-color);
}
.card-products .card-ratio img {
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  transition: 500ms;
  position: relative;
}


.card-products .card-ratio:hover img {
  transform: scale(1.075);
}
.card-products .card-link {
  display: block;
  text-decoration: none;
  text-underline-offset: 6px;
  transition: 300ms;
  color: #011c38;
}
.card-products .card-link:hover {
  -webkit-text-decoration: none;
          text-decoration: none;
  color: #C12026;
}
.card-products .tick-list {
  gap: 16px;
}
.card-products .tick-list li {
  background-size: 1.25rem 1.25rem;
  background-position: 0px 0px;
  padding-left: 30px;
  font-size: 1.125rem;
}
.card-products .tick-list a {
  text-decoration: none;
  line-height: 1.2;
  display: block;
  color: inherit;
}
.card-products .tick-list a:hover {
  color: #C12026;
  -webkit-text-decoration: underline solid 1px;
          text-decoration: underline solid 1px;
  text-underline-offset: 5px;
}

.section-banner {
  position: relative;
  min-height: calc(100vh - 38px - 78px);
  display: flex;
  align-items: center;
}
.section-banner .owl-stage-outer, .section-banner .owl-stage, .section-banner .owl-item {
  min-height: inherit;
}
.section-banner .item {
  position: relative;
  min-height: inherit;
}
.section-banner .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.section-banner .item .img-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: none;
}
.section-banner .item .container {
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-top: 30px;
  padding-bottom: 30px;
}
.section-banner .item .item-video {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section-banner .item .item-image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section-banner .owl-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  width: 100%;
}
.section-banner .button-lg {
  text-shadow: none;
}

.owl-theme .owl-dots .owl-dot span {
  border-radius: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #C12026;
}

.img-setright {
  position: absolute;
  width: 46%;
  height: 100%;
  top: 0;
  right: 0;
}
.img-setright img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.card-service {
  --bs-card-spacer-y: 1.5rem;
  --bs-card-spacer-x: 1.5rem;
  --bs-card-cap-padding-y: 1rem;
  --bs-card-cap-padding-x: 1.5rem;
  --bs-card-border-radius: 0;
  --bs-card-cap-bg: transparent;
  --bs-card-border-width: 0;
  border: none;
  border-top: 1px solid transparent;
  border-bottom: 3px solid #C12026;
  transition: 350ms ease;
  height: 100%;
}
.card-service:hover {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
  box-shadow: 0px 3px 0px 2px rgba(0, 0, 0, 0.1), 0px 6px 0px 4px rgba(0, 0, 0, 0.1), 0px 9px 0px 6px rgba(0, 0, 0, 0.1), -23px -16px 0px -3px rgba(0, 0, 0, 0);
}
.card-service .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-service .card-footer a {
  text-transform: uppercase;
  text-decoration: none;
  color: #C12026;
  text-underline-offset: 7px;
  font-weight: 500;
  font-size: 0.925rem;
}
.card-service .card-footer a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(193, 32, 38, 0.85);
}
.card-service .card-footer a:active {
  color: #004289;
  text-decoration: underline;
  text-decoration-color: rgba(0, 66, 137, 0.85);
}
.card-service .card-footer .icon {
  font-size: 52px;
  transform-origin: bottom right;
  opacity: 0.2;
  color: #011c38;
  pointer-events: none;
}

.tick-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tick-list li {
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23ce0909' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z' clip-rule='evenodd' stroke-width='1' stroke='%23ce0909'/></svg>");
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  background-position: 0px 2px;
  padding-left: 34px;
  font-size: 1.25rem;
}

.since-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #011c38;
}
.since-section .since-image {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: right;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.5s;
}

.card-block {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-bottom: 60px;
  transition: 300ms;
}
.card-block:hover {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
}
.card-block .ratio-64p {
  overflow: hidden;
  display: block;
}
.card-block .ratio-64p img {
  transition: 0.5s;
}
.card-block .ratio-64p:hover img {
  transform: scale(1.1);
}
.card-block .btn {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: calc(50% - 27px);
  bottom: -26px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
}
.card-block .btn:hover {
  opacity: 0.9;
}
.card-block .link-underline {
  overflow: hidden;
  text-overflow: ellipsis;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  min-height: 60px;
}
.card-block .link-underline:hover {
  opacity: 0.8;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.services-list a {
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  background-color: #f7f6f6;
  border-left: 4px solid #ccc;
  padding: 12px 12px 12px 18px;
  color: #004289;
  transition: 300ms;
}
.services-list a.active, .services-list a:hover {
  background-color: #C12026;
  color: #fff;
  border-left-color: #011c38;
}

.tab-filter {
  text-align: center;
  display: flex;
  gap: 8px 36px;
  justify-content: center;
  align-items: center;
}
.tab-filter button {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 4px 0;
  color: #011c38;
  margin: 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: 300ms;
  outline: none;
}
.tab-filter button:hover, .tab-filter button:focus-visible {
  opacity: 0.75;
  border-bottom: 1px solid #004289;
}
.tab-filter button.active {
  opacity: 1;
  pointer-events: none;
  color: #C12026;
  border-bottom: 1px solid #C12026;
}

.tab-box {
  position: relative;
  aspect-ratio: 1/1;
  cursor: pointer;
  background-color: #C12026;
  overflow: hidden;
}
.tab-box img, .tab-box iframe, .tab-box video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
  pointer-events: none;
}
.tab-box p {
  margin: 0;
  color: #fff;
  z-index: 2;
  position: absolute;
  bottom: 16px;
  left: 22px;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  transition: 0.3s;
  transform: scaleX(0);
  transform-origin: 0 0;
}
.tab-box:hover p {
  transform: scaleY(1);
}
.tab-box:hover img, .tab-box:hover iframe, .tab-box:hover video {
  opacity: 0.2;
  transform: scale(1.1) rotate(5deg);
}

.col-anim {
  animation: colAnim 0.5s ease-in-out;
}

.col-animall {
  animation: colAnimall 0.5s ease-in-out;
}

@keyframes colAnim {
  from {
    transform: scale(0.75);
    opacity: 0.15;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes colAnimall {
  from {
    transform: scale(0.75);
    opacity: 0.15;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/*Start | Light Box*/
.modal-lighting .modal-dialog {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.modal-lighting .modal-content {
  background: transparent;
  box-shadow: none;
  border: 0;
  height: 100vh;
}
.modal-lighting .carousel-indicators li {
  width: 18px;
  height: 6px;
  border: 0;
  border-radius: 1px;
  margin-right: 3px;
  margin-left: 3px;
  background: #999;
  list-style-type: none;
}
.modal-lighting .carousel-indicators li.active {
  background: #C12026;
}
.modal-lighting .modal-body,
.modal-lighting .carousel,
.modal-lighting .carousel-item {
  height: 100vh;
}
.modal-lighting .carousel-control-next, .modal-lighting .carousel-control-prev {
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
}
.modal-lighting .carousel-item img, .modal-lighting .carousel-item video {
  position: absolute;
  top: calc(50% - 10px);
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  margin: 10px auto;
  max-width: calc(100% - 20px);
  max-height: calc(100vh - 20px);
}
.modal-lighting .btn-lightbox-close {
  font-family: Arial;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 0 0 0px 34px;
  background: rgba(0, 0, 0, 0.75);
  color: red;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  box-shadow: 0 0 0 2px red;
  font-size: 28px;
  line-height: 0;
  padding: 0 0 5px 5px;
  opacity: 1;
  outline: none;
  transition: 300ms;
}
.modal-lighting .btn-lightbox-close:hover {
  opacity: 0.65;
}

[data-light] {
  cursor: pointer;
}
[data-light] * {
  -o-object-fit: cover;
     object-fit: cover;
  transition: 250ms;
}
[data-light][data-light*=".mp4"] video, [data-light][data-light*=".webm"] video {
  pointer-events: none;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}
[data-light][data-light*=".mp4"]:after, [data-light][data-light*=".webm"]:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23bb260c' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M6.79 5.093A.5.5 0 0 0 6 5.5v5a.5.5 0 0 0 .79.407l3.5-2.5a.5.5 0 0 0 0-.814z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  transition: 300ms;
  filter: drop-shadow(0 0 0.15rem #fff);
}
[data-light]:hover * {
  transform: scale(1.02);
}

body:has(.modal-lighting.show) .modal-backdrop {
  --bs-backdrop-bg: #011c38;
  --bs-backdrop-opacity: 0.95;
}

/*End | Light Box*/
.card-price {
  overflow: hidden;
  border: 2px solid rgba(0, 66, 137, 0.15);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  background: rgba(0, 66, 137, 0.05);
  transition: 300ms;
}
.card-price:hover {
  border: 2px solid rgba(0, 66, 137, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.card-price .card-header {
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
  height: 110px;
  padding: 0;
  position: relative;
  background: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card-price .card-header img {
  display: block;
  max-width: 100%;
  max-height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  transform: translateY(-8px);
}

.card-amount {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  min-height: 60px;
}

.card-amount i {
  font-size: 20px;
  line-height: 1;
  font-style: normal;
}

.card-amount span {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #C12026;
}

.card-amount strong {
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: #004289;
  align-self: center;
}

.card-amount small {
  align-self: flex-end;
}

.tooltip {
  --bs-tooltip-bg: #C12026;
  --bs-tooltip-color: var(--bs-white);
  --bs-tooltip-opacity: 1;
  --bs-tooltip-border-radius: 3px;
}

.accordion-common {
  border: none;
}
.accordion-common .accordion-item:not(:last-child) {
  margin-bottom: 10px;
}
.accordion-common .accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--bs-accordion-border-color);
}
.accordion-common .accordion-button {
  background-color: rgba(var(--primary-dark), 0.02);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
}
.accordion-common .accordion-button[aria-expanded=true] {
  color: #C12026;
  font-weight: 600;
  pointer-events: none;
}
.accordion-common .accordion-button[aria-expanded=true]::after {
  filter: invert(15%) sepia(93%) saturate(2887%) hue-rotate(345deg) brightness(98%) contrast(95%);
}
.accordion-common .accordion-button:hover {
  color: #6c0000;
}
.accordion-common .accordion-collapse, .accordion-common .accordion-item {
  border-radius: 0.5rem !important;
}

.card-withimge {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
}
.card-withimge .card-imgbox {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 0;
  z-index: 0;
}
.card-withimge .card-txtbox {
  position: relative;
  z-index: 10;
  border-radius: 0.5rem;
}

footer {
  background-color: #000;
  padding-top: 1rem;
  color: #888;
}
footer .footer-info-box {
  color: #888;
}
footer .footer-info-box .footer-content {
  display: flex;
  gap: 16px;
  padding-bottom: 1.5rem;
}
footer .footer-info-box .footer-content .icon {
  font-size: 36px;
  line-height: 1;
  color: #C12026;
  align-self: center;
}
footer .footer-info-box .footer-content p {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
footer .footer-info-box .footer-content a {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
}
footer .footer-info-box .footer-content a:hover {
  color: #C12026;
}
footer .footer-logotext a {
  display: inline-block;
  margin-bottom: 1rem;
}
footer .footer-logotext a img {
  max-width: 200px;
}
footer .footer-heading {
  position: relative;
  padding-bottom: 12px;
  color: #999;
  margin-bottom: 10px;
}
footer .footer-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 36px;
  height: 2px;
  background-color: #C12026;
}
footer .footer-list {
  list-style-type: none;
  padding: 4px 0 0 0;
  margin: 0;
}
footer .footer-list li {
  margin-bottom: 10px;
}
footer .footer-list a {
  text-decoration: none;
  color: inherit;
  transition: 350ms;
  text-underline-offset: 6px;
}
footer .footer-list a:hover {
  color: #C12026;
  text-decoration: underline;
  text-decoration-color: rgba(193, 32, 38, 0.75);
}
footer .footer-form .form-control {
  background: transparent;
  color: #fff;
  border-color: rgba(200, 206, 216, 0.25);
}
footer .footer-form .form-control::-moz-placeholder {
  color: #1873d3;
}
footer .footer-form .form-control::placeholder {
  color: #1873d3;
}
footer .footer-form .bi {
  display: block;
  transform: scale(1.15) translateY(2px);
}
footer .footer-social {
  display: flex;
  gap: 10px;
}
footer .footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 40px;
  aspect-ratio: 1/1;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.125rem;
  line-height: 1;
  border-radius: 0.5rem;
}
footer .footer-social a:hover {
  color: #1873d3;
  background-color: #fff;
  border: 1px solid #1873d3;
}
footer .copyright-bottom a {
  color: inherit;
  text-decoration: none;
  transition: 350ms;
  text-underline-offset: 4px;
}
footer .copyright-bottom a:hover {
  color: #C12026;
  text-decoration: underline;
  text-decoration-color: rgba(193, 32, 38, 0.7);
}

.navbar-unline {
  position: sticky !important;
  top: 59px;
  z-index: 50;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: none;
  gap: 30px;
}
.navbar-unline .nav-underline {
  --bs-nav-underline-gap: 1rem 2rem;
}

.mobile-toggler {
  display: none;
  text-align: right;
  background-color: #011c38;
  position: sticky;
  z-index: 100;
  top: 0;
  padding-top: 1rem;
}

.goto-top {
  position: fixed;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background-color: #C12026;
  box-shadow: 0 2px 8px #C12026;
  bottom: 15px;
  right: 15px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.25s;
  border: none;
  opacity: 0;
  transform: scale(0);
  z-index: 200;
}

.goto-top.active {
  opacity: 1;
  transform: scale(1);
}

.goto-top:hover {
  color: #fff;
  background-color: #004289;
  box-shadow: 0 2px 8px #004289;
}

@media screen and (max-width: 991.9px) {
  html, body {
    overflow-x: hidden;
    overflow-x: clip;
  }
  html:has(.navbar-collapse.show) {
    overflow: hidden;
  }
  .navbar {
    --bs-navbar-toggler-transition: none;
  }
  .navbar .dropdown-menu {
    min-width: auto;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-item-padding-y: 0.4rem;
    --bs-dropdown-item-padding-x: 0.3rem;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    min-height: 100%;
    background-color: #011c38;
    transition: 250ms;
  }
  .navbar-collapse.show {
    box-shadow: -2000px 2000px 0 2000px rgba(0, 0, 0, 0.75);
    right: 0;
  }
  .navbar-collapse .nav-mobile-item {
    width: 100%;
  }
  .navbar-collapse .nav-mobile-item .btn-primary {
    width: 100%;
  }
  .navbar-nav {
    --bs-nav-link-padding-y: 0.375rem;
    gap: 0.5rem;
    padding: 0 1rem 2.5rem 1rem;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
  }
  .mobile-toggler {
    display: block;
  }
  .page-title {
    min-height: 260px;
  }
  .page-title .moving-text {
    bottom: -10px;
    font-size: calc(20px + 10vw);
  }
  .tab-filter {
    flex-wrap: wrap;
    gap: 8px 24px;
  }
}
@media screen and (max-width: 767.9px) {
  .navbar {
    --logo-width: 100px;
    box-shadow: 0 2px 4px rgba(0, 66, 137, 0.15);
    min-height: 60px;
  }
  .navbar.navbar-unline {
    box-shadow: none;
  }
  .modal-lighting .carousel-indicators li {
    width: 4px;
    height: 10px;
  }
}
@media screen and (max-width: 575.9px) {
  .navbar-unline .nav-underline {
    --bs-nav-underline-gap: 0.5rem 1.5rem;
    --bs-nav-link-padding-y: 1px;
  }
  .img-setright {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 1rem;
  }
  .goto-top {
    bottom: 8px;
    right: 8px;
  }
}