@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


@font-face {
  font-family: "Helvetica";
  /* You choose the name */
  src: url("/public/font/Helvetica.woff") format("woff");
  src: url("/public/font/Helvetica.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary-blue: #1e3a8a;
  --light-blue: #3b82f6;
  --theme: #F42C00;
  --white: #fff;
  --black: #242A3A;
  --black-bg: #E6EDFF;
  --bg: #F2F1F2;
  --section-bg: #EEEFF4;
  --text-color: #6A6464;
  --theme-bg: #FFC6B9;
}

body {
  font-family: "Helvetica", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 16px;
  letter-spacing: 0.6px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
}

h1 {
  font-size: 36px;
  /* Largest */
}

h2 {
  font-size: 32px;
  /* Given */
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
  /* Smallest */
}

p {
  color: var(--text-color);
  text-align: justify;
}

p strong {
  color: var(--black);
}

section {
  position: sticky;
  min-height: 100vh;
  z-index: 1;
  transition: all 0.3s ease;
  left: 0;
  right: 0;
  overflow: hidden;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.subtext {
  font-size: 24px;
  color: var(--black);
}

.section-subtitle {
  font-weight: 700;
  font-size: 24px;
  color: var(--theme);
  position: relative;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 25px;
  border: 2px solid var(--theme);
  width: 63px;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  border: 2px solid var(--white);
  width: 20px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 576px) {
  .section-padding {
    padding: 50px 0;
  }
}

.theme-text {
  color: var(--theme) !important;
}

/* Header Part */
.header-logo {
  height: 57px;
}

.header-logo img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

@media(max-width:1299px) {
  .navbar {
    padding: 0;
  }
}

.nav-link {
  color: var(--black) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--theme) !important;
}

@media(max-width:1199px) {
  .nav-link {
    font-size: 14px;
  }
}

@media(min-width:992px) {
  .custom-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .custom-dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    border-radius: 10px;
    padding: 10px 0;
    border: none;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 991px) {
  .offcanvas .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    display: none;
    margin: 0;
    padding-left: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .offcanvas .dropdown.show>.dropdown-menu {
    display: block !important;
  }

  .offcanvas .dropdown-item {
    padding: 10px 20px;
  }

  .offcanvas .dropdown-menu {
    display: none;
    position: static;
    transform: none !important;
  }

  .offcanvas .dropdown-menu.show {
    display: block;
  }

}


/* Menu item styling */
.custom-dropdown .dropdown-item {
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.2s, padding-left 0.2s;
}

/* Beautiful hover effects */
.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item.active {
  background: #f5f7fa;
  padding-left: 26px;
  color: var(--theme);
}

/* Change caret on hover */
.custom-dropdown:hover .nav-link {
  color: var(--theme);
}

.contact-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
  border-radius: 25px;
  padding: 8px 20px;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #c0392b, #a93226);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
  color: white;
}

.white-btn {
  background: var(--white);
  border: none;
  border-radius: 25px;
  padding: 8px 20px;
  color: var(--theme);
  font-weight: 500;
  transition: all 1s ease;
  text-decoration: none;
  display: inline-block;
}

.white-btn:hover {
  background: var(--theme);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
  color: white;
}

/* Banner Part */
section.banner {
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.banner-container {
  width: 100%;
  height: 100%;
}

.banner-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
}

.banner-title {
  font-size: 56.73px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-family: "Helvetica", Arial, sans-serif;
}

@media (max-width:576px) {
  .banner-title {
    font-size: 46px;
  }

  .banner-content h2 {
    font-size: 20px;
  }
}

.banner-subtitle {
  font-size: 26.82px;
  text-shadow: 0px 4.73px 4.73px 0px #00000040;
  color: var(--theme);
  margin: 0;
}

/* Vision Part */
section.vision {
  top: -50px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-height:600px) {
  section.vision {
    top: -190px;
  }
}

.vision-container {
  width: 100%;
  height: 100%;
}

.vision-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0
}

.section-title {
  font-size: 46px;
  /* line-height: 1; */
}

@media(max-width:576px) {
  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 18px;
  }
}

@media(max-width:767px) {
  .vision-content {
    width: 100% !important;
  }
}

.vision-content p {
  position: relative;
  padding-left: 15px;
  color: var(--white);
  /* space for the line */
}

.vision-content p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  /* this makes it stretch full height */
  width: 2px;
  background-color: var(--white);
}

/* About Part */
section.about {
  z-index: 11;
  background-color: var(--white);
  min-height: auto;
}

