/* <================================================== global css =======================================> */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
  --main-color: #fd0000;
  --sec-color: #586b92
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 25px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--sec-color);;
  border-radius: 25px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b40701;
}

body {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
  margin-top: 0;
}




.border.rounded.p-4 {
    transition:all 0.3s ease-in-out;
    
}
 
.scrollFixed {
          position: sticky;
              font-size: 20px;
    background: #ffffff;
    top: -14px;
    padding: 4px;
    backdrop-filter: blur(7px);
}

a {
  text-decoration: none;
  color: inherit;
}

.main-button {
  background-color: var(--main-color);
  padding: 10px 35px;
  border-radius: 0 0 15px 0;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--main-color);
  transition: 0.3s;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-button:hover {
  color: var(--main-color);
  background-color: transparent;
}

.main-button i {
  margin-top: 2.5px;
  transition: 0.3s;
}

.main-button:hover i {
  margin-left: 5px;
}

.main-title {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  color: var(--sec-color);
  margin-bottom: 2rem;
}

.section-padding {
  padding: 150px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.main-head {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.main-head {
  font-style: italic;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: var(--main-color);
  -webkit-text-stroke-width: 1px;
  text-shadow: 0px 0px 5px #fd0000;
  transition: all 1.5s ease-in-out;
  text-align: center;
  letter-spacing: 0.2em;
  -webkit-animation: flicker 1.5s ease-in-out infinite alternate;
  animation: flicker 1.5s ease-in-out infinite alternate;
}

.main-head:hover {
  color: #fff;
}

@-webkit-keyframes flicker {
  0% {
    opacity: 0.8;
    text-shadow: 0px 0px 5px #fd0000;
  }

  100% {
    opacity: 1;
    text-shadow: 0px 0px 10px #fd0000;
  }
}

@keyframes flicker {
  0% {
    opacity: 0.8;
    text-shadow: 0px 0px 5px #fd0000;
  }

  100% {
    opacity: 1;
    text-shadow: 0px 0px 10px #fd0000;
  }
}

/* .sec-head {
  color: var(--main-color);
  background: linear-gradient(to right, #fd0000 0, #000000 10%, #fd0000 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s infinite;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

@-moz-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 230px;
  }

  100% {
    background-position: 230px;
  }
}

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 230px;
  }

  100% {
    background-position: 230px;
  }
}

@-o-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 230px;
  }

  100% {
    background-position: 230px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 230px;
  }

  100% {
    background-position: 230px;
  }
} */

.sec-head {
  /* background: #f32617; */
  -webkit-background-clip: text;
  /* background-clip: text; */
  color: #f32617;
  font-size: 24px;
  font-weight: 600;
  -webkit-animation: reveal 3000ms ease-in-out forwards 200ms, glow 2500ms linear infinite 2000ms;
  animation: reveal 3000ms ease-in-out forwards 200ms, glow 2500ms linear infinite 2000ms;
}

@-webkit-keyframes reveal {
  80% {
    letter-spacing: 10px;
  }

  100% {
    background-size: 300% 300%;
  }
}

@keyframes reveal {
  80% {
    letter-spacing: 10px;
  }

  100% {
    background-size: 300% 300%;
  }
}

@-webkit-keyframes glow {
  40% {
    text-shadow: 0 0 8px #fd000050;
  }
}

@keyframes glow {
  40% {
    text-shadow: 0 0 8px #fd000050;
  }
}

.bg-customed {
  background-color: #b50404;
}

.color-main {
  background-color: var(--main-color);
  border: var(--main-color);
  transition: .3s;
}

.color-main:hover,
.color-main:focus,
.color-main:active {
  border-color: var(--sec-color) !important;
  background-color: var(--sec-color) !important;
}

.event-gallery .event-image {
  width: 100%;
  height: 350px;
  border-radius: 0 0 55px 0;
}

/* <================================================== global css =======================================> */

/* <=========================================== Navbar css ==============================================> */
.navbar .megamenu {
  border-top: 5px solid var(--main-color);
  padding: 1rem 3rem;
  border-radius: 0 0 120px 0;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .navbar .has-megamenu {
    position: static !important;
  }

  .navbar .megamenu {
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    margin-top: 0;
  }
}

/* ============ desktop view ============ */

/* =============== main style ========== */
.navbar-brand img {
  width: 150px;
  height: auto;
}

.navbar .nav-item .nav-link {
  color: var(--main-color);
  font-size: 12px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.navbar .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--main-color);
  transition: 0.3s;
}

.navbar .nav-item:hover .nav-link,
.navbar .nav-item.active .nav-link {
  color: var(--sec-color);
}

.navbar .nav-item.active .nav-link::before,
.navbar .nav-item:hover .nav-link::before {
  background-color: var(--sec-color);
  width: 90%;
  left: 5%;
  transform: translateX(0%);
}

.col-megamenu .title {
  font-size: 18px;
  font-weight: 700;
  color: #0f0f0f;
}

.col-megamenu .list-unstyled li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 25px;
}

