/* ====================================================
    # Varible CSS
============================================== */
:root {
  --primary-color: #1f2b5f;
  --secondary-color: #ec4626;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-color: #424242;
  --font-dark-color: #424242;
  --footer-bg: #2a2c38;
  --section-color: #f5f5f5;
  --primary-font: 'Poppins', sans-serif;
  --secondary-font: 'Roboto', sans-serif;
}

/* ====================================================
	# Normalize CSS
============================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.825em;
  font-family: var(--primary-font);
  color: var(--font-color);
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

p {
  margin-top: 0;
}

/*======================
Common style
======================*/
.site {
  background: var(--white-color);
}

.okk {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
  width: 100%;
  z-index: 9999;
  background: var(--white-color);
  box-shadow: 0 1px 25px 0 rgba(0, 0, 0, 0.4) !important;
}

.list-none {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*======================
Font Sizes
======================*/
.xl-title {
  font-size: 46px;
  line-height: 64px;
  font-weight: 600;
  color: var(--font-color);
}

.lg-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: var(--font-color);
}

.md-title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  color: var(--font-color);
}

.sm-title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: var(--font-color);
}

@media (max-width: 768px) {
  .sm-title {
    font-size: 18px;
  }
}

.ls-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--font-color);
}

.xs-title {
  font-size: 15px;
  line-height: 28px;
  color: var(--font-color);
}

.ts-title {
  font-size: 12px;
  line-height: 16px;
  color: var(--font-color);
}

.font-w-semi {
  font-weight: 600;
}

.bg-main {
  background: var(--primary-color);
}

.bg-section {
  background: var(--section-color);
}

.text-black {
  color: var(--black-color);
}

.text-main {
  color: var(--primary-color);
}

.text-sec {
  color: var(--secondary-color);
}

.flex-g-1 {
  flex: 1 0 0;
}

.box-shadow-1 {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.box-shadow-2 {
  box-shadow: 0px 6px 21px 3px rgba(0, 0, 0, 0.1);
}

.border-b-primary {
  border-bottom: 1px solid var(--primary-color);
}

.border-b-secondary {
  border-bottom: 1px solid var(--secondary-color);
}

.border-b-white {
  border-bottom: 1px solid var(--white-color);
}

.left-border {
  position: relative;
  padding-left: 28px;
}

.left-border:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--secondary-color);
  height: 2px;
  width: 16px;
}

.left-two-border {
  position: relative;
  padding-left: 28px;
}

.left-two-border:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--primary-color);
  height: 8px;
  width: 8px;
}

.after-border-b-white {
  position: relative;
  padding-bottom: 20px;
}

.after-border-b-white:before {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  background: var(--white-color);
  height: 2px;
  width: 40px;
}

.after-border-b-primary,
.after-border-b-secondary,
.after-border-b-white {
  position: relative;
  padding-bottom: 20px;
}

.after-border-b-primary:before,
.after-border-b-secondary:before,
.after-border-b-white:before {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  height: 2px;
  width: 40px;
}

.after-border-b-primary:before {
  background: var(--primary-color);
}

.after-border-b-secondary:before {
  background: var(--secondary-color);
}

.after-border-b-white:before {
  background: var(--white-color);
}

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

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

.site-header .header-t .social-links ul li svg {
  padding: 6px;
  height: 26px;
  width: 26px;
  background: var(--white-color);
  color: var(--primary-color);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: ease 0.6s;
  -moz-transition: ease 0.6s;
  transition: ease 0.6s;
}

.site-header .header-t .social-links ul li svg:hover {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}

@media (max-width: 1024px) {
  .site-header .header-b .wrapper {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .site-header .header-b .navbar-brand {
    flex-grow: 1;
  }
}

.site-header .header-b .navbar-brand img {
  width: 160px;
}

.site-header .header-b .navbar-toggler:focus {
  outline: none;
}

.site-header .header-b .main-navigaiton .nav-item {
  margin-right: 16px;
}

.site-header .header-b .main-navigaiton .nav-item .nav-link {
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  transition: ease 0.4s;
  color: var(--font-color);
}

.site-header .header-b .main-navigaiton .nav-item .nav-link:hover {
  color: var(--secondary-color);
}

.site-header .header-b .main-navigaiton .nav-item .nav-link.active {
  color: var(--secondary-color);
}

.site-header .header-b .main-navigaiton .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  top: 46px;
  left: 18px;
}

.site-header .header-b .main-navigaiton .dropdown-menu .dropdown-item {
  line-height: 21px;
  padding: 7px 10px;
  font-size: 14px;
  white-space: break-spaces;
  background-color: var(--primary-color);
  box-shadow: 0 0 1px;
  color: var(--white-color);
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  transition: ease 0.3s;
}