.about-image-wrapper {
  width: 100%;
  height: 100%;
  max-height: 683px;
  /* overflow: hidden; */
  position: relative;
}

.about-image-wrapper .red-border {
  position: absolute;
  top: 5%;
  left: -15px;
  right: 40%;
  bottom: -15px;
  border: 5px solid var(--theme);
  border-radius: 5px;
  z-index: -1;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
}

.subtitle {
  font-weight: 500;
  font-size: 18px;
  position: relative;
  color: var(--theme);
}

.subtitle::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 25px;
  border: 1px solid var(--theme);
  width: 65px;
}

.subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  border: 1px solid var(--black);
  width: 20px;
}

.title {
  font-size: 36px;
  line-height: 1.2;
  color: var(--black);
}


.icon-circle {
  background-color: var(--black-bg);
  border-radius: 12px;
  padding: 10px;
  color: var(--black);
}

.icon-title {
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
}

@media(max-width:576px) {
  .title {
    font-size: 26px;
  }

  .subtitle {
    font-size: 16px;
  }

  .icon-title {
    font-size: 18px;
  }

  .subtext {
    font-size: 18px;
  }
}

/* Counter Part */
.counter-section {
  z-index: 12;
  min-height: auto;
  padding: 120px 0;
  /* background-image: url(/public/image/counter-bg.png); */
  background-color: var(--bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-box-items .icon {
  background-color: var(--black);
  color: var(--white);
  display: inline-block;
  border-radius: 50px;
  padding: 15px;
}

.icon-box-items .content {
  font-weight: 700;
}

.icon-box-items .content h3 {
  font-size: 50px;
  color: var(--black);
  font-family: "Helvetica", Arial, sans-serif;
}

.icon-box-items .content p {
  color: var(--black);
  text-align: center;
}

/* Inovation Part */
.inovation-section {
  z-index: 13;
  min-height: auto;
  position: relative;
}

.inovation-section video,
.inovation-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* Brand Part */
.brand-section {
  z-index: 14;
  /* background-image: url(/public/image/brand-bg.png); */
  background-size: cover;
  background-position: center;
  min-height: auto;
}

.brand-wrapper .brand-image {
  text-align: center;
  /* filter: grayscale(80%); */
  transition: all 0.4s ease-in-out;
  height: 38px;
}

.brand-wrapper .brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-wrapper .brand-image:hover {
  filter: initial;
  transform: translateY(-5px);
}

/* Blog Part */
.blog-section {
  z-index: 15;
  min-height: auto;
  background-image: url(/public/image/blog-bg.png);
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
}

.card-container {
  perspective: 1000px;
  text-decoration: none;
}

.custom-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 12px 16px -4px #10182814;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* height: 100%; */
  position: relative;
  padding: 25px;
  margin: 25px 0;
}

/*  */
/* .custom-card::before { */
/* content: ''; */
/* position: absolute; */
/* top: 0; */
/* left: -100%; */
/* width: 100%; */
/* height: 100%; */
/* background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); */
/* transition: left 0.5s; */
/* } */

.custom-card:hover::before {
  left: 100%;
}

.custom-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.custom-card:hover .card-image {
  transform: scale(1.1);
}

.image-wrapper {
  overflow: hidden;
  position: relative;
}

.image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.custom-card:hover .image-wrapper::after {
  opacity: 1;
}

.category-badge {
  display: inline-block;
  /* padding: 5px 15px; */
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  transition: transform 0.3s;
  color: var(--theme);
}

.custom-card:hover .category-badge {
  transform: scale(1.1);
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.custom-card:hover .card-title {
  color: #e74c3c;
}

.card-description {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
  transition: color 0.3s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.custom-card:hover .card-description {
  color: #34495e;
}

.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  color: var(theme);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.custom-card:hover .read-more {
  opacity: 1;
  transform: translateX(0);
}

.read-more::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s;
}

.read-more:hover::after {
  margin-left: 15px;
}

.custom-card:hover {
  animation: none;
}

@media (max-width: 768px) {
  .custom-card {
    margin-bottom: 30px;
  }
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

.swiper-pagination-bullet-active {
  background-color: var(--theme);
}

/* Blog Section Start */
.blog-section h2 {
  width: 95%;
}

@media(max-width:575px) {
  .blog-section h2 {
    width: 100%;
  }
}

.blog-section .blog-slider-item {
  margin: 20px 0;
  /* height: auto; */
}

.news-box-items {
  padding: 20px;
  position: relative;
  background-color: transparent;
  border-radius: 15px;
  /* background-color: white; */
}

.news-box-items:hover {
  box-shadow: 0px 8px 24px 0px #959DA533;
}

.news-box-items .news-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 190px;
}

.news-box-items .news-image img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 1s ease;
  object-position: top;

}

.news-box-items .news-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-box-items .news-content {
  padding: 20px 0 0 0;
}

.news-box-items .news-content h3 {
  margin: 5px 0;
}

.news-box-items .news-content h3 a {
  color: #000000ab;
  text-decoration: none;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 45px;
  overflow: hidden;
  /* font-size: clamp(16px, 1.8vw, 18px); */
  font-size: clamp(14px, 1.2vw, 16px);
}

.news-box-items .news-content h3 a:hover {
  color: var(--theme);
}

.news-box-items .news-content p {
  margin: 5px 0;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 81px;
  overflow: hidden;
  line-height: 1.7rem;
  font-size: clamp(12px, 1vw, 14px);
}

.post-date {
  color: #0000008c;
  font-size: clamp(12px, 1vw, 14px);
}

.news-box-items:hover .news-image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.news-box-items:hover .news-image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.blog-section .swiper-dot {
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 9;
  transform: translateX(-50%);
}

.blog-section .swiper-pagination-bullet {
  border: 2px solid var(theme);
  background: white;
  width: 10px;
  height: 10px;
  opacity: 1;
}

.blog-section .swiper-pagination-bullet-active {
  background-color: var(--theme) !important;
}

.link-btn {
  text-transform: capitalize;
  color: var(--black);
  font-weight: 600;
  display: inline-flex;
  flex-direction: row !important;
  align-items: center;
  text-decoration: none;
  font-size: clamp(12px, 1vw, 14px);
}

.link-btn span {
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.link-btn .iconify {
  margin-left: 10px;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 25px;
  background-color: var(--theme);
  text-align: center;
  color: white;
  padding: 2px;
}

.link-btn:hover span {
  color: var(--theme);
  background-size: 100% 1px;
}

/* Hide pagination on desktop */
.blog-section .swiper-pagination {
  display: none !important;
}

/* Navigation Buttons */
.blog-section .swiper-button-prev,
.blog-section .swiper-button-next {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid var(--theme);
  background-color: #FFFFFF;
  color: var(--theme);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.blog-section .swiper-button-prev::after,
.blog-section .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

.blog-section .swiper-button-prev {
  left: 0%;
  top: 55.9%;
  transform: translateY(-50%);
}

.blog-section .swiper-button-prev:hover,
.blog-section .swiper-button-next:hover {
  background-color: var(--theme);
  color: white;
}

.blog-section .swiper-button-next {
  right: 0%;
  top: 55.9%;
  transform: translateY(-50%);
}

.blogSwiper {
  width: 80%;
}

/* Mobile Styles */
@media(max-width: 567px) {
  .blogSwiper {
    width: 100%;
  }

  /* Hide navigation buttons on mobile */
  .blog-section .swiper-button-prev,
  .blog-section .swiper-button-next {
    display: none !important;
  }

  /* Show pagination on mobile */
  .blog-section .swiper-pagination {
    bottom: 0px;
    display: flex !important;
    justify-content: center;
  }

  /* Pagination bullets */
  .blog-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--theme);
    opacity: 0.5;
    margin: 0 5px;
    transition: all 0.3s ease;
  }

  .blog-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--theme);
  }
}

