* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
}

body {
  font-family: var(--theme-font);
  box-sizing: border-box;
}

:root {
  --theme-color: #d82221;
  --theme-color2: #082060;
  --theme-font: "Manrope", sans-serif;
  --heading-font: "Manrope", sans-serif;
}

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

p {
  color: #212121;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--theme-font);
}

.darkbg {
  background-color: #1d1f22;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 300;
}

.theme-color {
  color: var(--theme-color);
  font-family: inherit;
}

section {
  overflow: hidden;
}

.theme-color2 {
  color: var(--theme-color2);
  font-family: inherit;
}

.common-img {
  border: solid 1px #000;
  padding: 10px;
}

.toggle-btns {
  display: none;
}

ul li {
  color: #212121;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
}

.common-heading {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.1;
  color: #1d1f22;
  letter-spacing: -1.5px;
  margin-bottom: 3rem;
  position: relative;
  font-family: var(--theme-font);
}
.common-heading span {
  color: var(--theme-color);
  position: relative;
  display: inline-block;
}
.common-heading.with-line {
  padding-bottom: 20px;
}
.common-heading.with-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 2px;
}

.common-space {
  padding: 95px 0;
}

.common-btn {
  background-color: var(--theme-color);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-weight: 300;
  text-transform: uppercase;
  border: solid 1px #ddd;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
  border: solid 1px var(--theme-color);
  border-radius: 0px;
}
.common-btn:hover {
  background-color: transparent;
  color: var(--theme-color);
}

.header-wrappers {
  display: flex;
  width: 100%;
}

.logo-area {
  padding: 0;
  margin-right: 17px;
}
.logo-area img {
  transition: all 0.3s;
  max-width: 152px;
}

.right-side {
  width: 100%;
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--theme-color);
  padding: 10px 0;
  color: #fff;
}
.top-bar .top-info span {
  margin-right: 25px;
  font-size: 14px;
  font-weight: 400;
}
.top-bar .top-info span i {
  margin-right: 8px;
}
.top-bar .top-socials a {
  color: #fff;
  margin-left: 20px;
  font-size: 15px;
  transition: 0.3s;
}
.top-bar .top-socials a:hover {
  opacity: 0.8;
}

/* --- Main Header --- */
.main-header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #f2f2f2;
}
.main-header .container-fluid {
  width: 100%;
  display: flex;
}
.main-header .header-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.main-header .nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header .nav-menu ul li a {
  padding: 10px 18px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}
.main-header .header-right {
  display: flex;
  align-items: center;
}
.main-header .header-right .call-info {
  display: flex;
  align-items: center;
}
.main-header .header-right .call-info .call-icon {
  margin-right: 10px;
}
.main-header .header-right .call-info .call-icon i {
  font-size: 28px;
  color: var(--theme-color);
}
.main-header .header-right .call-info .call-text span {
  display: block;
  font-size: 12px;
  color: #777;
  line-height: 1;
}
.main-header .header-right .call-info .call-text a {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color2);
  line-height: 1.2;
}
.main-header .header-right .search-btn {
  margin-left: 25px;
  padding-left: 25px;
  border-left: 1px solid #ddd;
}
.main-header .header-right .search-btn a i {
  font-size: 18px;
  color: var(--theme-color2);
}

