/* general style start */
:root {
  --dark-color: #4a4a4a;
  --light-color: #c2391b;
  --gray-color: #7c7c7c;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Montserrat";
  overflow-x: hidden;
  font-weight: 400;
}

.inner-container {
  max-width: 1200px;
  margin: auto;
}

ul {
  list-style: none;
}

.row {
  overflow: hidden;
}

.padding-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-b {
  padding-bottom: 80px;
}

.padding-t {
  padding-top: 80px;
}

.heading-title {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.heading-title h2 {
  font-size: 30px;
  font-weight: 700;
}

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

.text-bold {
  font-weight: 600 !important;
}

.font-s {
  font-size: 14px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-18 {
  font-size: 18px !important;
}

.font-m {
  font-size: 26px !important;
}

.font-l {
  font-size: 30px !important;
}

.font-xl {
  font-size: 46px !important;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  color: var(--light-color);
}

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

.bg-gray {
  background-color: #f5f5f5 !important;
}

.logo {
  max-width: 200px;
}

.logo img {
  width: 100%;
}
/* header nav dropdown */
header {
  position: absolute;
}

header .header ul li {
  position: relative;
}
header .header > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header ul li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

header .header ul li .arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
}

header .header ul li .menu-toggle {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  min-width: 160px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1000;
}

header .header ul li .menu-toggle .toggle-links ul li a {
  display: block;
  padding: 8px 14px;
  white-space: nowrap;
}

header .header ul li .menu-toggle .toggle-links ul li a:hover {
  background: #f6f6f6;
}

/* show on hover */
header .header ul li.drop-down-arrow:hover .menu-toggle {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header .header ul li.drop-down-arrow:hover .arrow {
  transform: rotate(180deg);
}

blockquote:not([class]) {
  border-left: 3px solid var(--light-color);
  padding: 0.5em 1.5em;
}

.primary-btn,
.secondary-btn {
  background-color: var(--light-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 1000px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--light-color);
  display: flex;
  justify-content: center;
  width: 270px;
}

.secondary-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.secondary-btn:hover {
  background-color: var(--light-color);
  color: #fff;
  border-color: var(--light-color);
}

.primary-btn:hover {
  background-color: var(--dark-color);
  color: #fff;
  border-color: var(--dark-color);
}

/* hero section start */
.hero-content h2 {
  font-size: 42px;
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h2 strong {
  color: var(--light-color);
}

.hero-content p {
  font-size: 20px;
  color: var(--dark-color);
  margin-bottom: 30px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--light-color);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn:hover {
  background-color: var(--dark-color);
  transform: scale(1.05);
}

.hero-cta span {
  font-size: 18px;
  color: var(--dark-color);
  font-weight: 600;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* hero section end */

/* Full Width Products Slider Section */
.full-width-products-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.full-width-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.slide-content p {
  max-width: 600px;
  color: #fff;
}

.product-badge {
  background: var(--light-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.slide-content h2 {
  margin-bottom: 100px !important;
}

.slide-content h3 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-content p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 100px;
  opacity: 0.9;
}

/* .slide-content .view-service-btn {
  padding: 15px 70px;
  font-size: 16px;
} */

/* Custom Navigation */
.custom-navigation {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 50px;
}

.slide-counter {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.nav-arrows {
  display: flex;
  gap: 10px;
}

.custom-prev,
.custom-next {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-prev:hover,
.custom-next:hover {
  background: var(--dark-color);
  transform: scale(1.1);
}

/* Responsive styles for full width slider */
@media (max-width: 768px) {
  .slide-content h3 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .custom-navigation {
    bottom: 20px;
    right: 20px;
  }

  .nav-container {
    padding: 10px 15px;
  }

  .custom-prev,
  .custom-next {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
/* Full Width Products Slider Section End */
/* Our Services Section start  */
.service-content h2 {
  font-size: 26px;
  font-weight: 700;
}

.services-section img {
  border-radius: 8px;
}
/* Our Services Section end */
/* Insights Section end */
.default-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.overlay {
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.6);
  opacity: 0.6;
  position: absolute;
  max-height: -webkit-fill-available;
}

a.event-card {
  position: relative;
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.2s linear;
  display: flex;
  flex-direction: column;
  height: 100%;
}

a.event-card.wide {
  display: flex;
  flex-direction: row;
}

a.event-card .event-content {
  border-top: none;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  flex: 1;
}

a.event-card.wide .event-content {
  border-bottom-left-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top: 1px solid rgba(229, 231, 235, 1);
  border-left: none;
}

a.event-card .overlay {
  clip-path: inset(0 0 35% 0);
  opacity: 0;
  border-radius: 15px;
  transition-duration: 0.3s;
  transition-property: clip-path, opacity;
  bottom: 0;
  z-index: 1;
}

a.event-card:hover .overlay {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.event-content {
  padding: 24px 16px;
  z-index: 2;
}

.event-lable {
  z-index: 2;
}

.event-content h2 {
  font-size: 20px;
  font-weight: 600;
}

.event-content p {
  font-size: 16px;
  font-weight: 400;
}

a.event-card.wide .event-content h2 {
  font-size: 18px;
}

a.event-card.wide .event-content p {
  font-size: 14px;
}
.case-icon {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transform: translateX(calc(-100% + 18px));
  transition: all 0.4s ease;
}

.event-content p,
.event-content h2,
.case-icon img {
  color: #000;
  transition: all 0.4s ease;
}

a.event-card:hover .event-content h2,
a.event-card:hover .event-content p,
.case-icon span {
  color: white;
}

a.event-card:hover .case-icon img {
  filter: brightness(0) invert(1);
}

a.event-card:hover .case-icon {
  transform: translateX(0);
}

a.event-card:hover .event-content .d-flex.align-items-center.gap-2.mb-3 {
  color: white !important;
}
@media (min-width: 1920px) {
  .event-content h2 {
    font-size: 22px;
  }

  .event-content p {
    font-size: 18px;
  }
}

.event-pic {
  position: relative;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

a.event-card.wide .event-pic {
  border-top-right-radius: 0;
  border-bottom-left-radius: 15px;
  width: 30%;
}

.event-pic img {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.event-content a {
  color: #000;
  font-size: 20px;
  cursor: pointer;
}
/* Insights Section end */

/* clients section start */
.owl-dot {
  width: 30px;
  height: 3px;
  background-color: var(--gray-color) !important;
  margin-right: 5px;
  box-sizing: content-box;
  border-top: 10px solid transparent !important;
  border-bottom: 10px solid transparent !important;
  background-clip: padding-box !important;
  cursor: pointer;
}

.owl-dot.active {
  background-color: var(--light-color) !important;
}

.clients-section .owl-dots {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translatex(-50%);
}

.owl-carousel-clients .slide {
  min-height: 130px;
  display: flex;
  align-items: center;
}

.owl-carousel-clients .slide img {
  max-width: 130px;
  height: 130px;
}
/* client section end */
/* banner section start */
.banner-section {
    background-image: url(../images/layout.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position-x: 50%;
    background-position-y: 50%;
}

.banner-section h2 {
  font-size: 35px;
  font-weight: 700;
}

/* .banner-section .primary-btn,
.banner-section .secondary-btn {
  width: 30%;
} */

.banner-section .primary-btn:hover {
  border: 2px solid #fff;
}
/* banner section end */
/* Partners section start */
.partners {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.partners .partners-img {
  width: calc((100% - 15%) / 3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .partners-img img {
  max-width: 200px;
}

.partners .partners-img img {
  max-width: 100%;
}
/* Partners section end */
/* footer start */
footer {
  border-top: solid 1px rgba(229, 231, 235, 1);
}
.social {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menus {
  display: flex;
  gap: 50px;
  width: 80%;
}

.menu h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.menu h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

ul.quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(229, 231, 235, 1);
}

.footer-bottom .footer-copyrights p {
  margin-bottom: 0;
}
/* footer end */

/* about page */
/* our purpose section start */
.about-card {
  background-color: #fff;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-card h2,
.testi-card h2,
.d-h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.about-card p,
.testi-card p,
.d-p {
  font-size: 16px;
  margin-bottom: 0;
}

.about-card .about-img,
.number-circle {
  border-radius: 50%;
  padding: 20px;
  background-color: rgba(252, 236, 233, 1);
  color: var(--light-color);
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
}

.form-section .about-card {
  height: unset;
}

.form-section .about-card:first-child {
  height: unset;
  flex: 1;
  flex-shrink: 1;
  flex-grow: 1;
}

.form-section .about-card:first-child p + div { 
  flex-shrink: 1;
  flex-grow: 1;
}
/* our purpose section end */
/* stand for section start */
.flex-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.flex-cards .about-card {
  width: calc((100% - 40px) / 3);
}
/* stand for section end */
/* testimonialsection start */
.number-circle {
  background-color: rgba(252, 236, 233, 1);
}
/* stand for section end */

/* services page start */
table.table.table-striped {
  border: 1px solid #ccc;
  border-radius: 8px !important;
}

.table > :not(caption) > * > * {
  padding: 1rem 1rem;
}
/* services page end */
/* contact page start */
.contact-icons i {
  font-size: 16px;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
}

.social-icons .about-img {
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons .about-img:hover {
  background-color: var(--dark-color);
  color: white;
}
/* contact page end */
/* insights page start */
.categories .primary-btn {
  background-color: white;
  color: #000;
  border-color: white;
}

.categories .primary-btn.active,
.categories .primary-btn:hover {
  background-color: var(--light-color);
  color: white;
  border-color: var(--light-color);
}
/* insights page end */
.subscribe-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 50%;
}

.subscribe-content input {
  padding: 15px;
  border-radius: 1000px;
}

/* product page start */
.service-card {
  border: 0.3px solid #6c6c6c30;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0px 4px 7.1px rgba(0, 0, 0, 0.25);
  gap: 20px;
  padding: 30px 23px 20px;
  transition: all 0.2s linear;
  height: 100%;
}

.service-card:hover {
  background-color: var(--dark-color);
}

.service-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.service-card:hover .service-info h3,
.service-card:hover .service-info p {
  color: white;
}

.service-card .service-info p {
  color: #4a4a4a;
  display: flex;
  flex: 1;
  text-align: center;
  align-items: center;
  font-size: 18px;
}

.service-card .icon-box {
  background-color: var(--dark-color);
  width: 80px;
  height: 80px;
  border-radius: 11px;
  margin-top: -70px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
}

.service-card:hover .icon-box {
  background-color: white;
}

.service-card .icon-box img {
  width: 50px;
  height: auto;
}

.service-card:hover .icon-box img {
  filter: brightness(0);
}

.service-card .service-info h3 {
  color: #000;
  font-weight: 500;
  font-size: 25px;
}

.single-service .service-card {
  position: relative;
  padding: 30px;
  height: 100%;
  gap: 0;
}

.single-service .service-card .service-info {
  gap: 0;
}

.single-service .service-card img {
  position: absolute;
  top: 8%;
  left: 18px;
  opacity: 0.6;
  width: 30%;
  z-index: -1;
  height: auto;
}

.single-service .service-card:hover img {
  z-index: 0;
  filter: brightness(0.5);
}

.single-service .service-card:hover .service-info {
  z-index: 99;
}

.single-service .service-card h3 {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialize-section .single-service .service-card {
  padding-top: 150px;
  padding-bottom: 50px;
}
/* help section */
.help,
.technologies {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.technologies {
  gap: 0;
}

.help .help-title,
.technologies .technologies-title {
  flex-basis: 50%;
  height: 100%;
}

.help .help-title h2 {
  margin-bottom: 20px;
}

.help .help-title p,
.technologies .technologies-title p {
  text-align: justify;
  hyphens: auto;
}

.help .help-column,
.technologies .technologies-column {
  flex-basis: 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
}

.help .help-column {
  flex-basis: 80%;
}

.technologies .technologies-column {
  gap: 50px 20px;
  align-items: center;
  flex-basis: 40%;
}

.help .help-column > * {
  flex-basis: 45%;
}

.technologies .technologies-column > * {
  flex-basis: 20%;
  text-align: center;
}

.grow-image .technologies .technologies-column > * {
  flex-grow: 1;
}

.grow-image .technologies .technologies-column {
  justify-content: center;
  flex-basis: 35%;
}

.grow-image .technologies .technologies-column .technologies-image img {
  max-width: 80%;
  height: auto;
}

.technologies .technologies-column .technologies-image img {
  max-width: 100%;
  height: auto;
}

.items-3 .technologies .technologies-column > * {
  flex-basis: 30%;
}

.help .help-content h2 {
  color: var(--light-color);
  font-weight: 800;
  margin-bottom: 15px;
}

.help .help-content h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.help .help-content p {
  text-align: justify;
  hyphens: auto;
  font-weight: 400;
}

/* case studies section */

a.service-arrow {
  width: 50px;
  height: 50px;
  background-color: white;
  position: absolute;
  bottom: -25px;
  top: 5%;
  right: 52%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  color: var(--dark-color);
  text-decoration: none;
  cursor: pointer;
}

.case-studies .heading-title {
  text-align: left;
  width: 100%;
  padding-right: 50px;
}

.case-studies .heading-title p {
  font-size: 25px;
  font-weight: 500;
}

.cases {
  display: flex;
  gap: 10px;
  position: relative;
}

.cases .case {
  flex-basis: 16%;
  position: relative;
}

.case.active {
  flex-basis: 50%;
  border-radius: 15px;
}

.case {
  background-size: cover;
  background-position: 50% 50%;
  height: 430px;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
}

.case .overlay {
  background-color: #4f4f4f73;
  border-radius: 15px;
}

.case:first-child {
  background-image: url(../images/cases/1.webp);
}

.case:nth-child(2),
.case:nth-child(3) {
  background-image: url(../images/cases/2.webp);
}

.case:nth-child(4) {
  background-image: url(../images/cases/1.webp);
}

.case .case-content {
  position: absolute;
  left: 5%;
  bottom: 5%;
}

.case .case-content {
  position: absolute;
  left: 5%;
  bottom: 5%;
  font-weight: 600;
  z-index: 99;
  display: none;
}

.case.case.active .case-content {
  display: block;
}

.cases a.service-arrow {
  top: 5%;
}

/* faq section */
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border-bottom: 2px solid #f9f9f9;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 0 35px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--light-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--light-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
}

.faq .faq-container .faq-item .next-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  left: unset;
  bottom: unset;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 7px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: rgba(252, 236, 233, 1);
  color: var(--light-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--light-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .next-btn {
  transform: rotate(180deg);
}

.faq-bg {
  height: 600px;
}

.test-img {
  width: 25%;
}

.test-img img {
  width: 100%;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: rgba(243, 244, 246, 1);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    rgba(229, 231, 235, 1);
}
/* product page end */

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 800px;
  height: 70%;
  max-height: 500px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.video-close:hover {
  color: var(--light-color);
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    margin: 10% auto;
    height: 60%;
  }

  .video-close {
    top: 10px;
    right: 15px;
    font-size: 28px;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .video-modal-content {
    width: 98%;
    margin: 15% auto;
    height: 50%;
  }

  .video-close {
    top: 8px;
    right: 12px;
    font-size: 24px;
    width: 30px;
    height: 30px;
  }
}

/* mobile menu style  */
.mobile-nav-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 767px) {
  .mobile-nav-toggle {
    display: block;
    color: #000;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu-header .logo img {
    max-height: 40px;
  }

  .mobile-menu-close {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--dark-color);
  }

  .mobile-menu-content {
    padding: 20px;
  }

  .mobile-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    padding: 10px 0;
  }

  .mobile-menu .drop-down > a i {
    transition: transform 0.3s ease;
  }

  .mobile-menu .sub-menu {
    display: none;
    padding-left: 20px;
  }

  .mobile-menu .drop-down .sub-menu .drop-down > a i {
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .rotate-icon {
    transform: rotate(180deg);
  }
}

/* Careers section */

.job-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px 0;
}

.job-card {
  border: 1px solid rgba(224, 224, 224, 1);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 7.1px rgba(0, 0, 0, 0.05);
  transition: all 0.2s linear;
  background-color: white;
}

.job-card:hover {
  box-shadow: 0px 4px 7.1px rgba(0, 0, 0, 0.25);
}

.job-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.job-card .job-title a {
  text-decoration: none;
  color: #000;
  font-size: 26px;
}

.job-card .job-title a:hover {
  color: var(--secondary-color);
}

.job-card .job-title p.date {
  align-self: flex-end;
  margin-bottom: 0;
}

.category-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category-badge {
  background-color: rgba(70, 64, 222, 0.1);
  color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  font-weight: 600;
  border-radius: 80px;
  font-size: 14px;
}

.careers-page .job-card .job-title .category-badge {
  min-width: 95px;
}

.single-job .col-md-9 h2 {
  margin-bottom: 20px;
  margin-top: 40px;
}

.single-job .col-md-9 h2:first-child {
  margin-top: unset;
}

.single-job .col-md-9 ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px; /* Adjust space for the icon */
}

.single-job .col-md-9 ul li::before {
  content: "\f058"; /* Unicode for circle-check */
  font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is loaded */
  font-weight: 100; /* Thin weight */
  position: absolute;
  left: 0;
  color: #28a745; /* Adjust to your preferred color */
}

.single-job .job-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.single-job .job-info .job-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-job .job-info .job-detail p {
  font-size: 16px;
}

.single-job .job-info .job-detail p:last-child {
  font-weight: 600;
}

.filter-category > h4 {
  margin-bottom: 15px;
}

.apply-btn {
  margin-right: 15px;
}

.share-btn {
  padding-left: 15px;
  border-left: 1px solid rgba(242, 242, 242, 1);
}

.application-page .heading-title {
  text-align: left;
  width: 100%;
  margin: 0;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.drop-area {
  border: var(--bs-border-width) solid var(--bs-border-color);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background: white;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.drop-area p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.upload-btn {
  color: #007bff;
  font-weight: bold;
  cursor: pointer;
}

.file-name {
  font-size: 13px;
  color: #007bff;
  margin-top: 5px;
}
/* careers section end */

/* Privacy page start */
.privacy-terms {
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  margin: 5px 0px;
  padding: 10px 0px;
}

.privacy-terms h6 {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  text-transform: capitalize;
}

.privacy-terms h6 {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  text-transform: capitalize;
}

.privacy-terms p {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  text-align: justify;
  color: #000000;
}

.privacy-terms p {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  text-align: justify;
  color: #000000;
}

.privacy-terms h4 {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
  text-transform: capitalize;
}
/* Privacy Page end */