/* Blog Section End */


/* footer part */
.footer-section {
  position: relative;
  z-index: 16;
  background-color: #242A3A;
  padding: 35px 0 0 0;
  color: var(--white);
}

.contact-info {
  row-gap: 10px;
  margin-bottom: 10px;
}

.contact-info a {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 15px;
  transition: all 0.3s;

}

.contact-info a:hover {
  color: var(--theme);
  padding-left: 5px;
}

.contact-info a .iconify {
  margin-right: 10px;
  color: var(--white);
  width: 20px;
  transition: all 0.3s;
}

.contact-info a:hover .iconify {
  color: var(--theme);
}

.social-icons {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: var(--white);
  border-radius: 5px;
  /* margin-right: 10px; */
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--white);
}

.social-icons a:hover {
  background: var(--theme);
}

.footer-bottom {
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid #7E7979;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: var(--white);
  text-align: center;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-bottom a:hover {
  /* text-decoration: underline; */
  color: var(--theme);
}

.blue-accent {
  height: 5px;
  background: linear-gradient(90deg, #4d94ff, #6ba3ff);
  margin-top: 0;
}

/* History Part */
.history-section {
  position: relative;
  background-image: url('/public/image/bg1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
  z-index: 1;
}

.history-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: -2;
}

.history-top-section p {
  font-size: 32px;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  color: var(--black);
  text-align: center;
}

.history-top-img {
  width: 100%;
  height: 100%;
  max-height: 530px;
  border-radius: 35px;
  overflow: hidden;
  margin-top: 80px;
}

.history-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.timeline-container {
  display: flex;
  min-height: 100vh;
  padding: 40px 0;
}

.year-nav {
  position: sticky;
  top: 120px;
  height: fit-content;
  padding-right: 120px;
}

.year-item {
  font-size: 36px;
  margin-bottom: 20px;
  text-decoration: underline;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  color: var(--black);
}

.year-item:hover {
  color: var(--theme);
  /* border-left-color: #000; */
}

.timeline-card {
  overflow: hidden;
  display: flex;
  align-items: end;
}

.timeline-card.reverse {
  flex-direction: row-reverse;
}

.timeline-section {
  margin-bottom: 10%;
  position: relative;
  padding: 40px 0 0 0;
  scroll-margin-top: 100px;

}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 110px;
  background: var(--theme);
}

.timeline-image {
  width: 500px;
  height: 350px;
  object-fit: cover;
  padding-right: 20px;
}

.timeline-card.reverse .timeline-image {
  padding-left: 20px;
  padding-right: 0;
}

.timeline-text {
  padding: 40px 0 0 40px;
  flex: 1;
  /* position: relative; */
}

.timeline-year p {
  font-size: 96px;
  font-weight: bolder;
  position: absolute;
  top: 30%;
  left: 39%;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  transition: all 0.5s;
}

.timeline-year p {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  -webkit-text-fill-color: var(--white);
}

.timeline-section.active .timeline-year p {
  color: #000;
  -webkit-text-fill-color: var(--black);
}

.timeline-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #212529;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.timeline-description {
  color: #6A6464;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width:1399px) {
  .timeline-image {
    width: 400px;
  }

  .timeline-title {
    font-size: 34px;
  }
}