.col-megamenu .list-unstyled li a {
  text-decoration: none;
  color: var(--sec-color);
  font-size: 18px;
  font-weight: 600px;
}

.col-megamenu .list-unstyled li .megamenu-description {
  font-size: 14px;
  color: #777;
}

/* ============ mobile view ============ */
@media(max-width: 991px) {

  .navbar.fixed-top .navbar-collapse,
  .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
  }

  .navbar .nav-item .nav-link::before {
    display: none;
  }
}

/* <=========================================== Navbar css ==============================================> */

/* <=========================================== Banner css ==============================================> */
.main-banner .owl-carousel .item {
  height: calc(116dvh - 210px);
  background-size: cover;
  display: flex;
  align-items: center;
  padding-left: 20%;
  padding-right: 20%;
}

.main-banner .owl-theme .owl-nav {
  position: absolute;
  right: 0;
  margin-top: 0;
  z-index: 2;
  width: 100%;
}

.main-banner .owl-theme .owl-nav button {
  width: 35px;
  height: 35px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
}

.main-banner .owl-theme .owl-nav .owl-prev {
  border-radius: 0 0 0 15px;
  position: absolute;
  right: 160px;
}

.main-banner .owl-theme .owl-nav .owl-next {
  border-radius: 0 0 15px 0;
  position: absolute;
  right: 0;
}

.main-banner .owl-theme .owl-dots {
  position: relative;
  z-index: 1;
  margin-top: 12.5px;
  padding-right: 45px;
  width: 165px;
  float: right;
}

.main-banner .owl-theme .owl-dots .owl-dot span {
  background-color: #fff;
  border: 1px solid var(--main-color);
  transition: 0.5s;
  width: 10px;
  height: 10px;
}

.main-banner .owl-theme .owl-dots .owl-dot.active span,
.main-banner .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--main-color);
}

.main-banner .banner-content {
  width: fit-content;
  padding: 45px;
  background-color: #fff;
  border-radius: 0 0 35px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
}

.main-banner .banner-content h3 {
  color: var(--main-color);
  font-weight: 700;
  font-size: 32px;
  margin: 0;
}

.main-banner .banner-content p {
  color: #777;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}

/* <=========================================== Banner css ==============================================> */

/* <=========================================== About css ==============================================> */
.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.about-content h3 {
  font-size: 42px;
  color: var(--sec-color);
  font-weight: 600;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #999;
}

.about-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

.about-content ul li {
  width: 50%;
  list-style: none;
  color: var(--main-color);
  position: relative;
  padding-left: 22.5px;
  margin-bottom: 10px;
}

.about-content ul li::before {
  content: "\f46b";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--main-color);
}

.about .image-container {
  position: relative;
  padding: 10px;
}

.about .about-image {
  width: 100%;
  height: auto;
  border-radius: 0 0 100px 0;
  position: relative;
}

.about .image-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  border: 1px dashed var(--main-color);
  border-radius: 0 0 100px 0;
}

/* <=========================================== About css ==============================================> */

/* <=========================================== Benefits css ==============================================> */
.benefits .relative {
  position: relative;
  min-height: 300px;
}

.benefit-card {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 300px;
  width: 100%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  perspective: 600px;
  transition: 0.5s;
}

.benefit-card:hover .card-front {
  transform: rotateX(-180deg);
}

.benefit-card:hover .card-back {
  transform: rotateX(0deg);
}

.card-front {
  height: 100%;
  width: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  backface-visibility: hidden;
  transform: rotateX(0deg);
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #fff;
  border-radius: 0 0 35px 0;
}

.card-front h6 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.card-back {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  backface-visibility: hidden;
  transform: rotateX(180deg);
  transition: 0.5s;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 0 0 35px 0;
}

.card-back p {
  color: #f0f0f0;
  text-align: center;
}

/* <=========================================== Benefits css ==============================================> */

/* <=========================================== Services css ==============================================> */
.services .description  {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  color: #777;
  margin-bottom: 45px;
}

.services .service-card {
      background: #e9e9e9;
    transition: 0.3s ease-in-out;
    border-radius: 6px;
    overflow: hidden;
}