header.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999999;
  transform: translateY(0);
}
header.sticky .top-bar {
  display: none;
}
header.sticky {
  background-color: #fff;
}
header.sticky .logo-area img {
  max-width: 140px;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  background-color: #000;
}
.hero-video-wrapper .video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero-video-wrapper .video-overlay .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-video-wrapper .video-overlay .hero-content h1 {
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-video-wrapper .video-overlay .hero-content h1 span {
  color: var(--theme-color);
}

@media (max-width: 768px) {
  .hero-video-wrapper {
    height: 60vh;
  }
}
.hero-bnr {
  /* Main item image */
}
.hero-bnr .owl-carousel .owl-item .item img {
  transform: scale(1);
  transition: transform 4.2s ease-in-out;
}
.hero-bnr .owl-carousel .item img {
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-bnr {
  /* Active current slide zoom effect */
}
.hero-bnr .owl-carousel .owl-item.active .item img {
  transform: scale(1.12);
}
.hero-bnr {
  /* Optional smooth overflow hide */
}
.hero-bnr .owl-carousel .item {
  overflow: hidden;
}
.hero-bnr {
  /* Container for the buttons */
}
.hero-bnr .owl-nav {
  position: absolute;
  top: 41%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-bnr {
  /* Individual Buttons */
}
.hero-bnr .owl-prev, .hero-bnr .owl-next {
  position: absolute;
  pointer-events: auto;
  background: #333 !important;
  color: #fff !important;
  padding: 10px 15px !important;
  border-radius: 50%;
  font-size: 20px;
  width: 50px;
  height: 50px;
  transition: background 0.3s ease;
}
.hero-bnr .owl-prev {
  left: 30px;
}
.hero-bnr .owl-next {
  right: 30px;
}
.hero-bnr {
  /* Hover effects */
}
.hero-bnr .owl-prev:hover, .hero-bnr .owl-next:hover {
  background: var(--theme-color) !important;
}
.hero-bnr .bnr-content-wrappers {
  position: absolute;
  left: 0;
  bottom: 16%;
  width: 100%;
  z-index: 9;
}
.hero-bnr .img-wrappers {
  position: relative;
}
.hero-bnr .img-wrappers video {
  height: 77vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-bnr h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}
.hero-bnr p {
  color: #fff;
}
.hero-bnr .bnr-btns {
  display: flex;
  margin-top: 20px;
}

.services-section {
  background-color: #fcfcfc;
}
.services-section .section-title-box .sub-tag {
  color: var(--theme-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.services-section .section-title-box .title-divider {
  background-color: var(--theme-color);
  width: 60px;
  height: 2px;
  margin: 12px auto;
}
.services-section .section-title-box .main-title {
  color: var(--theme-color2);
  font-size: 42px;
  font-weight: 800;
}
.services-section .service-card {
  background: #fff;
  height: 100%;
  transition: 0.4s;
}
.services-section .service-card .service-img {
  overflow: hidden;
}
.services-section .service-card .service-img img {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.services-section .service-card .service-content {
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  margin: -30px 20px 0;
  position: relative;
  z-index: 2;
  min-height: 251px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-section .service-card .service-content .category-link {
  background-color: var(--theme-color);
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-weight: 700;
  text-transform: capitalize;
  transition: 0.3s;
  cursor: pointer;
  display: block;
  margin-top: 14px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}
.services-section .service-card .service-content .category-link:hover {
  background-color: #af1615;
}
.services-section .service-card .service-content h3 {
  color: var(--theme-color2);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
}
.services-section .service-card .service-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.services-section .service-card:hover {
  transform: translateY(-10px);
}
.services-section .service-card:hover .service-img img {
  transform: scale(1.1);
}
.services-section .service-card:hover .service-content {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .services-section .section-title-box .main-title {
    font-size: 32px;
  }
  .services-section .service-card .service-content {
    margin: -20px 10px 0;
    padding: 25px 15px;
  }
}
.brands-section {
  background-color: #ffffff;
  padding: 80px 0;
}
.brands-section .main-title {
  color: var(--theme-color2);
  font-size: 36px;
  font-weight: 800;
}
.brands-section .brands-carousel {
  padding: 0 40px;
}
.brands-section .brands-carousel .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
.brands-section .brands-carousel .brand-item img {
  width: auto;
  border-radius: 5px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 14px -9px #000;
  margin-top: 11px;
  margin-bottom: 9px;
}
.brands-section .brands-carousel .brand-item img:hover {
  opacity: 1;
}
.brands-section .brands-carousel {
  /* Owl Navigation Customization to match image */
}
.brands-section .brands-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
  color: #999 !important;
  font-size: 30px !important;
  transition: 0.3s;
}
.brands-section .brands-carousel .owl-nav button:hover {
  color: var(--theme-color) !important;
}
.brands-section .brands-carousel .owl-nav button.owl-prev {
  left: -30px;
}
.brands-section .brands-carousel .owl-nav button.owl-next {
  right: -30px;
}

.testimonials-section {
  background-color: #f8f9fa;
}
.testimonials-section .main-title {
  color: var(--theme-color2);
  font-size: 36px;
  font-weight: 800;
}
.testimonials-section .testimonial-card {
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin: 15px;
}
.testimonials-section {
  /* Slider Dots Customization */
}
.testimonials-section .owl-dots {
  margin-top: 30px !important;
}
.testimonials-section .owl-dots .owl-dot span {
  background: #ddd !important;
}
.testimonials-section .owl-dots .owl-dot.active span {
  background: var(--theme-color) !important;
}

.about-us-section {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.about-us-section::before {
  content: "";
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80%;
  background-image: url("img/world-map-dots.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  z-index: 0;
}
.about-us-section .container {
  position: relative;
  z-index: 1;
}
.about-us-section .about-video-box {
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}
.about-us-section .about-video-box iframe {
  display: block;
}
.about-us-section .about-content {
  padding-left: 40px;
}
.about-us-section .about-content .sub-tag {
  color: var(--theme-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.about-us-section .about-content .title-divider {
  width: 55px;
  height: 2px;
  background-color: var(--theme-color);
  margin: 10px 0 25px;
}
.about-us-section .about-content .main-title {
  font-size: 45px;
  font-weight: 800;
  color: var(--theme-color2);
  margin-bottom: 25px;
  line-height: 1.1;
}
.about-us-section .about-content .about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  text-align: justify;
}

.contact-section {
  position: relative;
  background-color: #f4f6f9;
  background-image: linear-gradient(45deg, #ffffff, rgba(255, 255, 255, 0.4117647059)), url(img/left-bg-events-home1.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.contact-section .contact-info-wrapper .sub-tag {
  color: var(--theme-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.contact-section .contact-info-wrapper .title-divider {
  width: 45px;
  height: 2px;
  background-color: var(--theme-color);
  margin: 10px 0 20px;
}
.contact-section .contact-info-wrapper .main-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--theme-color2);
  margin-bottom: 40px;
}
.contact-section .contact-info-wrapper .contact-items-list .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.contact-section .contact-info-wrapper .contact-items-list .contact-item .icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 10px 20px rgba(216, 34, 33, 0.2);
}
.contact-section .contact-info-wrapper .contact-items-list .contact-item .text-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}
.contact-section .contact-info-wrapper .contact-items-list .contact-item .text-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
}
.contact-section .contact-form-box {
  background-color: var(--theme-color2);
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-form-box .form-control {
  background-color: #fff;
  border: none;
  border-radius: 0;
  padding: 15px 20px;
  font-size: 15px;
  color: #333;
}
.contact-section .contact-form-box .form-control::-moz-placeholder {
  color: #999;
}
.contact-section .contact-form-box .form-control::placeholder {
  color: #999;
}
.contact-section .contact-form-box .form-control:focus {
  box-shadow: none;
  outline: 2px solid var(--theme-color);
}
.contact-section .contact-form-box textarea.form-control {
  resize: none;
}
.contact-section .contact-form-box .submit-btn {
  background-color: var(--theme-color);
  color: #fff;
  border: none;
  padding: 12px 35px;
  font-weight: 700;
  text-transform: capitalize;
  transition: 0.3s;
  cursor: pointer;
}
.contact-section .contact-form-box .submit-btn:hover {
  background-color: #fff;
  color: var(--theme-color);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-section .main-title {
    font-size: 32px;
  }
  .contact-section .contact-form-box {
    padding: 30px;
    margin-top: 50px;
  }
}
/* Responsive adjustment */
@media (max-width: 991px) {
  .about-us-section::before {
    display: none;
  }
  .about-us-section .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
  .about-us-section .about-content .main-title {
    font-size: 32px;
  }
}
.site-footer {
  background-color: #333333;
  padding: 7px 0;
}
.site-footer .container p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.5px;
}

.services-listing {
  background-color: #fcfcfc;
}
.services-listing .section-title-box .sub-tag {
  color: var(--theme-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.services-listing .section-title-box .title-divider {
  background-color: var(--theme-color);
  width: 60px;
  height: 2px;
  margin: 12px auto;
}
.services-listing .section-title-box .main-title {
  color: var(--theme-color2);
  font-size: 42px;
  font-weight: 800;
}
.services-listing .service-card {
  background: #fff;
  height: 100%;
  transition: 0.4s;
}
.services-listing .service-card .service-img {
  overflow: hidden;
  position: relative;
}
.services-listing .service-card .service-img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.services-listing .service-card .service-img .date-new {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--theme-color);
  color: #fff;
  padding: 4px 12px;
}
.services-listing .service-card .service-content {
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  position: relative;
  z-index: 2;
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-listing .service-card .service-content .category-link {
  background-color: var(--theme-color);
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-weight: 700;
  text-transform: capitalize;
  transition: 0.3s;
  cursor: pointer;
  display: block;
  margin-top: 14px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}
.services-listing .service-card .service-content .category-link:hover {
  background-color: #af1615;
}
.services-listing .service-card .service-content h3 {
  color: var(--theme-color2);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
}
.services-listing .service-card .service-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.services-listing .service-card:hover {
  transform: translateY(-10px);
}
.services-listing .service-card:hover .service-img img {
  transform: scale(1.1);
}
.services-listing .service-card:hover .service-content {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .services-listing .section-title-box .main-title {
    font-size: 32px;
  }
  .services-listing .service-card .service-content {
    margin: -20px 10px 0;
    padding: 25px 15px;
  }
}
.breadcrumb-section {
  background-image: linear-gradient(45deg, #232323, rgba(0, 0, 0, 0.8392156863));
  padding: 40px 0;
}
.breadcrumb-section h1 {
  font-weight: 600;
  color: #fff;
}
.breadcrumb-section ul {
  padding-left: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.breadcrumb-section ul li {
  color: #fff;
  list-style: none;
  display: inline;
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}
.breadcrumb-section ul li:before {
  position: absolute;
  right: -8px;
  top: -1px;
  color: #fff;
  content: "\f105";
  font-family: "fontawesome";
}
.breadcrumb-section ul li a {
  color: #fff;
}

.search-btn {
  padding: 12px 25px;
  cursor: pointer;
}

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.search-popup.active {
  display: flex;
}

.search-box {
  background: #fff;
  padding: 30px 30px 4px;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  position: relative;
}

.search-box form {
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  outline: none;
}

.search-box button[type=submit] {
  padding: 12px 20px;
  background: var(--theme-color);
  color: #fff;
  border: none;
  cursor: pointer;
}

.close-popup {
  position: absolute;
  top: -3px;
  right: 10px;
  background: none;
  border: none;
  font-size: 27px;
  cursor: pointer;
}

.whatsapp-mobile-wraapper {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
  width: 100%;
}

.whatsapp-bt {
  background-color: #048737;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 9px;
}

.cll-bt {
  text-align: center;
  background-color: #d80914;
  width: 100%;
  color: #fff;
  padding: 9px;
}

.services-details img {
  border-radius: 5px;
  margin-bottom: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.services-details .gal-wrapper {
  -moz-column-count: 3;
       column-count: 3;
  gap: 15px;
  row-gap: 15px;
}

.whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #00e676;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  margin-top: 0px;
  line-height: 50px;
  transition: all ease-in-out 0.2s;
  bottom: 41px;
  left: 12px;
}/*# sourceMappingURL=style.css.map */