@media (max-width:1199px) {
  .year-nav {
    display: none;
  }

  .timeline-title {
    font-size: 32px;
  }
}

@media (max-width:991px) {
  .timeline-section {
    padding-top: 15%;
  }

  .timeline-card {
    flex-direction: column !important;
    position: relative;
  }

  .timeline-image {
    order: 2;
    width: 100%;
    height: 100%;
    padding: 0;
    padding-top: 20px;
  }

  .timeline-card.reverse .timeline-image {
    padding: 0;
    padding-top: 20px;

  }

  .timeline-text {
    order: 1;
    padding: 120px 0 0 0;
    text-align: center;
  }

  .timeline-year p {
    top: 0;
    left: 35%;
  }
}

@media(max-width:767px) {
  .timeline-year p {
    left: 30%;
  }

  .history-top-section p {
    font-size: 28px;
  }
}

@media(max-width:539px) {
  .timeline-year p {
    left: 24%;
  }

  .timeline-title {
    font-size: 28px;
  }
}

@media(max-width:400px) {
  .timeline-year p {
    left: 19%;
  }
}

/* Contact Container Start */
/* .contact-page{ */
/*  */
/* } */
.contact-section-page {
  background: rgba(242, 242, 246, 1);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0px 142px 200px rgba(0.05882352963089943, 0.10196078568696976, 0.2666666805744171, 0.20000000298023224);
  overflow: hidden;
}

.left-container-wrapper {
  margin: 60px 60px 60px 140px;
}

/* .left-container { */
/* width: 500px; */
/* } */

.right-container {
  background: var(--black);
  border-radius: 0 15px 15px 0;
  padding: 20px;
  margin-left: 118px;
  height: 100%;
}


