* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Rubik", sans-serif;
}
.main-logo {
  max-width: 150px;
}
.my-navbar .nav-item {
  margin-right: 40px;
}
.my-navbar .nav-item a {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary-color);
  transition: 0.3s;
}
.my-navbar .nav-item a:hover {
  color: var(--primary-color);
}
.my-navbar .nav-item a.active {
  color: var(--primary-color);
}
.my-navbar .nav-item:last-child {
  margin-right: 0px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-item .social-media-icons a {
  color: #fff;
  font-size: 14px;
}

.nav-item .social-media-icons {
  height: 30px;
  width: 30px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s;
}
.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.navbar-scroll {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  animation: 0.4s slideDown;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-item .social-media-icons:hover {
  background: none;
  border: 1px solid var(--primary-color);
}
.nav-item .social-media-icons:hover a {
  color: var(--primary-color);
}
.main-banner {
  position: relative;
  background-image: url("./img/banner-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 36, 41, 0.85);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.main-banner h1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.main-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 90%;
}
.core-highlights-icon {
  height: 100px;
  width: 100px;
  background-color: #f4f5f8;
  border-radius: 50%;
  margin: 0 auto 15px;
  padding: 20px;
}
.highlight-box {
  position: relative;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  background: #ffffff;
  border-top: 6px solid var(--primary-color);
  transition: all 300ms ease;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}
.outer-box {
  margin-top: -30px;
}
.highlight-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  transition: height 0.4s ease;
  z-index: -1;
}

.highlight-box:hover::before {
  height: 100%;
}

.highlight-box:hover {
  transform: translateY(-10px);
}

.highlight-box p {
  color: #222;
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.highlight-box:hover p {
  color: #ffffff;
}

.highlight-box:hover .core-highlights-icon {
  background-color: #3c3b3b;
  transition: background-color 0.4s ease;
}
.mission-img {
  max-width: 80px;
  background: #f4f5f8;
  padding: 15px;
  border-radius: 50%;
}
.mission-content h5 {
  font-size: 25px !important;
  margin-bottom: 5px;
}
.sub-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}
.about-section-six {
  padding: 80px 0;
}
.section-title {
  margin-bottom: 25px;
}
.section-title h2 {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 0;
  text-align: center;
}
.department-item {
  text-align: center;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(221, 221, 221, 0.65) 0px 0px 20px 0px;
  background-color: #fff;
}
.department-item:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: var(--primary-color);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.department-item:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
  background-color: var(--primary-color);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.department-item:hover:before {
  width: 51%;
}
.department-item:hover:after {
  width: 50%;
}
.department-item:hover h3 {
  color: #fff;
}
.department-item:hover p {
  color: #fff;
}
.department-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.department-item p {
  margin-bottom: 0;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.Core-Values-image {
  max-width: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.Core-Values-image .white {
  display: none;
}
.department-item:hover .Core-Values-image .color {
  display: none;
}
.department-item:hover .Core-Values-image .white {
  display: block;
}
.icon-content {
  flex: 1;
}

/* Footer CSS Styles */

footer {
  background-image: url(./img/14.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--primary-color);
  padding-top: 90px;
  position: relative;
}
.footer-item {
  margin-bottom: 30px;
}
.footer-item .footer-contact h3 {
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 30px;
}
.footer-item .footer-contact ul {
  margin: 0;
  padding: 0;
}
.footer-item .footer-contact ul li {
  list-style-type: none;
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 30px;
}
.footer-item .footer-contact ul li:last-child {
  margin-bottom: 0;
  margin-left: 0;
}
.footer-item .footer-contact ul li:last-child i {
  top: 2px;
}
a {
  text-decoration: none;
  color: #000;
}
.footer-item .footer-contact ul li a {
  display: block;
  color: #fff;
  margin-bottom: 7px;
}
.footer-item .footer-contact ul li a:last-child {
  margin-bottom: 0;
}

.footer-item .footer-contact ul li i {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 32px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.footer-item .footer-quick h3 {
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
}
.footer-item .footer-quick ul {
  margin: 0;
  padding: 0;
}
.footer-item .footer-quick ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 20px;
}
.footer-item .footer-quick ul li:last-child {
  margin-bottom: 0;
}
.btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.footer-item .footer-quick ul li a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}
.footer-item .footer-feedback h3 {
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 30px;
}
.footer-item .footer-feedback .form-group {
  margin-bottom: 20px;
}
.footer-item .footer-feedback .form-group .form-control {
  font-size: 15px;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #ffffffc7;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 15px;
  color: #fff;
}
.footer-item .footer-feedback .form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #ffffffc7;
}
.footer-item .footer-feedback .form-group ::-webkit-input-placeholder {
  color: #ffffffc7;
}
.footer-item .footer-feedback .form-group :-ms-input-placeholder {
  color: #ffffffc7;
}
.footer-item .footer-feedback .form-group ::-ms-input-placeholder {
  color: #ffffffc7;
}
.footer-item .footer-feedback .form-group ::placeholder {
  color: #ffffffc7;
}
.footer-item .footer-feedback .feedback-btn {
  font-weight: 600;
  font-size: 14px;
  background-color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  color: #0046c0;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.footer-item .footer-feedback .feedback-btn:hover {
  color: #fff;
  background-color: #111;
}
.footer-feedback p {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.copyright-area {
  background-color: #002b4d;
}
.copyright-area .copyright-item {
  padding-top: 20px;
  padding-bottom: 20px;
}
.copyright-area .copyright-item p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.copyright-area .copyright-item p a {
  display: inline-block;
  color: #fff;
}
.copyright-area .copyright-item p a:hover {
  color: #0046c0;
}
.core-values-section {
  padding: 40px 0;
}
.service-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  min-height: 260px;
  position: relative;
  margin: 15px 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  align-content: center;
}
.service-item p {
  margin-bottom: 0;
}
.service-img {
  max-width: 75px;
  margin: 0 auto 20px;
}
.services-carousel .owl-dots {
  margin: 0;
}
.services-carousel .owl-dots .owl-dot.active span,
.services-carousel .owl-dots .owl-dot:hover span {
  background: var(--primary-color);
}
.services-tab .nav-tabs .nav-item.show .nav-link,
.services-tab .nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: var(--primary-color);
  font-weight: 600;
  border-radius: 10px;
}
.services-tab .nav-tabs {
  max-width: 310px;
  background: #f2f2f2;
  border-radius: 10px;
  justify-content: center;
  padding: 10px;
  margin: 0 auto;
  border: 0;
}
.services-tab .nav-tabs .nav-link:hover {
  border: none;
  color: var(--primary-color);
}
.services-tab .nav-tabs .nav-link {
  border: 0;
  color: #000;
  text-transform: uppercase;
}
.services-tab .nav-tabs .nav-link.active:hover {
  color: #fff;
}
.industry-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid #19a3e426;
  position: relative;
  transition: 0.6s;
  min-height: 75px;
}
.industry-arrow img {
  height: 25px;
  width: 25px;
}
.industry-name {
  line-height: 1.4;
  font-weight: 500;
  font-size: 15px;
}
.industry-item:hover {
  transform: scale(1.05);
  border: 1px solid var(--primary-color);
}
.industry-item span {
  height: 30px;
  width: 30px;
  background: #19a3e426;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 32px 0px 8px 0px;
  transition: 0.6s;
}
.industry-item:hover span {
  background: var(--primary-color);
}
.ribbon {
  display: inline-block;
  background: #2196f3;
  color: #fff;
  font-weight: 600;
  padding: 10px 50px 10px 10px;
  position: relative;
  margin: 25px 0;
}

