/* Hero */
.hero-section {
  background-color: #f1fcf5;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #1ab663;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  font-size: 2rem;
  text-align: center;
  line-height: 65px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 2;
  animation: pulse-wave 1.5s infinite ease-in-out;
}

/* Play Icon Hover */
.play-button:hover {
  background: #1ab663;
  color: white;
}

/* Infinite Pulse Animation */
@keyframes pulse-wave {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 182, 99, 0.6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(26, 182, 99, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(26, 182, 99, 0);
  }
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #1ab663;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .experience-badge {
  bottom: 10px;
  left: 10px;
  background-color: #1ab663;
  color: white;
  padding: 10px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
}

.services-section {
  background-color: #D6EEEF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #e5e5e5;
  gap: 16px;
  max-width: 1180px;
}

.service-item {
  height: 180px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all .3s ease-in-out;
  z-index: 0;
}

.service-item::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #d4ffe8;
  position: absolute;
  bottom: -100%;
  left: 0;
  transition: all .3s ease-in-out;
  z-index: -1;
}

.service-item:hover::after {
  bottom: 0%;
}

.service-item h6 {
  font-size: 16px;
  color: #000;
}

.service-item:nth-child(4n) {
  border-right: 0;
}

.service-item:nth-last-child(-n+4) {
  border-bottom: 0;
}

.service-item i {
  color: #000;
}

@media (max-width: 575.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(2n) {
    border-right: 0;
  }

  .service-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .service-item {
    padding: 4px;
  }
}

.logo img {
  height: 70px;
}

/* we work */
.section-padding {
  padding: 70px 0;
}

.bg-fixed {
  background-attachment: fixed;
}

.work-overlay {
  position: relative;
}

.work-overlay::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #d6eeef
}

.main-work-process {
  overflow: hidden;
  position: relative;
  padding-top: 100px;
}

.main-work-process .work-process {
  position: relative;
  margin-top: -79px;
}

.main-work-process .work-process:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.main-work-process .process-icon,
.main-work-process .work-process-icon {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.main-work-process .work-process-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border-color: #6a78d1 #6a78d1 transparent transparent;
  border-style: solid;
  border-width: 15px;
  z-index: 1;
  transform: rotate(-135deg);
}

.main-work-process .process-icon {
  display: block;
  width: 70px;
  height: 70px;
  line-height: 75px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .4);
  font-size: 30px;
  font-weight: 700;
  color: #6a78d1;
  text-align: center;
  transform: rotate(131deg);
}