.map-container {
  width: 448px;
  height: 90%;
  overflow: hidden;
  background: white;
  margin: 35px 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  left: -170px;
  display: flex;
  align-items: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-heading {
  font-weight: 700;
  font-size: 54px;
  line-height: 71.22px;
  letter-spacing: 0%;

}

.left-container p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.contact-heading span,
.text-dark-blue {
  color: var(--theme);
}

.left-container .form-control {
  padding: 12px;
  border-color: #E0E0E0;
  background-color: transparent;
  color: #333333;
}

.left-container .form-control:focus {
  background-color: transparent;
  color: #333333;
}

.left-container .form-control::placeholder {
  color: #333333;
}

.btn-custom-submit:hover {
  background-color: #179FCF;
}

.info-section .address-list {
  display: flex;
  align-items: center;
}

.info-section .info-content {
  padding-left: 10px;
  font-size: 14px;
}

.info-section .info-des a,
.info-section .info-des {
  color: var(--text-color);
}

.info-section .info-des a:hover,
.info-section .info-des:hover {
  color: var(--theme);
}

@media (max-width:1199px) {
  .left-container-wrapper {
    margin: 60px;
  }

  .right-container {
    margin: 0;
    border-radius: 0;
  }

  .map-container {
    width: 100%;
    left: 0;
    height: 400px;
    margin: 0;
  }
}

@media (max-width:767px) {
  .left-container-wrapper {
    margin: 30px;
  }
}

/* Contact Container End*/

/* Page Banner */
.page-banner {
  /* background: linear-gradient(271.8deg, rgba(240, 74, 35, 0.204) 0.33%, rgba(0, 0, 0, 0.6) 34.83%, rgba(31, 42, 55, 0.6) 63.19%, rgba(0, 0, 0, 0.6) 84.14%), url(/public/image/bg2.jpg); */
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 30vh !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-title h1 {
  position: relative;
  color: var(--theme);
  display: inline-block;
}

.page-title h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  /* adjust distance from text */
  width: 100%;
  height: 2px;
  background-color: var(--theme);
}

/* Business Banner */
.business-banner {
  min-height: 65vh;
  /* background: linear-gradient(272.2deg, rgba(102, 102, 102, 0.31) 1.93%, rgba(0, 0, 0, 0.31) 1.94%), url(/public/image/bg3.png); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Business Detail */
.business-detail {
  min-height: auto;
}

.business-detail .intro-text p {
  line-height: 1.8;
  text-align: center;
}

.business-detail .logo-section {
  text-align: center;
  margin: 50px 0;
  padding-top: 50px;
  border-top: 1px solid #E6E6E6;
}

.business-detail .logo-container {
  display: inline-block;
  padding: 20px 40px;
  background-color: white;
  border-radius: 400px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  width: 262px;
  height: 182px;
}

.business-detail .logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.business-detail .company-description {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-top: 40px;
  margin-bottom: 40px;
}

.business-detail .business-contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  font-size: 16px;
}

.business-detail .business-contact-info a {
  color: #555;
}

.business-detail .business-contact-info a:hover {
  color: var(--theme);
}

.business-detail .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Job Opening */
.job-opening {
  min-height: auto;

}

.job-card {
  background-color: white;
  border: 0.5px solid #C9D3DF;
  border-radius: 8px;
  padding: 25px;
  margin: 50px 0;
  transition: box-shadow 0.3s ease;
}

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

.job-title {
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.job-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #555;
}

.job-meta-item i {
  color: #666;
  font-size: 0.9rem;
}

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

.job-info {
  flex: 1;
}

.job-header .contact-btn {
  vertical-align: bottom;
}

@media (max-width: 768px) {
  .job-header {
    flex-direction: column;
    gap: 15px;
    align-items: start;
  }


}

@media(max-width:567px) {
  .job-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* About History Part */
.about-history-section {
  position: relative;
  /* background: linear-gradient(271.8deg, rgba(240, 74, 35, 0.204) 0.33%, rgba(0, 0, 0, 0.6) 34.83%, rgba(31, 42, 55, 0.6) 63.19%, rgba(0, 0, 0, 0.6) 84.14%), */
  /* url('/public/image/bg2.jpg') center/cover; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.about-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-history-content {
  opacity: 0;
  transform: translateX(-100px);
  position: absolute;
  max-width: 90%;
}

.about-history-content.active {
  animation: fadeInLeft 1s ease-out forwards;
}

.about-history-content.exit {
  animation: fadeOutLeft 1s ease-out forwards;
}

.about-detail-content {
  opacity: 0;
  transform: translateX(100px);
  position: absolute;
  max-width: 90%;
  /* padding: 0 20px; */
}

.about-detail-content.active {
  animation: fadeInRight 1s ease-out forwards;
}

.about-detail-content.exit {
  animation: fadeOutRight 1s ease-out forwards;
}

.about-history-section .section-title {
  padding: 16px 0;
  line-height: 1;
}



.about-detail-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  /* text-align: left; */
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-100px);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

.hidden {
  display: none;
}

@media(max-width:1299px) {
  .about-history-section .section-title {
    padding: 10px 0;
    font-size: 40px;
  }

  .about-history-section .banner-subtitle {
    font-size: 20px;
  }

  .about-detail-content p {
    font-size: 14px;
  }
}

@media(max-width:992px) {
  .about-history-section .section-title {
    font-size: 36px;
  }

  .about-detail-content,
  .about-detail-content {
    width: 100%;
  }

  /* .about-history-section{ */
  /* min-height: auto; */
  /* } */
}

@media (max-width: 768px) {
  .about-history-section .section-title {
    font-size: 32px;
  }
}

/* About Detail Part */
.about-detail {
  position: relative;
  min-height: auto;
}

.about-text {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.about-detail-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  height: 400px;
}

.about-detail-large-image {
  grid-row: span 2;
  overflow: hidden;
  border-radius: 8px;
  background-color: #ddd;
}

.about-detail-small-image {
  overflow: hidden;
  border-radius: 8px;
  background-color: #ddd;
}

.about-detail-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.about-detail-image-grid img:hover {
  transform: scale(1.05);
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .about-detail-image-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-detail-large-image {
    grid-row: span 1;
    height: 300px;
  }

  .about-detail-small-image {
    height: 200px;
  }

}

.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  height: 100%;

}