.ribbon::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #fff;
}
.industries-accordian .row {
  justify-content: center;
}

.industries-accordian .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: var(--primary-color);
  box-shadow: none;
}
.industries-accordian .accordion-button {
  font-size: 17px;
  font-weight: 500;
  box-shadow: none !important;
}
.industries-accordian .accordion-item {
  margin-bottom: 15px;
  border: 1px solid var(--primary-color) !important;
  border-radius: 10px !important;
  overflow: hidden;
}
.industries-accordian .accordion-button::after {
  background-image: url("./img/plus.png");
}
.industries-accordian .accordion-button:not(.collapsed)::after {
  background-image: url("./img/minus-sign.png");
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.my-togller {
  border: none;
  background: transparent;
  padding: 0;
}
.my-togller:focus {
  box-shadow: none;
}
#checkbox {
  display: none;
}

.toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition-duration: 0.5s;
}

.bars {
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 4px;
}

#bar2 {
  transition-duration: 0.8s;
}

#bar1,
#bar3 {
  width: 70%;
}

#checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar1 {
  width: 80%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar3 {
  width: 80%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}
.choose-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}
.choose-card h5 {
  margin: 0;
}
.choose-card .icon {
  background: linear-gradient(135deg, #007bff, #00bfff);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transition: all 0.3s ease;
}

.careers-section {
  background: #f8f9fb;
}

.section-subtitle {
  color: #555;
  max-width: 650px;
  margin: 10px auto;
  font-size: 1rem;
  text-align: center;
}

/* Career Cards */
.career-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  height: 100%;
}
.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}
.card-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.career-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.career-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Open Positions */
.open-positions h3 {
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}
.open-positions .btn {
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 500;
  transition: 0.3s;
}
.open-positions .btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Call to Action */
.career-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  padding: 40px 20px;
  border-radius: 15px;
}
.career-cta h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.career-cta .email-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.career-cta .email-link:hover {
  color: #e0f2ff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}
.section-subtitle {
  color: #555;
  font-size: 1rem;
}

.contact-info {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}
.contact-info h4 {
  font-weight: 600;
  color: var(--primary-color);
}
.contact-info p {
  color: #555;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.contact-info i {
  color: var(--primary-color);
  margin-right: 8px;
}
.contact-info blockquote {
  font-style: italic;
  color: #444;
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
  margin-top: 20px;
}

.contact-form {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}
.contact-form h4 {
  font-weight: 600;
  color: var(--primary-color);
}
.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 0.95rem;
}
.contact-form .btn {
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  transition: 0.3s;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounce 2s infinite;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.error-area{
  padding: 170px 0;
}
.error-item {
  height: auto;
  text-align: center;
  margin-top: -65px;
}
.error-item h1 {
  font-size: 100px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
}
.error-item h3 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 35px;
}
.error-item p {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 25px;
}
.error-item span {
  display: block;
}
.error-item a {
  display: inline-block;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 20px 45px;
  margin-top: 70px;
  font-size: 18px;
}
.error-item a:hover {
  background-color: #111;
}

/* Bounce Animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.btn-outline-primary {
  --bs-btn-color: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
}

/* For Mobile Devices */
@media (max-width: 767px) {
  .main-banner {
    min-height: 50vh;
  }
  .main-banner h1 {
    font-size: 20px;
  }
  .main-banner p {
    font-size: 15px;
  }
  .about-section-six {
    padding: 40px 0;
  }
  .mission-content h5 {
    font-size: 20px;
  }
  p {
    font-size: 15px;
  }
  .section-title h2 {
    font-size: 20px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .main-logo {
    max-width: 120px;
  }
}

/* For Tablets Device */
@media (max-width: 991px) {
}

:root {
  --primary-color: #19a3e4;
  --secondary-color: #002b4d;
}
