@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
  font-family: 'Poppins';
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.underline-hover {
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}

.underline-hover::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.underline-hover:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


.carousel-control-next-icon,
carousel-control-prev-icon {
  color: black !important;
}

.redcolor {
  color: #a90d14 !important;
}

.redbg {
  background: #a90d14 !important;
  color: white !important;
}

.whitebg {
  background: white !important;
  color: #a90d14 !important;
}


.scalebtn {
  transition: all 0.3s ease !important;

  &:hover {
    transform: scale(0.95);
  }
}

/* 
#about{
  height: 70vh !important;
} */


.fpItem {
  transition: all 0.3s ease-in-out;

  &:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.438);
  }
}

.footerLinks {
  transition: all 0.3s ease-in-out !important;

  &:hover {
    color: #a90d14 !important;
    text-decoration: underline !important;
  }
}

.footerLink {
  transition: all 0.3s ease-in-out !important;

  &:hover {
    color: #a90d14 !important;
  }
}


.bento-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem;
  background-color: #1e1e1e;
}

.bento-item {
  background-color: #2c2c2c;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Optional: make one image span multiple rows or columns like a real bento layout */
.span-row {
  grid-row: span 2;
}

.span-col {
  grid-column: span 2;
}

.navbar-toggler-icon {
  color: black !important;
}



.nav-link.active {
  border-bottom: 2px solid #fff !important;
}










/* about.css */

.about-section {
  padding: 50px 0;
}

.feature-section {
  padding: 40px 0;
  background-color: #e9ecef;
}

.feature-item {
  text-align: center;
  padding: 30px;
}

.feature-item img {
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.rounded-image {
  border-radius: 10px;
}


.career-hero {
  background: url(img/career.jpeg) no-repeat center center/cover;
  height: 50vh;
}



h1,
h2 {
  font-weight: 600;
  color: #2c3e50;
}

.section-title {
  margin-bottom: 2rem;
  text-align: center;
}

.intro-section {
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.intro-section p {
  line-height: 1.7;
  color: #495057;
}

.values-section {
  padding: 2rem 0;
  text-align: center;
}

.values-section .card {
  border: none;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.values-section .card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.values-section .card-title {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.values-section .card-text {
  color: #6c757d;
}

.openings-section {
  padding: 2rem 0;
}

.openings-section .job-card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.openings-section .job-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.openings-section .job-title {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.openings-section .job-location {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.openings-section .job-description {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
}

.openings-section .apply-button {
  margin-top: 1rem;
}

.form-group label {
     background: unset !important; 
    border-radius: 3px;
    color: black;
    font-size: 12px;
    padding: 0 10px 2px;
     margin-left: unset !important; 
}
.form-group .form-control {
    box-shadow: none;
    background: none;
    padding: unset !important;
    height: unset !important;
    font-size: unset !important;
    margin-top: unset !important;
}

.form-group .form-control:focus{  background: unset !important; }

.custom-form label {
  font-weight: 500 !important;
  font-size: 14px !important;
  margin-bottom: 5px !important;
  display: block !important;
}

.custom-form .form-group {
  margin-bottom: 1rem;
  position: relative;
}

.custom-form input,
.custom-form textarea,
.custom-form select {
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  width: 100%;
  padding: 8px 0;
  background-color: transparent;
  font-size: 16px;
  outline: none;
}

.custom-form input:focus,
.custom-form textarea:focus {
  border-color: #a90d14 !important;
  /* red underline on focus */
  box-shadow: none;
  background: transparent !important;
}

.custom-form .btn-danger {
  background-color: #a90d14;
  border: none;
  padding: 10px 25px;
  font-weight: bold;
  margin-top: 20px;
}

.custom-form .input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 16px;
  color: #555;
}

.custom-form .form-control {
  padding-left: 10px;
}

















@media (min-width: 200px),
(max-width: 400px) {
  .logo {
    width: 80px !important;
  }
}

@media (max-width: 600px) {
  .logo {
    width: 100px !important;
  }


  .fpItemMain {
    height: 12rem !important;
  }
}

@media (max-width:768px) {
  #navUl .nav-item a {
    font-size: 13px !important;
  }
}

@media (max-width: 992px) {
  .map {
    width: 100% !important;
  }
}

@media (min-width: 600px) {
  .logo {
    width: 160px !important;
  }
}