.about-subtitle {
  color: var(--theme);
}

.about-detail .section-title {
  line-height: 1.3;
}

/* About Message Part */
.about-message {
  position: relative;
  min-height: auto;
  overflow: hidden;
}

.about-message .subtitle {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .about-message .subtitle {
    font-size: 26px;
  }
}

.message-content-wrapper {
  background: #F3F2F4;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.chairman-text {
  /* color: #000000; */
  font-weight: 400;
}

.managing-director-box {
  border-left: 5px solid var(--theme);
  padding-left: 20px;
  margin-top: 25px;
}

.managing-director-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 3px;
  line-height: 1.2;
}

.managing-director-name {
  font-size: 1.05rem;
  color: #000000;
  font-weight: 400;
}

@media (max-width: 576px) {

  .managing-director-title,
  .managing-director-name {
    font-size: 1rem;
  }
}

.image-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 0;
}

.chairman-image-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 450px; */
  height: 100%;
  overflow: visible;
  z-index: 2;
}

.chairman-image {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.2);
  border-radius: 8px;
  position: relative;
  z-index: 1;
  right: -169px;
  top: -30px;
  object-fit: cover;
}

.chairman-image.zoomed {
  transform: scale(1);
  right: 0px;
  top: 0;
}

.decorative-shape {
  position: absolute;
  bottom: -37px;
  right: -23px;
  width: 250px;
  height: 230px;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  border-radius: 50% 0 0 0;
  z-index: 2;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1) rotate(188deg);
}

.decorative-shape.zoomed {
  transform: scale(0.5) rotate(188deg);
  bottom: -100px;
  right: -95px;
}