.main-work-process .work-process-content {
  border-radius: 5px;
  width: 35%;
  float: left;
  background: linear-gradient(90deg, #6a78d1, #00a4bd);
  padding: 30px 20px;
  margin: 30px 0;
  z-index: 1;
  position: relative;
}

.main-work-process .work-process-content:before {
  content: "";
  width: 29%;
  height: 15px;
  background: linear-gradient(270deg, #6a78d1, #00a4bd);
  position: absolute;
  top: 50%;
  right: -29%;
  z-index: -1;
  transform: translateY(-50%);
}

.main-work-process .title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
}

.main-work-process .description {
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  margin: 0;
}

.main-work-process .work-process:after,
.main-work-process .work-process:before {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}

.main-work-process .work-process:nth-child(2n) .work-process-content {
  float: right;
}

.main-work-process .work-process:nth-child(2n) .work-process-icon {
  transform: rotate(45deg);
  border-top-color: #907cff;
  border-right-color: #907cff;
}

.main-work-process .work-process:nth-child(2n) .work-process-content:before {
  left: auto;
  left: -29%;
}

.main-work-process .work-process:nth-child(2n) .work-process-content:before {
  background-image: linear-gradient(100deg, #907cff, #6eacff 91%);
}

.main-work-process .work-process:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .main-work-process {
    padding-top: 60px;
  }

  .main-work-process .work-process {
    margin-top: 40px;
    text-align: center;
  }

  .main-work-process .work-process-icon {
    position: static;
    margin: 0 auto 20px;
    transform: rotate(135deg) !important;
  }

  .main-work-process .process-icon {
    /* position: static; */
    /* margin: 0 auto; */
    transform: rotate(-135deg) !important;
  }

  .main-work-process .work-process-content {
    width: 100%;
    float: none;
    margin: 0 auto;
    padding: 20px 15px;
  }

  .main-work-process .work-process-content:before {
    display: none;
  }

  .main-work-process .title {
    font-size: 18px;
  }

  .main-work-process .description {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Blog */
.blog {
  padding: 80px 0;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.title-area .sub-title2 {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #3498db;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.title-area .sec-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

/* Blog Card */
.blog-card.style4 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.blog-card.style4:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card .blog-img:hover img {
  transform: scale(1.05);
}

/* Blog Content */
.blog-content {
  padding: 25px 22px 30px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 12px;
  color: #888;
}

.blog-meta a {
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.blog-meta a:hover {
  color: #3498db;
}

.blog-meta i {
  color: #3498db;
}

.box-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.box-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.box-title a:hover {
  color: #3498db;
}

/* Read More Button */
.th-btn2.style2.th-icon {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.th-btn2.style2.th-icon:hover {
  background-color: #217dbb;
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
}

/* Project */
/* Section Styling */
.recent-projects {
  background-color: #f9f9f9;
}

.recent-projects h2 {
  font-size: 36px;
  color: #222;
}

.recent-projects p {
  font-size: 16px;
  color: #666;
}

/* Swiper Custom Card Styling */
.project-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  background-color: #fff;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.project-card .card-body {
  padding: 20px;
}

.project-card h6 {
  font-size: 18px;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: #3498db;
}

/* Swiper navigation styles */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #3498db;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

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

.swiper-button-prev {
  left: -20px;
  /* Position just outside the container */
}

.swiper-button-next {
  right: -20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #217dbb;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Adjust on smaller devices */
@media (max-width: 768px) {
  .swiper-button-prev {
    left: 5px;
  }

  .swiper-button-next {
    right: 5px;
  }
}

/* Client */
.partner {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.slider-area {
  position: relative;
}

.brand-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  height: 100px;
}

.brand-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.brand-item img {
  max-height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.brand-item img:hover {
  opacity: 1;
}

.about-features h2 {
  font-size: 36px;
  color: #222;
}

.section-title {
  position: relative;
  font-size: 36px;
  color: #222;
  z-index: 9999;
}
.about-title {
  position: relative;
  font-size: 36px;
  color: #222;
  z-index: 9999;
}

footer .ph-fill {
  font-size: 24px;
}

/* About page */
.about-page-image {
  height: 400px;
  width: 100%;
}

.about-page .section-title {
  font-weight: 700;
  font-size: 2.2rem;
}

.about-page .section-subtitle {
  color: #6c757d;
  font-size: 1rem;
}

.about-page .sidebar {
  min-width: 220px;
  border-radius: 12px;
  background: linear-gradient(to bottom, #6f42c1, #6610f2);
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-page .tab-button {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 600;
  transition: all 0.3s;
  text-align: left;
}

.about-page .tab-button:hover,
.about-page .tab-button.active {
  background-color: #ffffff;
  color: #6610f2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-page .tool-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.about-page .tool-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.about-page .tool-box img {
  height: 60px;
  margin-bottom: 10px;
}

.about-page .tab-content {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Welcome Modal */
.custom-modal .modal-content {
  border-radius: 20px;
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

.custom-modal .modal-body {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.custom-modal img {
  border-radius: 20px;
  width: 250px;
  background: linear-gradient(to top, #c5edcd, #ffffff);
}

.custom-modal .modal-text h4 {
  font-weight: 600;
  font-size: 1.5rem;
}

.custom-modal .modal-text h4 span {
  color: #28a745;
}

.custom-modal .modal-text p {
  margin: 15px 0;
  color: #555;
}

.custom-modal .btn-success {
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 8px;
}

.custom-modal .consult-text {
  margin-top: 10px;
  color: #555;
}

.custom-modal .consult-text span {
  color: #28a745;
  font-weight: 600;
}

.custom-modal .modal-footer {
  border-top: none;
  justify-content: center;
}

.bdtask-logo {
  width: 150px;
}


/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/

.breadcrumbs .page-header {
  padding: 40px 0 40px 0;
  min-height: 400px;
  position: relative;
  background-color: #000;
  z-index: -1;
}

.breadcrumbs .page-header::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.breadcrumbs .page-header h2 {
  font-size: 50px;
  font-weight: 500;
  color: #fff;
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #c5c5c5;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .page-header h2 {
    font-size: 42px;
  }
}


/* client Page*/
.client-logo-box {
  background: #fff;
  padding: 30px;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.client-logo-box img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.client-logo-box:hover img {
  filter: grayscale(0%);
}


/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.blog-details .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.blog-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, #0077B5, transparent 90%);
  color: #0077B5;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .article-header .meta-categories .category:hover {
  background: #0077B5;
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #000;
}

@media (max-width: 768px) {
  .blog-details .article-header .title {
    font-size: 2.2rem;
  }
}

.blog-details .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.blog-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #000;
}

.blog-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.blog-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .blog-details .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .blog-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.blog-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-details .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.blog-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .blog-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .blog-details .article-wrapper .table-of-contents {
    display: none;
  }
}

.blog-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #000;
}

.blog-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.blog-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.blog-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0077B5;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover,
.blog-details .article-wrapper .table-of-contents nav ul li a.active {
  color: #000;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.blog-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.blog-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.blog-details .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.blog-details .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 2rem;
}

.blog-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, #0077B5, transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: #000;
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: #0077B5;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: #000;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: #0077B5;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: #000;
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #0077B5;
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: #000;
  margin: 1rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, #0077B5, transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: #0077B5;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: #000;
  margin-bottom: 0.5rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: #0077B5;
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: #000;
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-footer h4 {
  color: #000;
  margin-bottom: 1.5rem;
}

.blog-details .article-footer .share-article {
  margin-bottom: 3rem;
}

.blog-details .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-details .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.blog-details .article-footer .share-article .share-buttons .share-button:hover {
  background: #0077B5;
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1DA1F2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267B2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077B5;
}

.blog-details .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-details .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, #0077B5, transparent 90%);
  color: #0077B5;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .article-tags .tags .tag:hover {
  background: #0077B5;
  color: var(--contrast-color);
  transform: translateY(-2px);
}



/*--------------------------------------------------------------
# Event Section
--------------------------------------------------------------*/
.event .event-meta {
  background-color: color-mix(in srgb, #0077B5, transparent 95%);
  padding: 15px;
  border-radius: 8px;
}

.event .event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event .event-meta .meta-item i {
  color: #0077B5;
  font-size: 1.2rem;
}

.event .event-meta .meta-item span {
  font-weight: 500;
}

.event .event-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .event .event-content h2 {
    font-size: 1.8rem;
  }
}

.event .event-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.event .event-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 50px;
  background-color: #0077B5;
}

.event .event-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.event .event-content .event-highlights {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.event .event-content .event-highlights li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.event .event-content .event-highlights li i {
  color: #0077B5;
  font-size: 1.1rem;
  margin-top: 3px;
}

.event .event-content .event-highlights li span {
  flex: 1;
}

.event .event-content .schedule-table {
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.event .event-content .schedule-table .schedule-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event .event-content .schedule-table .schedule-row:last-child {
  border-bottom: none;
}

.event .event-content .schedule-table .schedule-row:nth-child(odd) {
  background-color: color-mix(in srgb, #0077B5, transparent 95%);
}

@media (max-width: 576px) {
  .event .event-content .schedule-table .schedule-row {
    flex-direction: column;
  }
}

.event .event-content .schedule-table .schedule-time {
  width: 180px;
  padding: 15px;
  font-weight: 600;
  background-color: color-mix(in srgb, #0077B5, transparent 90%);
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  .event .event-content .schedule-table .schedule-time {
    width: 100%;
  }
}

.event .event-content .schedule-table .schedule-activity {
  flex: 1;
  padding: 15px 20px;
}

.event .event-content .schedule-table .schedule-activity h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.event .event-content .schedule-table .schedule-activity p {
  margin: 0;
  font-size: 0.95rem;
}

.event .event-content .event-gallery img {
  transition: all 0.3s ease;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.event .event-content .event-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event .event-sidebar .sidebar-widget {
  margin-bottom: 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.event .event-sidebar .sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.event .event-sidebar .sidebar-widget h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 60px;
  background-color: #0077B5;
}

.event .event-sidebar .registration-form .btn-register {
  background-color: #0077B5;
  color: var(--contrast-color);
  border: none;
  padding: 12px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.event .event-sidebar .registration-form .btn-register:hover {
  background-color: color-mix(in srgb, #0077B5, black 15%);
  transform: translateY(-2px);
}

.event .event-sidebar .registration-form .btn-register:active {
  transform: translateY(0);
}

.event .event-sidebar .organizer-info .organizer-details {
  display: flex;
  flex-direction: column;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-image {
  margin-bottom: 15px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-image img {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-position {
  color: #0077B5;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact {
  background-color: color-mix(in srgb, #0077B5, transparent 95%);
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p:last-child {
  margin-bottom: 0;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p i {
  color: #0077B5;
}

.event .event-sidebar .related-events .related-event-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event .event-sidebar .related-events .related-event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event .event-sidebar .related-events .related-event-item .related-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 70px;
  background-color: #0077B5;
  color: var(--contrast-color);
  border-radius: 8px;
}

.event .event-sidebar .related-events .related-event-item .related-event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event .event-sidebar .related-events .related-event-item .related-event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event .event-sidebar .related-events .related-event-item .related-event-info {
  flex: 1;
}

.event .event-sidebar .related-events .related-event-item .related-event-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.event .event-sidebar .related-events .related-event-item .related-event-info p {
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: #b5ffd7;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: #d0eeff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: #0077B5;
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #00a4bd;
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #000;
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: #d9ffeb;
  border: 1px solid #1ab663;
  color: #000;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: #b5ffd7;
  border-color: #1ab663;
  box-shadow: 0 0 0 3px #0077B5;
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: #0077B5;
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: #cdffed;
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, #0077B5, #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, #0077B5, transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, #0077B5, #f5f8fd 20%);
  color: #000;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: #0077B5;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}


/* Testimonial */
.testimonial-card {
  transition: 0.3s ease;
  border-radius: 1rem;
  background-color: #fff;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-img {
  width: 60px;
  height: 60px;
  padding: 3px;
  background-color: #fff;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Modern Rounded Pagination */
.testimonials .pagination-modern .page-link {
    color: #0d6efd;
    border: 1px solid #dee2e6;
    background-color: #fff;
    padding: 0.5rem 0.9rem;
    margin: 0 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.testimonials .pagination-modern .page-link.rounded-circle {
    border-radius: 50px;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hover Style */
.testimonials .pagination-modern .page-link:hover {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

/* Active Page */
.testimonials .pagination-modern .page-item.active .page-link {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.3);
}

/* Disabled Links */
.testimonials .pagination-modern .page-item.disabled .page-link {
    color: #aaa;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    cursor: not-allowed;
}


/* Job Post */
.job-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.job-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.job-title-link {
    text-decoration: none;
    color: #212529;
}

.job-title-link:hover .job-title {
    color: #0d6efd;
}

.job-meta {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 12px;
}

.job-meta li {
    margin-bottom: 6px;
}

.job-badge {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 8px;
    margin-right: 6px;
}

.btn-view-details {
    font-size: 15px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #0d6efd;
    border-width: 1.5px;
}

.btn-view-details:hover {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.2);
}

.job-details-card {
    border-radius: 20px;
    background-color: #fff;
    transition: 0.3s ease;
}

.job-title {
    font-size: 28px;
    color: #212529;
}

.job-meta {
    font-size: 16px;
}

.job-meta li {
    margin-bottom: 8px;
}

.job-badge {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 8px;
}

.btn-apply-now {
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-apply-now:hover {
    background-color: #0a58ca;
    color: #fff;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.2);
}

.apply-form input,
.apply-form textarea {
    border-radius: 10px;
    box-shadow: none;
}

.apply-form input:focus,
.apply-form textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.1);
}

.apply-form .form-label {
    font-weight: 500;
    font-size: 15px;
}