.services .service-card:hover {
  box-shadow: 0 0 15px #586b9250;
  transform: scale(1.025);
  border-bottom-right-radius: 35px;
}

.services .service-card img {
     width: 100%;
    height: 135px;
    background: #fff;
    border: 1px solid #ddd;
    object-fit: cover;
    border-radius: 6px;
}

.services .service-card .card-text {
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: start;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  color: #424141;
}

.services .service-card p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  color: #777;
  letter-spacing: 1.5px;
}

.services .service-card .main-button {
  font-size: 14px;
}

.services .tab-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.services .tab-links a {
  color: var(--sec-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.services .tab-links a::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  transition: 0.3s;
  background-color: var(--sec-color);
  width: 0%;
  height: 2px;
  border-radius: 2px;
}

.services .tab-links a:hover::before,
.services .tab-links a.active::before {
  width: 100%;
}

/* <=========================================== Services css ==============================================> */

/* <=========================================== Events css ==============================================> */
.events-carousel .item {
  background: #d0d0d0;
  padding: 45px 15px;
  transition: 0.3s;
}

.events-carousel .item .events-card {
  display: block;
  text-decoration: none;
}

.events-carousel .item .events-card .day {
  font-size: 72px;
  font-weight: 400;
  color: var(--sec-color);
  transition: 0.3s;
}

.events-carousel .item .events-card .month {
  font-size: 16px;
  font-weight: 400;
  color: var(--sec-color);
  transition: 0.3s;
}

.events-carousel .item .events-card .title {
  color: var(--sec-color);
  font-size: 18px;
  font-weight: 400;
  transition: 0.3s;
}

.events-carousel .item .events-card .link {
  color: var(--main-color);
  display: flex;
  align-items: end;
  gap: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.events-carousel .item:hover {
  background: var(--main-color);
}

.events-carousel .item:hover .events-card .day,
.events-carousel .item:hover .events-card .month,
.events-carousel .item:hover .events-card .title,
.events-carousel .item:hover .events-card .link {
  color: #fff;
}

/* <=========================================== Events css ==============================================> */

/* <=========================================== Customer Support css ==============================================> */
.customer-support .bg-image {
  position: relative;
  margin-bottom: 250px;
}

.customer-support .bg-image img {
  width: 100%;
}

.customer-support .bg-image .customer-card {
  padding: 35px;
  background: var(--sec-color);
  border-radius: 0 0 55px 0;
  position: absolute;
  bottom: -15%;
  left: 50%;
  max-width: 500px;
}

.customer-support .bg-image .customer-card .title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 25px;
}

.customer-support .bg-image .customer-card .description {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1.6px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 25px;
}

.customer-support .description {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  color: #777;
  margin-bottom: 45px;
}

.customer-support .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.customer-support .social-icons a {
  text-decoration: none;
  font-size: 38px;
  color: var(--sec-color);
}

/* <=========================================== Customer Support css ==============================================> */

/* <=========================================== Footer css ==============================================> */
footer{
    text-align: center;
}
footer .links-head {
  margin: 20px 0;
  font-size: 22px;
  font-weight: 600;
  color: #d0d0d0;
}

footer .footer-link {
  color: #d0d0d0;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
}

footer .footer-icon {
  color: #d0d0d0;
  font-size: 24px;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
}
footer a img{
    width: 250px;
}
footer p{
    color: #fff;
    margin-top: 10px;
    font-size: 15px;
}
.fa-youtube:before {
    content: "\f167";
    color: red;
    background-color: white;
    padding: 8px;
    border-radius: 7px;
}
.fa-linkedin-in:before {
    content: "\f0e1";
    background-color: blue;
    padding: 9px;
    border-radius: 8px;
}
.copy_rights a{
    color: #d0d0d0 !important;
}
.copy_rights{
           text-transform: lowercase;
           font-size: 12px;
    }
.footer-social-icons{
    padding-inline-start: 0px;}
@media(max-width: 1000px) {
    .copy_rights{
        font-size: 11px;
    padding: 20px;
    }
    .main-banner .owl-carousel .item {
    height: calc(50dvh - 210px);
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 20%;
    padding-right: 20%;
}
.main-banner .owl-theme .owl-nav {
    position: absolute;
    right: 3%;
}
.main-banner .owl-theme .owl-dots {
    position: relative;
    padding-right: 69px;}
}
/* <=========================================== Footer css ==============================================> */

/* <=========================================== Floating Button css ==============================================> */
.floating-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  left: 0;
  bottom: 15px;
  box-shadow: 0 0 10px #00000025;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 99;
}

.floating-buttons a {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}