@media (max-width: 991px) {
  .message-content-wrapper {
    padding: 40px 30px;
  }

  .chairman-text {
    font-size: 1rem;
    /* text-align: left; */
  }

  /* Reset animations - set final state immediately */
  .chairman-image {
    transition: none;
    transform: scale(1);
    right: 0px;
    top: 0;
  }

  .chairman-image.zoomed {
    transform: scale(1);
    right: 0px;
    top: 0;
  }

  .decorative-shape {
    display: none;
  }

  .chairman-image-wrapper {
    max-width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .message-content-wrapper {
    padding: 30px 20px;
  }
}

/* Weare Part */
.weare {
  min-height: auto;
  position: relative;
  background: url("/public/image/bg4.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.weare-container-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 40px 20px; */
  height: 420px;
}

.weare-map-Container {
  position: relative;
  width: 100%;
  transition: all 1s ease-in-out;
  height: 100%;
}

.weare-containermap-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.weare-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: all 1s ease-in-out;
  /* padding-top: 80px; */
}

.initial-state .weare-map-img {
  transform: translateX(0);
  opacity: 1;
  width: 100%;
  /* padding-top: 80px; */
}

.final-state .weare-map-img {
  transform: translateX(-30px);
  opacity: 1;
  width: 50%;
  padding-top: 0;
}

.back-to-initial .weare-map-img {
  transform: translateX(200px);
  opacity: 0;
  width: 100%;
}

.weare-content-section {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  opacity: 0;
  width: 50%;
  padding: 80px 0;
  transition: all 1s ease-in-out;
}

@media(max-width:1399px) {
  .weare-content-section {
    width: 55%;
  }
}

.final-state .weare-content-section {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.back-to-initial .weare-content-section {
  transform: translateY(-50%) translateX(100%);
  opacity: 0;
}

@media (max-width: 1199px) {
  .weare-container-wrapper {
    height: auto;
  }

  .weare-containermap-img {
    display: none;
  }

  .weare-content-section {
    position: relative;
    width: 100%;
    transform: translateY(0) translateX(0);
    opacity: 1;
    padding: 0;
    top: 0;
  }

  .final-state .weare-content-section,
  .back-to-initial .weare-content-section {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}


/* Core Value Part */
.core-value {
  min-height: auto;
  position: relative;
  background: var(--bg);
}

.core-value-content-wrapper {
  position: relative;
}

.center-bulb {
  position: relative;
  width: 320px;
  height: 400px;
  left: 50%;
}

.bulb-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background: #d4e8ff;
  border-radius: 0 0 60px 60px;
}

.bulb-base::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 10%;
  width: 80%;
  height: 15px;
  background: #d4e8ff;
  border-radius: 10px;
}

.bulb-base::after {
  content: '';
  position: absolute;
  top: -43px;
  left: 15%;
  width: 70%;
  height: 35px;
  background: #d4e8ff;
}

.bulb-main {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: #d4e8ff;
  border-radius: 50% 50% 45% 45%;
  overflow: hidden;
  border: 25px solid #d4e8ff;
}

.quadrant {
  position: absolute;
  width: 50%;
  height: 50%;
  display: flex;
  font-size: 3rem;
}

.quadrant img {
  width: 50px;
  height: 50px;
  text-align: end;
}

.quadrant-1 {
  top: 0;
  left: 0;
  background: #5f6063;
  border-radius: 100% 0 0 0;
  padding: 40px 20px 30px 35px;
}

.quadrant-2 {
  top: 0;
  right: 0;
  background: #f9b51e;
  border-radius: 0 100% 0 0;
  padding: 40px 40px 30px 20px;
}

.quadrant-3 {
  bottom: 0;
  left: 0;
  background: #e54840;
  border-radius: 0 0 0 100%;
  padding: 30px 20px 30px 43px;
}

.quadrant-4 {
  bottom: 0;
  right: 0;
  background: #449ed0;
  border-radius: 0 0 100% 0;
  padding: 25px;
}

.step-card {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 310px;
}

.step-01 {
  top: 0px;
  left: 0;
}

.step-02 {
  top: 0px;
  right: 0;
}

.step-03 {
  bottom: 0px;
  left: 0;
}

.step-04 {
  bottom: 0px;
  right: 0;
}

.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  position: relative;
}

.step-icon::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 25px;
  background: inherit;
  border-radius: 50%;
  opacity: 0.6;
}

.icon-01 {
  background: #5f6063;
}

.icon-02 {
  background: #f9b51e;
}

.icon-03 {
  background: #e54840;
}