.site-header .header-b .main-navigaiton .dropdown-menu .dropdown-item:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.cta {
  background: linear-gradient(to bottom, rgba(42, 44, 56, 0.4), rgba(52, 100, 210, 0.55)), url(../images/sliders/slider-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  padding: 68px 0;
}

.cta .page-title {
  color: var(--white-color);
}

@media (max-width: 1024px) {
  .cta .page-title {
    font-size: 20px;
    line-height: 26px;
  }
}

.site-footer {
  background: var(--footer-bg);
  background-size: cover;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer .social-links {
  margin-top: 16px;
}

.site-footer .social-links ul li svg {
  padding: 11px;
  height: 40px;
  width: 40px;
  background: var(--white-color);
  color: var(--primary-color);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: ease 0.6s;
  -moz-transition: ease 0.6s;
  transition: ease 0.6s;
}

.site-footer .social-links ul li svg:hover {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}

.to-top {
  background: color(primary);
  color: #fff;
  padding: 10px 10px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}

.button-one {
  padding: 6px 14px;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-block;
  border: 1px solid var(--primary-color);
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  transition: ease 0.3s;
}

.button-one:hover {
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
}

.button-two {
  padding: 6px 14px;
  background: transparent;
  color: var(--primary-color);
  display: inline-block;
  border: 1px solid var(--primary-color);
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  transition: ease 0.3s;
}

.button-two:hover {
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
}

.button-three {
  padding: 6px 18px;
  background: var(--white-color);
  color: var(--font-color);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  display: inline-block;
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  transition: ease 0.3s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}

.button-three:hover {
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
}

.button-four {
  padding: 6px 14px;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-block;
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  transition: ease 0.3s;
}

.button-four:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  text-decoration: none;
}

.button-one-sec {
  padding: 6px 14px;
  background: var(--secondary-color);
  color: var(--white-color);
  display: inline-block;
  border: 1px solid var(--secondary-color);
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  transition: ease 0.3s;
}

.button-one-sec:hover {
  background: transparent;
  color: var(--secondary-color);
  text-decoration: none;
}

.button-two-sec {
  padding: 6px 14px;
  background: transparent;
  color: var(--secondary-color);
  display: inline-block;
  border: 1px solid var(--secondary-color);
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  transition: ease 0.3s;
}

.button-two-sec:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  text-decoration: none;
}

.page-banner {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/sliders/slider-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 68px 0;
}

.page-banner .page-title {
  color: var(--white-color);
}

.page-banner .bread-crumbs .active {
  color: var(--secondary-color);
}

.slider-section .slider-holder .slider-item img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.slider-section .slider-holder .slider-item .slider-content {
  position: absolute;
  top: 50%;
  left: 140px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 66;
}

