/********** Template CSS **********/
:root {
  --primary: #e5242a;
  --secondary: #ea8a24;
  --light: #f7faff;
  --dark: #1d1d27;
}
body {
  background-color: #fff!important;
}
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
  font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}
.btn-primary  {
  background-color: #e5242a!important;
  font-size: 16px!important;
  border-color: #e5242a!important;
}
.btn-primary:hover {
  background-color: #fff!important;
  color: #e5242a!important;
  border-color: #e5242a!important;
}
.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}





/* Navbar General */
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: var(--light) !important;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    padding: 10px 20px;
    color: #333 !important;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    color: var(--secondary) !important;
    background-color: #f8f9fa;
}

/* Submenu Styles */
.dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-item:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown-menu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    /* Mobile Submenu Adjustments */
    .navbar .dropdown-menu .dropdown-menu {
        position: relative;
        top: auto;
        left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, 0.1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}

.logo {
    margin-left: 3rem;
    width: fit-content;
}

@media (max-width: 768px) {
    .logo {
        margin: auto;
    }
}




  
/*** Header ***/
#header-carousel .carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
  width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 500px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#header-carousel .carousel-indicators [data-bs-target] {
  width: 60px;
  height: 60px;
  text-indent: 0;
  margin-bottom: 15px;
  border: 2px solid #ffffff;
  border-radius: 60px;
  overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/carousel-1.jpg) center center no-repeat !important;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 4px;
  bottom: 0;
  left: 0;
  background: var(--dark);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  bottom: 0;
  left: 50px;
  background: var(--dark);
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -25px;
}

.section-title.text-center::after {
  left: 50%;
  margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 2px;
  left: 0;
  background: rgb(234, 138, 36);
}
.section-title h6::after {
  top: 5px;
  left: 3px;
}

/*** About Us ***/
.second {
  display: flex;
  margin: auto;
  height: auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about-top {
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: center;
  background-color: #93969e;
  margin-top: 80px;
}
.about-container {
  display: flex;
  justify-content: center;
  max-width: 80%;
  align-items: center;
  gap: 30px;
}
.about-left,
.about-right {
  flex: 1;
}
@media (max-width: 786px) {
  .about-left {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .about-description {
    flex-direction: column;
  }
  .about-left,
  .about-right {
    width: 100%;
  }
}

/* this is for testing cards */
.left-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
}
.lefts-left {
    margin: 50px 15px 0px 0px;
}
.about-lefts-right {
     line-height: 1.3;
}
.card-1 {
  max-width: 275px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  justify-content: center;
}

.card-1:hover {
  transform: translateY(-5px);
  background-color: #fff;
}

.card-icon {
  margin-bottom: 30px;
}

.card-img {
  width: 50px;
  height: 50px;
}

h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c3e50;
}

p {
  font-size: 16px;
  color: #7f8c8d;
}

/* Responsive Styling */
    @media (max-width: 768px) {
      .left-cards {
        grid-template-columns: 1fr; 
      }
    
      .card {
        margin-bottom: 20px;
      }
    }

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-heading h4 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-heading h1 {
  color: #2c3e50;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-heading p {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-description {
  display: flex;
  justify-content: space-between;
}
.about-bullets,
.about-image {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .about-description {
    flex-direction: column;
  }
}

.about-bullets {
  flex: 1;
}

.about-bullets h2 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-bullets ul {
  list-style: none;
  padding: 0;
}

.about-bullets ul li {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.about-bullets ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: var(--primary); 
}