.icon-04 {
  background: #449ed0;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes rotateQuadrant {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Initial state - hidden before animation */
.center-bulb {
  opacity: 0;
  transform: translateX(-50%) scale(0.8);
}

.quadrant {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

.step-01,
.step-03 {
  opacity: 0;
  transform: translateX(-50px);
}

.step-02,
.step-04 {
  opacity: 0;
  transform: translateX(50px);
}

/* Animated state - applied when in view */
.core-value.animate-in .center-bulb {
  animation: scaleIn 1s ease-out 0.3s both;
}

.core-value.animate-in .quadrant {
  animation: rotateQuadrant 0.6s ease-out both;
}

.core-value.animate-in .quadrant-1 {
  animation-delay: 1.2s;
}

.core-value.animate-in .quadrant-2 {
  animation-delay: 1.4s;
}

.core-value.animate-in .quadrant-3 {
  animation-delay: 1.6s;
}

.core-value.animate-in .quadrant-4 {
  animation-delay: 1.8s;
}

.core-value.animate-in .step-01 {
  animation: fadeInLeft 0.6s ease-out 2s both;
}

.core-value.animate-in .step-02 {
  animation: fadeInRight 0.6s ease-out 2.3s both;
}

.core-value.animate-in .step-03 {
  animation: fadeInLeft 0.6s ease-out 2.9s both;
}

.core-value.animate-in .step-04 {
  animation: fadeInRight 0.6s ease-out 2.6s both;
}

.core-value.animate-in .step-icon {
  position: relative;
  animation: pulse 2s ease-in-out infinite;
  animation-delay: 3.5s;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .step-card {
    width: 50%;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .center-bulb {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .step-card {
    position: static;
    margin: 40px auto;
    max-width: 400px;
    width: 100%;
  }

  .center-bulb {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}

/* CSR Part */
.csr {
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.csr-button {
  background-color: var(--theme);
  padding: 15px;
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;

}

.csr-button .iconify {
  transform: rotate(-45deg);
  transition: all 1s;
  color: var(--white);
}

.csr-button:hover .iconify {
  transform: rotate(0deg);
}

.csr .swiper {
  width: 100%;
  height: 520px;
}

@media(max-width:991px) {
  .csr .swiper {
    height: 320px;
  }
}

.csrSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0px 0;
  font-weight: bold;
  color: #fff;

}

.csrSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Career Detail Part */
.career-detail {
  min-height: auto;
  position: relative;
  /* background-image: url("/public/image/blog-bg.png"); */
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--bg);
}

.career-detail .job-info-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  font-family: "Helvetica", Arial, sans-serif;
}

.career-detail .info-row {
  display: flex;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

@media(max-width:393px) {
  .career-detail .info-row {
    flex-direction: column;
  }
}

.career-detail .info-label {
  min-width: 150px;
  color: #666;
}

.career-detail .info-value {
  color: #333;
  font-weight: 500;
}

.career-detail .application-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.position-title {
  color: var(--theme);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: "Helvetica", Arial, sans-serif;
}

.career-detail .upload-area {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 25px 30px;
  text-align: center;
  margin-bottom: 25px;
  cursor: pointer;
  transition: all 0.3s;
}

.career-detail .upload-area:hover {
  border-color: var(--theme);
  background-color: #fff5f5;
}

.career-detail .upload-icon {
  width: 50px;
  height: 50px;
  background-color: var(--theme);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.career-detail .upload-icon .iconify {
  color: white;
}

.career-detail .upload-text {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

.career-detail .form-label {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.career-detail .form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.career-detail .form-control:focus {
  border-color: var(--theme);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.career-detail textarea.form-control {
  min-height: 100px;
  resize: vertical;
}


.career-detail ul {
  padding-left: 20px;
}

.career-detail ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
}

.career-detail input[type="file"] {
  display: none;
}

/* All Details Part */
.all-details {
  min-height: auto;
  position: relative;
  background-image: url("/public/image/blog-bg.png");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--bg);
}

.main-image {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
  margin-bottom: 20px;
}

.detail-date-badge {
  color: var(--theme);
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 0;
}

.detail-content-list {
  list-style: none;
  padding-left: 0;
  color: var(--text-color);
}

.detail-content-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.detail-content-list li:before {
  content: "•";
  color: var(--theme);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.detail-wrapper {
  padding: 0 30px;
}

.detail-sidebar {
  padding: 20px 0;
  /* border-radius: 8px; */
}

.detail-sidebar .subtitle {
  font-weight: bolder;
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--black);
}

.detail-item {
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 20px;
}

.detail-image {
  width: 80px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin-right: 15px;
  filter: grayscale(80%);
}

.detail-item:hover .detail-image {
  filter: initial;
}

.detail-content {
  flex: 1;
}

.detail-title {
  color: var(--black);
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  transition: all 0.5s;
}

.detail-item:hover .detail-title {
  color: var(--theme);
}

.detail-description {
  color: #666;
  font-size: 12px;
  margin-bottom: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.view-link {
  color: var(--black);
  font-size: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.5s;
}

.detail-item:hover .view-link {
  color: var(--theme);
}

.detail-main-content {
  background: white;
  padding-bottom: 30px;
}

.detail-section-heading {
  font-size: 24px;
}

@media(max-width:1199px) {
  .detail-section-heading {
    font-size: 20px;
  }
}

.help-block {
  color: red;
}

.custom-card {
  height: 460px;
}

/* Highlight active menu and submenu in red */
.active-menu>a,
.dropdown-menu .active-menu {
  color: var(--theme) !important;
  font-weight: 600;
}

.alert.alert-error {
  background-color: rgb(221, 66, 66);
  opacity: 90%;
  color: white;
}

.post-tag {
  display: inline-block;
  background: var(--theme);
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}