.floating-buttons a:first-child {
  border-top-right-radius: 10px;
  background-color: #12039f;
}

.floating-buttons a:last-child {
  border-bottom-right-radius: 10px;
  background-color: #048312;
}

.floating-buttons a:hover {
  opacity: 0.75;
}

/* <=========================================== Floating Button css ==============================================> */

/* <=========================================== Breadcrumb css ==============================================> */
.breadcrumb {
  padding: 125px 0;
  background-size: cover;
  position: relative;
  margin-bottom: 0;
}

.breadcrumb::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #00000050;
  z-index: 0;
}

.breadcrumb .content {
  position: relative;
  z-index: 1;
}

.breadcrumb h2 {
  font-weight: 600;
  color: #fff;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  gap: 25px;
  list-style: none;
}

.breadcrumb-list li {
  position: relative;
  color: #fff;
  font-weight: 600;
}

.breadcrumb-list li:not(:last-child)::before {
  content: "\f0da";
  font-family: "Font Awesome 5 pro";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-40%);
  color: #fff;
}

.breadcrumb-list .current {
  color: var(--main-color);
  pointer-events: none;
}

/* <=========================================== Breadcrumb css ==============================================> */

/* <=========================================== Acordion css ==============================================> */
.accordion-body,
.accordion-item {
  background-color: transparent;
  border: none;
}
.accordion_contact{
    background-color: #fafafa;
}
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #fd0000;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}
/* <=========================================== Acordion css ==============================================> */

/* <=========================================== Map css ==============================================> */
.map {
  height: 450px;
}

.map iframe {
  height: 100%;
}

/* <=========================================== Map css ==============================================> */

/* <=========================================== Table css ==============================================> */
.table-section table {
  border-left: 5px solid var(--main-color);
}

.table-section .table tr th,
.table-section .table tr td {
  padding: 15px;
  text-align: center;
}

.table-section .grade {
  color: var(--sec-color);
}

/* <=========================================== Table css ==============================================> */

/* <=========================================== How To Work css ==============================================> */
.how-to-work {
  display: flex;
  flex-direction: column;
  background-color: var(--sec-color);
}

.how-to-work img {
  width: 100%;
  height: 200px;
}

.how-to-work .content {
  padding: 25px;
}

.how-to-work .content h6 {
  color: #fff;
  margin-bottom: 15px;
}

.how-to-work .content p {
  color: #d0d0d0;
}

/* <=========================================== How To Work css ==============================================> */

/* <=========================================== Responsive css ==============================================> */

@media(width<768px) {
  body {
    overflow-x: hidden;
  }

  .navbar .megamenu {
    padding: 1rem 1.5rem;
    border-radius: 0 0 50px 0;
  }

  .col-megamenu .list-unstyled li {
    margin-top: 15px;
  }

  .main-title {
    font-size: 32px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .main-banner .owl-carousel .item {
    padding-left: 10%;
    padding-right: 10%;
  }

  .main-banner .banner-content {
    padding: 15px;
  }

  .main-banner .owl-theme .owl-nav,
  .main-banner .owl-theme .owl-nav .owl-next,
  .main-banner .owl-theme .owl-nav .owl-prev {
    position: static;
  }

  .main-banner .owl-theme .owl-dots {
    padding-right: unset;
    position: static;
    text-align: center;
    width: 100%;
  }

  .about .image-container {
    margin-top: 25px;
  }

  .about-content h3 {
    font-size: 32px;
  }

  .customer-support .bg-image .customer-card {
    position: relative;
    left: unset;
    padding: 10px;
  }

  .customer-support .bg-image .customer-card .title {
    font-size: 22px;
  }

  .customer-support .bg-image .customer-card .description {
    text-align: unset;
    font-size: 14px;
  }

  .customer-support .bg-image {
    margin-bottom: 50px;
  }

  footer .links-head {
    font-size: 16px;
  }

  footer .footer-link {
    font-size: 12px;
  }
  .breadcrumb {
    padding: 20px 0;
  }
  .breadcrumb-list {
    margin-top: 20px;
  }
}





.owl-carousel .owl-item {
  overflow: hidden;
}
.see-more{
   display: block;
    text-align: start;
    margin-block-start: 12px;
    border-bottom: 1px solid #ddd;
    width: fit-content;
    background: #ffffff;
    padding: 4px 0;
    color: #586b92;
}

.section-padding.services.bg-light p b,.section-padding.services.bg-light p strong {
    font-weight: bolder;
    margin-block: 10px;
    display: block;
}

/* <=========================================== Responsive css ==============================================> */