.about-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-image-1 {
  width: 300px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.about-image-2 {
  width: 130px;
  border-radius: 500px;
  border: 10px solid #fff;
  margin: 110px 0px 0px 180px;
  position: absolute;
}
.about-buttton {
  max-width: 100%;
}

/*** Service ***/
.service-item {
  position: relative;
  height: 350px;
  padding: 30px 25px;
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item .service-icon {
  margin: 0 auto 20px auto;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  background-image: url("../img/icon-shape-primary.png"); 
  background-position: center center;
  background-repeat: no-repeat;
  transition: 0.5s;
}

.service-item:hover .service-icon {
  color: var(--primary);
  background-image: url("../img/icon-shape-white.png");
}

.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover h5,
.service-item:hover p {
  color: var(--light);
}

.service-item a.btn {
  position: relative;
  display: flex;
  color: var(--primary);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover a.btn {
  color: var(--primary);
}

.service-item a.btn::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  top: 0;
  left: 0;
  border-radius: 35px;
  background: #dddddd;
  transition: 0.5s;
  z-index: -1;
}

.service-item:hover a.btn::before {
  width: 100%;
  background: var(--light);
}

/*** Facts ***/

.counter {
    font-family: inherit;
    max-width: 1200px;
    margin-top: 80px;
    padding: 10px 84px;
    display: flex;
    flex-direction: column;
}
.counter-h1 {
    color: #1a237e;
    font-size: 2.5em;
    margin-bottom: 0;
}
.counter-h2 {
    color: #1a237e;
    font-size: 2em;
    margin-top: 0;
}
.counter-subtitle {
    color: #666;
    margin-bottom: 40px;
}


.fact-item {
  transition: 0.5s;
}

.fact-item:hover {
  margin-top: -10px;
  background: #ffffff !important;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

/*** Team ***/
.team-item {
  position: relative;
  transition: 0.5s;
  z-index: 1;
}
.team-section {
  overflow: hidden;
}

.team-item::after {
  position: absolute;
  content: "";
  top: 3rem;
  right: 3rem;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  z-index: -1;
}

.team-item:hover::after {
  background: var(--primary);
}

.team-item h5,
.team-item small {
  transition: 0.5s;
}

.team-item:hover h5,
.team-item:hover small {
  color: var(--light);
}

.container-xxl py-5 {
  overflow: hidden;
}

/*** Testimonial ***/
.testimonial-item {
  position: relative;
  text-align: center;
  padding-top: 30px;
}

.testimonial-item .testimonial-text {
  position: relative;
  text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
  position: absolute;
  width: 60px;
  height: 60px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
  position: absolute;
  content: "";
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  border: 30px solid;
  border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
  position: absolute;
  content: "";
  bottom: -59px;
  left: 50%;
  transform: translateX(-50%);
  border: 30px solid;
  border-color: #ffffff transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-dots {
  margin-top: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--light);
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 6px;
  left: 6px;
  border-radius: 16px;
  background: var(--light);
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
  background: var(--primary);
}

/*** Blog Start ***/
.blog .blog-item {
  height: 100%;
  background: var(--bs-light);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  background: rgba(246, 138, 10, 0.3);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
  width: 100%;
  height: 100%;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-heading {
  position: relative;
  background: var(--bs-white);
}

.blog .blog-item .blog-heading a.h4 {
  position: relative;
  width: 100%;
  display: inline-flex;
  transition: 0.5s;
  z-index: 2;
}

.blog .blog-item .blog-heading::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item:hover .blog-heading::after {
  width: 100%;
  background: var(--primary);
}

.blog .blog-item:hover .blog-heading a.h4 {
  color: var(--bs-white);
}

.blog .blog-item:hover .blog-heading a.h4:hover {
  color: var(--bs-white);
}
/*** Blog End ***/




/*** Footer ***/
.footer {
  background-image: url("../img/footer.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}


.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(256, 256, 256, 0.1);
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Project Start */
.five {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 60px;
}

.project-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  padding: 0px 160px;
  gap: 20px;
}

.project-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 60%;
  position: relative;
}

.project-image-box {
  background-color: #dfdfdf;
  max-width: 43rem;
  height: 380px;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 0px 40px 30px 40px;
  overflow: hidden;

  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Hide description by default */
.project-image-box h2 {
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  margin: 0;
  color: #fff; /* White text for better readability */
}

.project-image-box p {
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  margin: 0;
  color: #fff; 
  opacity: 0; 
}

/* On hover, reveal title and description with staggered effect */
.project-image-box:hover h2 {
  transform: translateY(0);
}

.project-image-box:hover p {
  transform: translateY(0);
  opacity: 1; /* Show the description */
  transition-delay: 0.1s;
}

/* Specific background images for each box */
.project-image-box-1 {
  background-image: url("../img/proj-1.jpeg");
}

.project-image-box-2 {
  background-image: url("../img/proj-2.jpeg");
}

.project-image-box-3 {
  background-image: url("../img/proj-3.jpeg");
}

/*.project-image-box-4 {*/
/*  background-image: url("../img/young-asian-woman-applying-compressive-tourniquet-2023-11-27-05-03-11-utc.jpg");*/
/*}*/

/*.project-image-box-5 {*/
/*  background-image: url("../img/young-people-in-the-office-2023-11-27-04-59-11-utc.jpg");*/
/*}*/

.project-right {
  width: 40%;
  position: sticky;
  top: 0;
  height: 45vh;
  padding-top: 75px;
}

.project-right h4 {
  color: var(--secondary);
}

.project-right h4 span {
  color: var(--primary);
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .project-container {
    padding: 0px 40px;
  }

  .project-left {
    width: 100%;
  }

  .project-right {
    width: 100%;
    height: auto;
    padding-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .project-container {
    flex-direction: column;
    position: relative;
    padding: 0px 20px;
  }

  .project-right {
    position: relative;
    top: 0;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .project-image-box {
    height: auto;
    padding: 20px;
  }
}
/* Project End */





/*page.php Start*/

.content-container {
    padding: 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
}


@media (max-width: 768px) {
    .content-container {
        padding: 15px; 
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 10px; 
    }
}


.page-content {
    line-height: 1.6;
    font-size: 1.1em; 
}

.content-container {
    padding: 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
}


@media (max-width: 768px) {
    .content-container {
        padding: 15px; 
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 10px; 
    }
}

.page-content {
    line-height: 1.6; 
    font-size: 1.1em; 
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}
/*page.php End*/



/*SMO Packages Start*/

 .table thead th {
            background-color: #e5242a;
            color: white;
            text-align: center;
        }
        .table tbody td {
            text-align: center;
        }
        .table tbody td:first-child {
            text-align: left;
        }
        .table tfoot td {
            background-color: #000;
            color: white;
            text-align: center;
        }
        .checkmark {
            color: #4b0082;
        }
        .crossmark {
            color: #d9534f;
        }
/*SMO Packages End*/

/*/SEO Packages Start/*/
.seopackages {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /*flex-wrap: wrap;*/
    padding: 20px;
    background-color: #f5f5f5;
}

.pricing-card {
    width: 280px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin: 20px;
}

.pricing-card .header {
    text-align: center;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.header.gold { background-color: var(--secondary); }
.header.platinum { background-color: var(--primary); }
.header.diamond { background-color: var(--secondary); }
.header.titanium { background-color: var(--primary); }

.pricing-card .price {
    text-align: center;
    padding: 20px;
    font-size: 36px;
    color: #e74c3c;
}

.pricing-card .price span {
    font-size: 16px;
    color: #333;
}

.pricing-card .features {
    padding: 0 20px 5px 20px;
    text-align: center;
    color: #333;
}

.pricing-card .features p {
    margin: 10px 0;
    font-size: 18px;
}

.pricing-card .features p span {
    font-weight: bold;
}

.pricing-card .subscribe {
    text-align: center;
    padding: 20px;
}

.pricing-card .subscribe img {
    width: 130px;
}

.pricing-card .payment-methods {
    text-align: center;
    padding: 10px 0;
}

.pricing-card .payment-methods img {
    width: 40px;
    margin: 0 5px;
}

/* Responsive CSS */
@media (max-width: 768px) {
    .seopackages {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .pricing-card .price {
        font-size: 28px;
    }

    .pricing-card .features p {
        font-size: 16px;
    }
}
/*/SEO Packages End/*/



/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