.slider-section .slider-holder .slider-item:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.slider-section .slider-holder .owl-nav button {
  top: 50%;
  position: absolute;
  width: 40px;
  height: 80px;
  background: var(--white-color);
  color: var(--font-color);
  cursor: pointer;
  font-size: 26px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.slider-section .slider-holder .owl-nav button.owl-next {
  right: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.slider-section .slider-holder .owl-nav button.owl-prev {
  left: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.slider-section .slider-holder .owl-nav button:focus {
  outline: none;
}

.about-section .img-holder img {
  height: 500px;
  object-fit: cover;
}

.about-section .img-holder .meta-info {
  position: absolute;
  top: 0;
  left: 0;
}

.about-section .img-holder .meta-info .info {
  width: 140px;
  height: 140px;
  text-align: center;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-block;
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  transition: ease 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.about-section .img-two {
  bottom: -34px;
  left: 80px;
  max-width: 80%;
  height: 300px;
  object-fit: cover;
}

.about-section .img-two img {
  width: 100%;
  height: 100%;
}

.service-section .wrapper .holder {
  height: 288px;
  object-fit: cover;
  overflow-y: hidden;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  transition: ease 0.4s;
  cursor: pointer;
}

.service-section .wrapper .holder .meta-icon {
  position: absolute;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  transition: ease 0.4s;
  left: 4px;
  top: 8px;
  padding: 6px 12px;
  z-index: 66;
  visibility: visible;
  opacity: 1;
}

.service-section .wrapper .holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service-section .wrapper .holder .text {
  top: 0;
  background: transparent;
  width: 100%;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  transition: ease 0.4s;
  height: 100%;
  padding: 50px 50px 40px;
}

.service-section .wrapper .holder .text .content {
  position: absolute;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  transition: ease 0.4s;
  top: 200px;
  z-index: 66;
}

.service-section .wrapper .holder .text .content .button {
  visibility: hidden;
  opacity: 0;
}

.service-section .wrapper .holder .text img {
  max-width: 64px;
  display: none;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  transition: ease 0.4s;
  height: auto;
}

.service-section .wrapper .holder:hover .meta-icon {
  left: 16px;
  visibility: visible;
  opacity: 1;
}

.service-section .wrapper .holder:hover .text {
  background: transparent;
}

.service-section .wrapper .holder:hover .text img {
  -webkit-transform: translateY(-128px);
  -moz-transform: translateY(-128px);
  transform: translateY(-128px);
}

.service-section .wrapper .holder:hover .text .content {
  top: 180px;
}

.service-section .wrapper .holder:hover .text .content .title {
  color: var(--white-color) !important;
}

.service-section .wrapper .holder:hover .text .content .button {
  visibility: visible;
  opacity: 1;
}

.service-section .wrapper .holder:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.portfolio-filter li {
  cursor: pointer;
}

.portfolio-filter li.active {
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
}

.portfolio-content {
  padding: 10px 10px 0 10px;
  background: #efefef;
  position: relative;
  top: -34px;
  margin: 0 12px;
  text-align: center;
  box-shadow: 0 0 3px;
}

.portfolio-item img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.testimonial-section .testimonial-slider .client-img {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
}

.testimonial-section .testimonial-slider .client-img img {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}

.testimonial-section .testimonial-slider .qoute {
  position: absolute;
  top: 0;
  right: 0;
}

.service-detail-section .service-slider .slider-item {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.service-detail-section .service-slider .slider-item img {
  height: 220px;
  object-fit: cover;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  width: 100%;
}

.contact-section .contact-info .icon {
  width: 46px;
  height: 46px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}

.contact-section .contact-form label {
  margin-bottom: 0;
  font-weight: 600;
}

.contact-section .contact-form .form-control {
  border-radius: 0;
}

.contact-section .contact-form .button-one {
  cursor: pointer;
}

button:focus {
  outline: none;
}

.service-banner-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 10px solid var(--white-color);
}

/*# sourceMappingURL=style.css.map */
/*BLOGS*/

.blog-page.blog {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #EDF2F8;
}

.blog-page.blog .pages {
  padding-top: 50px;
}

.blog-page.blog .single-blog {
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.blog-page.blog .single-blog .blog-img {
  overflow: hidden;
}

.blog-page.blog .single-blog .blog-img img {
  width: 100%;
  transition: 0.5s;
  object-fit: cover;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.blog-page.blog .single-blog .content {
  background: #fff;
  padding: 22px 20px;
}

.blog-page.blog .single-blog .content p {
  text-transform: capitalize;
  font-size: 14px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-page.blog .single-blog .content p:hover {
  color: var(--secondary-color);
}

.blog-page.blog .single-blog .content .desc {
  padding-top: 5px;
  padding-bottom: 10px;
}

.blog-page.blog .single-blog .content .desc:hover {
  color: #606060;
}

.blog-page.blog .single-blog .content h5 {
  font-weight: 700;
  color: var(--primary-color);
  padding: 4px 0;
  transition: 0.3s;
  font-size: 18px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-page.blog .single-blog .content h5:hover {
  color: var(--secondary-color);
}

.blog-page.blog .single-blog .content .read-more {
  text-transform: capitalize;
  text-decoration: underline;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-page.blog .single-blog .content .read-more:hover {
  color: var(--secondary-color);
}

.blog-page.blog .single-blog:hover .blog-img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

/*===========================================================
 27: blog left sidebar CSS
=============================================================*/
.blog-page.right-sidebar,
.blog-page.left-sidebar {
  padding-top: 80px;
}

/*===========================================================
 28: blog main page CSS
=============================================================*/
.blog-page.blog-main {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-page.blog-main .single-blog {
  margin-bottom: 50px;
}

.blog-page.blog-main .single-blog .blog-img {
  position: relative;
}

.blog-page.blog-main .single-blog .blog-img img {
  width: 100%;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.blog-page.blog-main .single-blog .blog-img .item {
  position: relative;
}

.blog-page.blog-main .single-blog .blog-img .option {
  height: 55px;
  width: 55px;
  background: var(--secondary-color);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9;
  text-align: center;
}

.blog-page.blog-main .single-blog .blog-img .option p {
  text-transform: capitalize;
  color: #fff;
  line-height: 20px;
  padding-top: 8px;
}

.blog-page.blog-main .single-blog .blog-img .option a {
  display: block;
  height: 100%;
  width: 100%;
}

.blog-page.blog-main .single-blog .blog-img .option a i {
  line-height: 55px;
  font-size: 30px;
  color: #fff;
}

.blog-page.blog-main .single-blog .blog-img .btn-left,
.blog-page.blog-main .single-blog .blog-img .btn-right {
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  text-align: center;
  z-index: 19;
  cursor: pointer;
  line-height: 40px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-page.blog-main .single-blog .blog-img .btn-left:hover,
.blog-page.blog-main .single-blog .blog-img .btn-right:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.blog-page.blog-main .single-blog .blog-img .btn-left {
  left: 0;
}

.blog-page.blog-main .single-blog .blog-img .btn-right {
  right: 0;
}

.blog-page.blog-main .single-blog .content .desc {
  padding-right: 165px;
}

.blog-page.blog-main .single-blog .content .view {
  padding-top: 15px;
  padding-bottom: 5px;
}

.blog-page.blog-main .single-blog .content .view p {
  text-transform: capitalize;
}

.blog-page.blog-main .single-blog .content h4 {
  font-weight: 700;
  padding-right: 18%;
  padding-bottom: 20px;
}

.blog-page.blog-main .single-blog .content .button-style1 {
  line-height: 38px;
  padding: 0 25px;
  margin-top: 25px;
}

.blog-page.blog-main .pages {
  padding-top: 30px;
}

/*===========================================================
 29: blog list page CSS
=============================================================*/
.blog-page.blog-list {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-page.blog-list .single-blog {
  margin-bottom: 30px;
}

.blog-page.blog-list .single-blog .blog-img {
  margin-right: 30px;
  overflow: hidden;
}

.blog-page.blog-list .single-blog .blog-img img {
  width: 100%;
}

.blog-page.blog-list .single-blog .content {
  flex: 1;
}

.blog-page.blog-list .single-blog .content p {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-page.blog-list .single-blog .content .desc {
  padding-right: 45px;
}

.blog-page.blog-list .single-blog .content h4 {
  font-weight: 700;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  padding-top: 10px;
  padding-bottom: 10px;
}

.blog-page.blog-list .single-blog .content .button-style1 {
  line-height: 40px;
  padding: 0 20px;
  margin-top: 20px;
}

.blog-page.blog-list .single-blog .content a:hover p,
.blog-page.blog-list .single-blog .content a:hover h4 {
  color: var(--secondary-color);
}

.blog-page.blog-list .pages {
  padding-top: 50px;
}

/*===========================================================
 30: blog lifestyle page CSS
=============================================================*/
.blog-page.blog-lifestyle .blog-page.blog {
  padding-top: 0;
  padding-bottom: 0;
}

/*===========================================================
 31: blog fullpage page CSS
=============================================================*/
.blog-page.blog-fullpage .blog-page.blog {
  padding-top: 0;
  padding-bottom: 0;
}

/*===========================================================
 32: blog details page CSS
=============================================================*/
.blog-page.blog-detail {
  padding: 80px 0;
}

.blog-page.blog-detail .content .blog-img {
  position: relative;
}

.blog-page.blog-detail .content .blog-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.blog-page.blog-detail .content .blog-img .option {
  height: 55px;
  width: 55px;
  background: var(--primary-color);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9;
  text-align: center;
}

.blog-page.blog-detail .content .blog-img .option p {
  text-transform: capitalize;
  color: #fff;
  line-height: 20px;
  padding-top: 8px;
}

.blog-page.blog-detail .content .blog-img .option a {
  display: block;
  height: 100%;
  width: 100%;
}

.blog-page.blog-detail .content .blog-img .option a i {
  line-height: 55px;
  font-size: 30px;
  color: #fff;
}

.blog-page.blog-detail .content .blog-img .blog-date {
  height: 55px;
  background: #fff;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 9;
  padding: 0 10px;
}

.blog-page.blog-detail .content .blog-img .blog-date li {
  position: relative;
}

.blog-page.blog-detail .content .blog-img .blog-date li:not(:last-child) {
  padding-right: 40px;
}

.blog-page.blog-detail .content .blog-img .blog-date li:not(:last-child):after {
  content: "";
  height: 18px;
  width: 1px;
  background: #ddd;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 20px;
}

.blog-page.blog-detail .content .blog-img .blog-date li a {
  text-transform: capitalize;
  line-height: 55px;
  display: flex;
  align-items: center;
}

.blog-page.blog-detail .content .blog-img .blog-date li a i {
  color: var(--secondary-color);
  padding-right: 10px;
  font-size: 12px;
}

.blog-page.blog-detail .content .blog-img .blog-date li a:hover {
  color: var(--secondary-color);
}

.blog-page.blog-detail .content p {
  padding-top: 20px;
}

.blog-page.blog-detail .content .new {
  font-size: 18px;
}

.blog-page.blog-detail .content h4 {
  font-weight: 700;
  padding-top: 25px;
}

.blog-page.blog-detail .content .special {
  padding-top: 25px;
}

.blog-page.blog-detail .content .special img {
  margin-right: 30px;
}

.blog-page.blog-detail .content .special ul {
  flex: 1;
}

.blog-page.blog-detail .content .special ul li {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.blog-page.blog-detail .content .special ul li i {
  padding-right: 15px;
  font-size: 20px;
}

.blog-page.blog-detail .content .special ul li:not(:last-child) {
  padding-bottom: 10px;
}

.blog-page.blog-detail .content blockquote {
  background: #fff;
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.1);
  padding: 30px 35px;
  text-align: center;
  margin-top: 20px;
  position: relative;
}

.blog-page.blog-detail .content blockquote p {
  padding-top: 0;
  font-size: 18px;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.blog-page.blog-detail .content blockquote i {
  font-size: 90px;
  color: #fadbd3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 0;
}

.blog-page.blog-detail .content .share-blog {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px 30px;
  margin-top: 35px;
}

.blog-page.blog-detail .content .share-blog span {
  display: inline-block;
  font-size: 18px;
  color: var(--secondary-color);
  text-transform: capitalize;
  font-weight: 600;
}

.blog-page.blog-detail .content .share-blog .social li {
  padding: 0 7px;
}

.blog-page.blog-detail .content .share-blog .social li a i {
  color: var(--primary-color);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-page.blog-detail .content .share-blog .social li a:hover i {
  color: var(--secondary-color);
}

.blog-page.blog-detail .content .share-blog p {
  text-transform: capitalize;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-page.blog-detail .content .share-blog .right-part i {
  color: var(--primary-color);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-page.blog-detail .content .share-blog .right-part a p {
  padding-top: 0;
}

.blog-page.blog-detail .content .share-blog .right-part a i {
  padding-right: 10px;
}

.blog-page.blog-detail .content .share-blog .right-part a:hover p,
.blog-page.blog-detail .content .share-blog .right-part a:hover i {
  color: var(--secondary-color);
}

.blog-page.blog-detail .content .comment {
  padding-top: 30px;
}

.blog-page.blog-detail .content .comment .title h4 {
  text-transform: capitalize;
  font-weight: 700;
  padding-bottom: 16px;
  position: relative;
}

.blog-page.blog-detail .content .comment .title h4:after {
  content: "";
  height: 2px;
  width: 90px;
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.blog-page.blog-detail .content .comment .leave h4 {
  padding-top: 10px;
}

.blog-page.blog-detail .content .comment .all-comment li {
  position: relative;
  margin: 50px 0;
}

.blog-page.blog-detail .content .comment .all-comment li ul {
  margin-left: 70px;
}

.blog-page.blog-detail .content .comment .all-comment li ul li {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
}

.blog-page.blog-detail .content .comment .all-comment li ul li img {
  margin-top: 50px;
}

.blog-page.blog-detail .content .comment .all-comment li ul li .reply {
  top: 50px;
}

.blog-page.blog-detail .content .comment .all-comment li h4,
.blog-page.blog-detail .content .comment .all-comment li p {
  padding-top: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-page.blog-detail .content .comment .all-comment li img {
  position: absolute;
  top: 0;
  left: 0;
  height: 120px;
  width: 120px;
  border-radius: 50%;
}

.blog-page.blog-detail .content .comment .all-comment li .comment-body {
  padding-left: 155px;
}

.blog-page.blog-detail .content .comment .all-comment li .comment-body h4 {
  font-weight: 700;
  text-transform: capitalize;
}

.blog-page.blog-detail .content .comment .all-comment li .comment-body h4:hover {
  color: var(--secondary-color);
}

.blog-page.blog-detail .content .comment .all-comment li .comment-body .time {
  padding-bottom: 5px;
}

.blog-page.blog-detail .content .comment .all-comment li .comment-body .time:hover {
  color: var(--secondary-color);
}

.blog-page.blog-detail .content .comment .all-comment li .reply {
  position: absolute;
  top: 0;
  right: 0;
}

.blog-page.blog-detail .content .comment .all-comment li .reply i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.blog-page.blog-detail .content .comment .all-comment li .reply p {
  text-transform: capitalize;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-page.blog-detail .content .comment .all-comment li .reply:hover p {
  color: var(--secondary-color);
}

.blog-page.blog-detail .content .comment form {
  margin-top: 50px;
  margin-bottom: 0;
}

.blog-page.blog-detail .content .comment .input-field {
  width: 100%;
  height: 50px;
  background: #fff6f4;
  padding: 0 20px;
  outline: none;
  border: 0;
  margin-bottom: 30px;
}

.blog-page.blog-detail .content .comment .input-field::placeholder {
  text-transform: capitalize;
}

.blog-page.blog-detail .content .comment textarea.input-field {
  height: 215px;
  padding: 20px;
}

.blog-page.blog-detail .content .comment button {
  line-height: 50px;
  padding: 0 35px;
}

.single-blog .blog-img img {
  width: 100%;
  height: 300px;
}

.single-blog .content a {
  color: #444444;
}

.single-blog .content a:hover {
  text-decoration: none;
}

.content p.desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 33px;
  height: 105px;
}

/*===========================================================
 18: pagination
=============================================================*/
.pages ul li {
  padding: 0 5px;
}

.pages ul li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 500;
}

.pages ul li a:hover,
.pages ul li a.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  text-decoration: none;
}

.pages ul li a i {
  font-size: 14px;
}

/*===========================================================
 27: blog left sidebar CSS
=============================================================*/
.blog-page.right-sidebar,
.blog-page.left-sidebar {
  padding-top: 80px;
}

/*===========================================================
 14.3: inner page sidebar CSS
=============================================================*/
.inner-page.sidebar .title {
  padding-bottom: 20px;
}

.inner-page.sidebar .title h4 {
  font-weight: 700;
  text-transform: capitalize;
}

.inner-page.sidebar .section {
  margin-bottom: 40px;
  background: #fff;
}

.inner-page.sidebar .section:last-child {
  margin-bottom: 0;
}

.inner-page.sidebar .search form {
  position: relative;
}

.inner-page.sidebar .search form .inputs {
  height: 40px;
  width: 100%;
  border: 1px solid #ddd;
  outline: none;
  padding: 0 30px 0 15px;
}

.inner-page.sidebar .search form .inputs::placeholder {
  text-transform: capitalize;
  line-height: normal;
}

.inner-page.sidebar .search form button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 10px;
  z-index: 9;
}

.inner-page.sidebar .search form button i {
  color: var(--primary-color);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.inner-page.sidebar .search form button:hover i {
  color: var(--secondary-color);
}

.inner-page.sidebar .price-filter-range .price-range {
  margin-top: 15px;
}

.inner-page.sidebar .price-filter-range input,
.inner-page.sidebar .price-filter-range p {
  width: auto;
  height: auto;
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
  color: #606060;
  text-transform: capitalize;
  outline: none;
}

.inner-page.sidebar .price-filter-range .ui-slider-handle {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: none;
  cursor: pointer;
  outline: none;
}

.inner-page.sidebar .price-filter-range .ui-widget.ui-widget-content {
  border: none;
  height: 3px;
  background-color: #ddd;
  position: relative;
  margin-left: 10px;
}

.inner-page.sidebar .price-filter-range .ui-slider-horizontal .ui-slider-range {
  background: var(--secondary-color);
}

.inner-page.sidebar .price-filter-range button {
  font-size: 16px;
  text-transform: capitalize;
  background: var(--primary-color);
  padding: 0 18px;
  line-height: 30px;
  color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  float: right;
}

.inner-page.sidebar .price-filter-range button:hover {
  background: var(--secondary-color);
}

.inner-page.sidebar .category ul li {
  padding-top: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #606060;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.inner-page.sidebar .category ul li p {
  text-transform: capitalize;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.inner-page.sidebar .category ul li p:last-child {
  height: 30px;
  width: 40px;
  background: var(--primary-color);
  color: #fff;
  line-height: 30px;
  text-align: center;
}

.inner-page.sidebar .category ul li:last-child {
  border: 0;
}

.inner-page.sidebar .category ul li:first-child {
  padding-top: 0;
}

.inner-page.sidebar .category ul li.active,
.inner-page.sidebar .category ul li:hover {
  border-color: var(--secondary-color);
}

.inner-page.sidebar .category ul li.active p,
.inner-page.sidebar .category ul li:hover p {
  color: var(--secondary-color);
}

.inner-page.sidebar .category ul li.active p:last-child,
.inner-page.sidebar .category ul li:hover p:last-child {
  color: #fff;
  background: var(--secondary-color);
}

.inner-page.sidebar .small-item .item {
  margin-bottom: 20px;
}

.inner-page.sidebar .small-item .item .image {
  margin-right: 15px;
}

.inner-page.sidebar .small-item .item .item-body {
  flex: 1;
}

.inner-page.sidebar .small-item .item h5 {
  font-weight: 600;
  line-height: 26px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.inner-page.sidebar .small-item .item h5:hover {
  color: var(--secondary-color);
}

.inner-page.sidebar .small-item .item p span {
  text-decoration: line-through;
}

.inner-page.sidebar .small-item .item:last-child {
  margin-bottom: 0;
}

.inner-page.sidebar .tags .title {
  padding-bottom: 10px;
}

.inner-page.sidebar .tags .all-tag a {
  display: inline-block;
  line-height: 35px;
  padding: 0 10px;
  border: 1px solid #ddd;
  margin-right: 10px;
  margin-top: 10px;
  text-transform: capitalize;
}

.inner-page.sidebar .tags .all-tag a:hover {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.inner-page.sidebar .newsletter form {
  text-align: center;
}

.inner-page.sidebar .newsletter .inputs {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  padding: 0 15px;
  outline: none;
}

.inner-page.sidebar .newsletter .inputs::placeholder {
  text-transform: capitalize;
}

.inner-page.sidebar .newsletter button {
  line-height: 40px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  background: var(--primary-color);
  width: 100%;
  margin: 20px 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.inner-page.sidebar .newsletter button:hover {
  background: var(--secondary-color);
}

.inner-page.sidebar .search form button {
  border: none;
  background: none;
}

.inner-page.sidebar .tags .all-tag a {
  color: var(--primary-color);
}

.inner-page.sidebar .tags .all-tag a:hover {
  text-decoration: none;
}

.blog-page.blog-detail .content .blog-img .blog-date li a {
  color: var(--primary-color);
  font-size: 12px;
}

.blog-page.blog-detail .content .blog-img .blog-date li a:hover {
  text-decoration: none;
}

.inner-page.sidebar .title h4 {
  color: var(--primary-color);
  position: relative;
}

.blog-content .blog-heading {
  font-size: 24px;
  line-height: 36px;
  color: var(--primary-color);
}

.inner-page.sidebar .title h4:after {
  content: "";
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  top: 35px;
  left: 0;
}

.blog-content {
  padding: 10px;
  box-shadow: 0 5px 10px 0 rgba(128, 91, 91, 0.1);
}

.btn-2 {
  background-color: var(--primary-color);
  border: 1px solid var(--white-color);
  color: var(--white-color);
  text-align: center;
  padding: 5px 16px;
  transition: all 0.5s;
  cursor: pointer;
}

.btn-2 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-size: 14px;
  color: var(--white-color);
}

.btn-2:hover span {
  padding-right: 15px;
}

.btn-2 span:after {
  content: "\276F";
  position: absolute;
  opacity: 0;
  top: 0;
  transition: 0.5s;
}

.btn-2:hover span:after {
  opacity: 1;
  right: 0;
}

.blog-page.blog-detail .content .blog-img .blog-date {
  list-style: none;
}

/*BLOGS ENDS*/
/* SIDEBAR STARTS */
.search-form {
  padding: 20px 20px 10px;
  margin-top: 10px;
  background: var(--white-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}

#search-2 form label {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  border: 1px solid #ccc;
}

#search-2 form input[type="search"] {
  padding-left: 10px;
  border: none;
  flex-grow: 1;
}

#search-2 form input[type="search"]:focus {
  outline: none;
}

.search-form label a {
  background: var(--white-color);
}

/*Latest Blogs*/
#latest-blogs-section,
#archives,
#tag_cloud {
  background: var(--white-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.widget_recent_entries {
  padding: 20px 20px 10px 20px;
  margin-bottom: 10px;
}

.widget-archive,
.widget-tags {
  padding: 20px;
}

.widget h5 {
  display: block;
  margin-bottom: 30px;
  position: relative;
  font-weight: bold;
  color: var(--primary-color);
  box-shadow: none;
}

.post-image img {
  height: 80px;
  width: 100%;
}

.post-title h6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow-y: hidden;
  font-size: 18px;
  font-weight: bold;
}

.post-title h6 a {
  color: var(--primary-color);
  font-size: 14px;
}

.post-title h6 a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.posts a {
  color: var(--primary-color);
}

.posts a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.posted-on span i {
  color: var(--primary-color);
}

.widget-archive ul li a {
  color: var(--primary-color);
}

.widget-archive ul li a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.widget-tags ul li {
  display: inline;
}

.widget-tags ul li a {
  background: var(--primary-color);
  padding: 4px 8px;
  font-size: 12px;
  color: var(--white-color);
  border: 1px solid var(--primary-color);
}

.widget-tags ul li a:hover {
  text-decoration: none;
  background: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.widget-tags {
  margin-bottom: 20px;
}

.posted-date a {
  font-size: 13px;
  margin-top: -7px;
}

@media (max-width: 1025px) {
  .post-image img {
    height: 70px;
    width: 100%;
  }
}

@media (max-width: 769px) {
  #main {
    margin-bottom: 20px;
  }

  .search-form {
    margin-top: 0;
  }

  .post-image img {
    height: 125px;
    object-fit: cover;
    width: 100%;
  }

  .post-title h6 {
    -webkit-line-clamp: 3;
    font-size: 18px;
  }
}

@media (max-width: 426px) {
  .post-image img {
    height: 100px;
    width: 100%;
  }

  .post-title h6 {
    font-size: 16px;
  }

  .posted-on span i {
    padding: 0;
  }
}

@media (max-width: 376px) {
  .post-image img {
    height: 80px;
    width: 100%;
  }

  .post-title h6 {
    font-size: 14px;
  }
}

@media (max-width: 321px) {
  .post-image img {
    height: 65px;
    width: 100%;
  }

  .post-title h6 {
    -webkit-line-clamp: 2;
  }
}

/* SIDEBAR ENDS */
/* CAREER STARTS */

.bg-gray-200-custom {
  background-color: #e5e7eb;
}

.text-gray-600-custom {
  color: #4b5563;
}

.text-gray-900-custom {
  color: #111827;
}

.leading-relaxed-custom {
  line-height: 1.625;
}

.fw-semibold {
  font-weight: bold;
}

.font-size-25 {
  font-size: 25px;
}

/* CAREER ENDS */
/* Base state: Normal navbar within the header */
.header-b {
  width: 100%;
  z-index: 1030;
  background-color: #fff;
  /* Transition for transform (hiding) and box-shadow */
  transition: transform 0.3s ease-in-out;
}

/* This class is added via jQuery when you scroll down */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* This class is added via jQuery to hide the fixed navbar */
.nav-up {
  transform: translateY(-100%);
}

@media (min-width: 1200px) {

  /* 1. Reset Bootstrap's default behavior */
  .dropdown-menu {
    display: block !important;
    /* Keep it in the DOM */
    max-height: 0;
    /* Start with no height */
    overflow: hidden;
    /* Hide the content inside */
    opacity: 0;
    /* Fade it out */
    visibility: hidden;

    /* 2. The Roll Animation */
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.4s ease-in-out;

    /* Styling adjustments */
    margin-top: 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 3. The Hover State - Expanding the Roll */
  .nav-item.dropdown:hover>.dropdown-menu {
    max-height: 500px;
    /* Give it enough room to unfold */
    opacity: 1;
    visibility: visible;
  }
}

/* Optional: Smooth transition for the text links inside */
.dropdown-item {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.nav-item.dropdown:hover .dropdown-item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
  /* Wait for the roll to start before showing text */
}

/* Rotate the arrow on hover */
.nav-item.dropdown .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.text-decoration-none-here {
  text-decoration: none !important;
}

.job-box:hover .job-title {
  color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.job-title-details h1 {
  font-size: 30px;
  color: black;
  font-weight: bold;
}

.job-specification-container {
  max-width: 800px;
  padding: 20px;
}

/* Custom spacing for the key-value pairs */
.spec-row {
  display: flex;
  margin-bottom: 8px;
  line-height: 1.6;
}

.spec-label {
  width: 180px;
  /* Fixed width for labels to align colons */
  font-weight: 500;
}

.spec-separator {
  width: 20px;
  text-align: center;
}

.spec-value {
  flex: 1;
  color: #212529;
}

/* Description Styling */
.job-title-header {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d3436;
}

.section-title {
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.responsibilities-list {
  padding-left: 20px;
}

.responsibilities-list li {
  margin-bottom: 8px;
}

.related-jobs-container {
  max-width: 450px;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 20px;
}

/* Anchor wrapper styling */
.job-link {
  text-decoration: none !important;
  display: block;
  margin-bottom: 12px;
}

.job-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  transition: box-shadow 0.2s ease-in-out;
}

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

.company-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border: 1px solid #f0f0f0;
  padding: 5px;
  margin-right: 15px;
  flex-shrink: 0;
}

.job-info {
  flex-grow: 1;
}

.job-role {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
  line-height: 1.2;
}

.company-name {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 6px;
}

.expiry-time {
  font-size: 0.85rem;
  color: #3498db;
  /* The light blue color from the image */
  display: flex;
  align-items: center;
  gap: 6px;
}

.expiry-time i {
  font-size: 0.9rem;
}

/* Subtle vertical bar before the icon if needed */
.expiry-container {
  border-left: 2px solid #eee;
  padding-left: 10px;
  margin-top: 5px;
}

/* --- New Apply Section Styles --- */
.apply-section {
  background-color: #f8f9fa;
  border: 1px dashed #ced4da;
  border-radius: 8px;
  padding: 25px;
  margin-top: 40px;
}

.apply-text {
  font-size: 1.05rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.email-link {
  color: #28a745;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: #218838;
  border-bottom: 2px solid #218838;
}

/* ------------------------------- */

.responsibilities-list {
  padding-left: 20px;
  color: #6c757d;
}


.servcies-section-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.services-box {
  background-color: #fff;
  color: var(--black-color);
  width: 250px;
  height: 213.19px;
  padding: 30px 20px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
  border: 2px solid orange;
  margin-top: 20px;
}

.services-box:hover {
  /* background-color: var(--primary-color); */
  /* color: var(--white-color); */
  margin-top: 0;
}

.services-box h3,
.services-box p {
  margin: 0px;
  text-align: center;
}

.services-box h3{
  font-size: 20px;
}

.services-box i {
  background-color: orange;
  color: var(--white-color);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}


/* --- RESPONSIVE ADJUSTMENTS (425px or lower) --- */
@media (max-width: 425px) {

  /* 1. Job Specification Table */
  .spec-row {
    flex-direction: column;
    /* Stacks label above value */
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f0f0f0;
    /* Optional: adds separation */
  }

  .spec-label {
    width: 100%;
    /* Reset from 180px */
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 2px;
  }

  .spec-separator {
    display: none;
    /* Hiding the colon looks cleaner on mobile */
  }

  .spec-value {
    font-size: 0.95rem;
    font-weight: 600;
    /* Makes the actual info pop */
  }

  /* 2. Containers & Spacing */
  .job-specification-container,
  .related-jobs-container {
    max-width: 100%;
    /* Ensure they take full screen width */
    padding: 15px;
  }

  /* 3. Typography Scaling */
  .job-title-header {
    font-size: 1.15rem;
    /* Slightly smaller title */
    margin-bottom: 10px;
  }

  .section-title {
    font-size: 1rem;
    margin-top: 20px;
  }

  .desc-side p,
  .responsibilities-list li {
    font-size: 0.9rem;
    /* Smaller body text for small screens */
    line-height: 1.5;
  }

  .responsibilities-list {
    padding-left: 15px;
    /* Tighter list indentation */
  }

  .job-card {
    padding: 20px;
    /* Reduce large padding */
    margin: 15px;
    /* Reduce outer margin */
  }

  .section-title {
    font-size: 1.1rem;
    /* Smaller headers */
  }

  /* Main description and list text */
  .desc-side p,
  .desc-side ul li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .apply-section {
    padding: 15px;
    /* Compact apply box */
  }

  .apply-text {
    font-size: 0.85rem;
    flex-direction: column;
    /* Stack icon and text if narrow */
    align-items: flex-start;
  }

  .email-link {
    word-break: break-all;
    /* Prevents long emails from breaking layout */
  }
}

