/* Base responsive styles */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Mobile Top Bar */
.mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #1f2a44;
  color: #fff;
  z-index: 100000;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: space-between;
}

.mobile-topbar .mtb-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mobile-topbar img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  object-fit: contain;
}

.mobile-topbar .mtb-title {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-topbar .mtb-call {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

@media (max-width: 768px) {
  .mobile-topbar {
    display: flex;
  }
  .top-bar-header {
    display: none;
  }
  .header-area {
    display: none;
  }
  .hero-area {
    margin-top: 56px;
  }
}

.container {
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

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

  .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

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

  .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Hero video responsive */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-area {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-area {
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 24px !important;
    line-height: 1.3;
  }

  .hero-content h3 {
    font-size: 16px;
    line-height: 1.4;
  }
}

/*==========================
<--start-top-bar-Area-->
===========================*/
.top-bar-header {
  background: #1f2a44;
  padding: 8px 0;
}

@media (max-width: 991px) {
  .top-bar-header {
    padding: 5px 0;
  }

  .top-infor ul li {
    font-size: 12px;
    margin-right: 8px;
  }

  .top-bar-social-icon ul li {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .top-bar-social-icon {
    text-align: left;
    margin-top: 10px;
  }

  .top-infor ul li {
    display: block;
    margin-bottom: 5px;
  }
}

.top-infor {
  list-style: none;
}

.top-infor ul li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  margin-right: 12px;
}

.top-infor ul li i {
  display: inline-block;
  color: #ffff;
  margin-right: 7px;
  font-size: 15px;
}

.top-bar-social-icon {
  text-align: right;
}

.top-bar-social-icon ul {
  list-style: none;
}

.top-bar-social-icon ul li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}

.top-bar-social-icon ul li.info {
  margin-right: 22px;
}

.top-bar-social-icon ul li i {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  margin-right: 8px;
}

/*==========================
<--start-header-Area-->
===========================*/

.header-menu {
  text-align: right;
}
.header-menu ul {
  list-style: none;
  display: inline-block;
}

.header-menu ul li {
  display: inline-block;
}

.header-menu ul li a {
  display: inline-block;
  font-size: 16px;
  margin-right: 24px;
  padding: 35px 0;
  font-weight: 500;
  color: #222;
}

.header-menu ul li a:hover {
  color: #1f2a44;
}

.header-menu ul li a i {
  display: inline-block;
  font-size: 15px;
  margin-left: 5px;
  transition: 0.5s;
}
.header-menu ul li a:hover i {
  color: #1f2a44;
}

.header-search-button {
  display: inline-block;
}

/***
====================================================================
    Search Popup
====================================================================
***/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.search-popup {
  width: 100%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50%;
  text-align: center;
  background-color: #1f2a44;
  width: 70px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid #fff;
  border-top: 3px solid #fff;
  border-right: 3px solid #222;
  border-left: 3px solid #222;
  -webkit-transition: all 500ms ease;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: #111111;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.search-popup .form-group {
  position: relative;
  margin: 0px;

  overflow: hidden;
}
.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  right: 30px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: #1f2a44;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  border: none;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
  color: #000000;
}

.search-popup .close-search.style-two {
  position: absolute;
  right: 25px;
  left: auto;
  color: #ffffff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  background: none !important;
  box-shadow: none !important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-box-btn {
  display: inline-block;
  padding-left: 22px;
}

.search-box-btn i {
  display: inline-block;
  color: #fff;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.5s;
}

.upp.search-box-btn i {
  color: #9e9fa1;
}

.search-box-btn.search-box-outer span i {
  font-size: 20px;
  display: inline-block;
  color: #fff;
  padding-left: 17px;
  position: relative;
  z-index: 1;
}

.upp.search-box-btn.search-box-outer span i {
  color: #9e9fa1;
}

.search-box-btn.search-box-outer span i:after {
  position: absolute;
  content: "0";
  right: -10px;
  top: -4px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background: #ed1c24;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  font-size: 12px;
}

.flaticon-multiply:before {
  content: inherit;
}

button.close-search i {
  font-size: 25px;
  color: #fff;
  display: inline-block;
}

span.flaticon-multiply i {
  display: inline-block;
  color: #1f2a44;
}

.header-search-button.search-box-outer {
  padding: 0px 8px 0 0;
  display: inline-block;
}

/*--header-button--*/
.header-button {
  display: inline-block;
}

.header-button a {
  display: inline-block;
  background: #1f2a44;
  color: #fff;
  padding: 12px 23px;
  margin-left: 24px;
  position: relative;
  z-index: 1;
  border: 1px solid #1f2a44;
}
.header-button a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
  transform: scaleX(0);
}

.header-button a:hover:before {
  transform: scaleX(100%);
}
.header-button a:hover {
  color: #1f2a44;
}

/*sub-menu*/
.header-menu ul li.menu-item-has-children {
  position: relative;
}
.header-menu ul li .sub-menu {
  position: absolute;
  display: block;
  width: 200px;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  top: 150%;
  transition: 0.5s;
}

.header-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.header-menu ul li .sub-menu li {
  border: 1px solid #1f2a44;
  background: #fff;
  transition: 0.5s;
}

.header-menu ul li .sub-menu li:hover {
  border: 1px solid #fff;
  background: #1f2a44;
}

.header-menu ul li .sub-menu li a {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 0;
  width: 200px;
}

.header-menu ul li .sub-menu li a:hover {
  color: #fff;
}

.header-menu ul li .sub-menu li a img {
  margin-right: 10px;
}
/*header-sitcky*/
.sticky {
  left: 0;
  margin: auto;
  position: fixed !important;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  background: #fff !important;
  transition: 0.5s;
  z-index: 99999;
  animation: slideInDown 500ms ease;
}

/*==========================
<--start-hero-area-->
===========================*/

.hero-area {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hero-area .container {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: 70px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content h3 {
  font-size: 30px;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-content p {
  color: #fff;
  width: 75%;
  margin: auto;
  padding: 25px 0 33px;
}

.hero-button a {
  display: inline-block;
  color: #545454;
  background: #fff;
  padding: 12px 32px;
  margin-left: 24px;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
}
.hero-button a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #1f2a44;
  z-index: -1;
  transition: 0.5s;
  transform: scaleX(0);
}

.hero-button a:hover:before {
  transform: scaleX(100%);
}
.hero-button a:hover {
  color: #fff;
}

a.button-bg-none {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
}
a.button-bg-none:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
  transform: scaleX(0);
}

a.button-bg-none:hover:before {
  transform: scaleX(100%);
}
a.button-bg-none:hover {
  color: #1f2a44 !important;
}

/*==========================
<--start-about-area-->
===========================*/

.about-area {
  padding: 80px 0;
}

.about-thumb {
  position: relative;
  margin-bottom: 30px;
  overflow: visible;
}

/* Specific styling for the Who We Are section image */
.about-area .about-thumb img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-width: 400px;
  min-height: 267px;
  object-fit: cover;
  border-radius: 8px;
}

/* Override responsive constraints for the Who We Are image */
@media (min-width: 1366px) and (max-width: 1600px) {
  .about-area .about-thumb img {
    width: 100% !important;
  }
}

@media (min-width: 1200px) and (max-width: 1365px) {
  .about-area .about-thumb img {
    width: 100% !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-area .about-thumb {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .about-area .about-thumb img {
    width: 100% !important;
  }
}

@media (max-width: 991px) {
  .about-area {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .about-area {
    padding: 40px 0;
  }

  .about-area .row {
    margin-bottom: 0;
  }

  .about-area .col-lg-6 {
    margin-bottom: 30px;
  }

  .about-area .col-lg-6:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .about-area {
    padding: 30px 0;
  }

  .about-area .col-lg-6 {
    margin-bottom: 20px;
  }
}

.vedio {
  position: absolute;
  right: 21%;
  bottom: 34%;
}

.vedio a {
  width: 70px;
  height: 70px;
  line-height: 75px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  position: relative;
  color: #0c5adb;
  -webkit-animation: ripple-white 1s linear infinite;
  animation: ripple-blue 1s linear infinite;
  -webkit-transition: 0.5s;
  background: #ffff;
  font-size: 28px;
  z-index: 44;
}

@-webkit-keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(86, 74, 198, 0.3),
      0 0 0 10px rgba(86, 74, 198, 0.3), 0 0 0 20px rgba(86, 74, 198, 0.3);
    box-shadow: 0 0 0 0 rgba(86, 74, 198, 0.3),
      0 0 0 10px rgba(86, 74, 198, 0.3), 0 0 0 20px rgba(86, 74, 198, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(86, 74, 198, 0.3),
      0 0 0 20px rgba(86, 74, 198, 0.3), 0 0 0 30px rgba(86, 74, 198, 0);
    box-shadow: 0 0 0 10px rgba(86, 74, 198, 0.3),
      0 0 0 20px rgba(86, 74, 198, 0.3), 0 0 0 30px rgba(86, 74, 198, 0);
  }
}

@keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(86, 74, 198, 0.3),
      0 0 0 10px rgba(86, 74, 198, 0.3), 0 0 0 20px rgba(86, 74, 198, 0.3);
    box-shadow: 0 0 0 0 rgba(86, 74, 198, 0.3),
      0 0 0 10px rgba(86, 74, 198, 0.3), 0 0 0 20px rgba(86, 74, 198, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(86, 74, 198, 0.3),
      0 0 0 20px rgba(86, 74, 198, 0.3), 0 0 0 30px rgba(86, 74, 198, 0);
    box-shadow: 0 0 0 10px rgba(86, 74, 198, 0.3),
      0 0 0 20px rgba(86, 74, 198, 0.3), 0 0 0 30px rgba(86, 74, 198, 0);
  }
}

.vedio i {
  display: inline-block;
  font-size: 35px;
  color: #222;
}

.about-list-item ul {
  list-style: none;
}

.about-list-item ul li {
  margin-bottom: 10px;
  color: #232323;
  font-size: 16px;
}

.about-list-item ul li i {
  display: inline-block;
  background: #564cc7;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  font-size: 19px;
  border-radius: 50px;
  margin-right: 14px;
}

.section-button a {
  display: inline-block;
  background: #1f2a44;
  color: #ffff;
  padding: 12px 30px;
  margin-top: 27px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  border: 1px solid #1f2a44;
}
.section-button a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
  transform: scaleX(0);
}

.section-button a:hover:before {
  transform: scaleX(100%);
}
.section-button a:hover {
  color: #1f2a44;
}

/*--section-title--*/
.section-title {
  margin-bottom: 25px;
}

.section-title h4 {
  font-size: 16px;
  color: #1f2a44;
  margin-bottom: 23px;
}

.section-title h1 {
  font-size: 36px;
  line-height: 40px;
}

.section-title p {
  margin-top: 14px;
}

.section-title p.description {
  width: 76%;
}

.section-title p.text {
  width: 60%;
  margin: auto;
  margin-top: 8px;
  margin-bottom: 43px;
}

@media (max-width: 768px) {
  /* Consistent section title styling */
  .section-title,
  .section-title h1,
  .section-title h4,
  .section-title p.description,
  .section-title p.text,
  .about-content,
  .about-content .section-title,
  .faeture-content-tow,
  .faeture-content-tow .section-title,
  .section-title12,
  .section-title12 h1,
  .section-title12 p {
    text-align: left !important;
    margin-left: 0;
    margin-right: 0;
    width: 100% !important;
  }

  /* Consistent spacing */
  .section-title,
  .section-title12 {
    margin-bottom: 20px;
  }

  .section-title h1,
  .section-title12 h1 {
    margin-bottom: 15px;
  }

  /* Consistent text sizing */
  .section-title h1,
  .section-title12 h1 {
    font-size: 28px !important;
    line-height: 1.3;
  }

  .section-title p.description,
  .section-title p.text,
  .section-title12 p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/*==========================
 <--start-blog-area-->
===========================*/

.blog-area {
  padding: 120px 0 118px;
  background: #f6f7f9;
}

.blog-area.blog-grid {
  padding: 120px 0 107px;
}

.blog-area.blog-grid .single-blog-box {
  margin-bottom: 22px;
}

.blog-area.blog-list {
  padding: 120px 0 100px;
}

.blog-area.blog-list .single-blog-box {
  margin-bottom: 28px;
}
.blog-area.blog-list .blog-content {
  text-align: left;
}
.blog-area.blog-list .blog-content p {
  width: 60%;
}

.blog-area.blog-tow-column {
  padding: 120px 0 98px;
}

.blog-area.blog-tow-column .single-blog-box {
  margin-bottom: 28px;
}

.blog-thumb {
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  transition: 0.5s;
}

.single-blog-box:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-content {
  background: #fff;
  text-align: center;
  padding: 16px 56px 30px;
}

.blog-content h4 a {
  font-size: 22px;
  display: inline-block;
  color: #222;
  font-weight: 700;
}

.single-blog-box:hover .blog-content h4 a {
  color: #1f2a44;
}

.blog-content p {
  font-size: 14px;
  line-height: 27px;
  padding: 17px 0 25px;
}

a.blog-button {
  transition: 0.5s;
}

a.blog-button:hover {
  color: #1f2a44;
  font-weight: 500;
}

/*==========================
 <--start-faeture-area-->
===========================*/
.faeture-area {
  padding: 118px 0 128px;
}

.faeture-area.add-inner-bg {
  background: #f6f7f8;
}

.faeture-list-item ul {
  list-style: none;
}

.faeture-list-item ul li {
  margin-bottom: 10px;
}

.faeture-list-item ul li i {
  display: inline-block;
  background: #1f2a44;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  font-size: 19px;
  border-radius: 50px;
  margin-right: 14px;
}

.faeture-box {
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 42px 54px 33px;
  position: relative;
  z-index: 1;
  margin-bottom: -11px;
}

.faeture-box.box-grid {
  margin-top: 35px;
}

.faeture-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: #1f2a44;
  z-index: -1;
  transition: 0.5s;
  transform: scaleX(0);
}

.faeture-box:hover:before {
  height: 100%;
  transform: scaleX(100%);
}

.faeture-box h4 {
  font-size: 22px;
  margin-top: 26px;
  margin-bottom: 17px;
  transition: 0.5s;
}

.faeture-box:hover .faeture-box-content h4 {
  color: #fff;
}

.faeture-box-content p {
  transition: 0.5s;
}

.faeture-box:hover .faeture-box-content p {
  color: #fff;
}

.faeture-dotted-item ul {
  list-style: none;
}

.faeture-dotted-item ul li {
  background: #c8c2c2;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  display: inline-block;
  margin-right: 2px;
  margin-top: 33px;
}

/*==========================
 <--start-brand-area-->
===========================*/
.brand-area {
  background: #564ac6;
  padding: 100px 0 88px;
}

.brand-box {
  text-align: center;
}

.owl-carousel .owl-item img {
  display: inline-block !important;
}

/*==========================
 <--start-about-area-tow-->
===========================*/
.about-area-tow {
  padding: 108px 0 173px;
}

.about-area-tow.add-bg {
  background: #f6f7f8;
}

.about-tow-left {
  position: relative;
}

.about-thumb-tow {
  text-align: right;
  margin-right: 108px;
}

.counter-box {
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  padding: 29px 29px 24px;
  display: inline-block;
  text-align: center;
  right: 45px;
  position: absolute;
  bottom: -61px;
  background: #ffff;
}

.counter-content h2 {
  font-size: 36px;
  display: inline-block;
}

.counter-content span {
  display: inline-block;
  font-size: 36px;
  font-weight: 600;
  color: #222;
}

.about-list-item-tow ul {
  list-style: none;
}

.about-list-item-tow ul li {
  color: #3e3e3e;
  font-weight: 500;
  margin-bottom: 9px;
}

.about-list-item-tow ul li i {
  border: 1px solid #564ac6;
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 18px;
  color: #564ac6;
  margin-right: 11px;
}

.skill-bar {
  display: flex;
}

.skill-box {
  display: flex;
  margin-right: -35px;
}

.skill-box p {
  font-weight: 600;
  margin-top: 15px;
  color: #222;
  margin-left: 12px;
  width: 67%;
}

/*==========================
 <--start-services-area -->
===========================*/
.services-area {
  padding: 107px 0 100px;
  background: #f2f3f4;
}

.service-box {
  background: #fff;
  text-align: center;
  padding: 42px 32px 34px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: #564ac6;
  z-index: -1;
  transition: 0.5s;
  transform: scaleX(0);
}

.service-box:hover:before {
  height: 100%;
  transform: scaleX(100%);
}

.service-icon img {
  transition: 0.5s;
}

.service-box:hover .service-icon img {
  filter: brightness(0) invert(1);
}

.service-content h4 {
  font-size: 22px;
  margin: 32px 0 20px;
  transition: 0.5s;
}

.service-box:hover .service-content h4 {
  color: #fff;
}

.service-list-item ul li {
  margin-bottom: 10px;
  color: #232323;
  font-size: 16px;
}

.service-content p {
  transition: 0.5s;
}

.service-box:hover .service-content p {
  color: #fff;
}

a.service-button {
  color: #232323;
  font-weight: 500;
  margin-top: 17px;
  display: inline-block;
}

.service-box:hover a.service-button {
  color: #fff;
}

/*==========================
 <--start-subscribe-area -->
===========================*/
.subscribe-area {
  padding: 104px 0 120px;
  background: url(assets/images/subscribe-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.subscribe-area .section-title h1 {
  color: #fff;
}

.subscribe-area .section-title p.text {
  width: 50%;
  color: #fff;
  margin-bottom: 22px;
}

.subscribe-form input {
  width: 44%;
  height: 65px;
  outline: 0;
  border: transparent;
  padding-left: 20px;
  position: relative;
  background: #fff;
}

.subscribe-form button {
  border: transparent;
  background: #564ac6;
  color: #fff;
  padding: 11px 31px;
  right: 35.4%;
  position: absolute;
  margin-top: 7px;
}

/*==========================
 <--start-testimonial-area -->
===========================*/

.testimonial-area {
  padding: 107px 0 111px;
}

.testimonial-area .section-title {
  margin-bottom: 30px;
}

.testimonial-box {
  margin-right: 18px;
  margin-top: 20px;
  position: relative;
}

.testi-desc p {
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  padding: 32px 50px 73px;
  text-align: justify;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}

.testimonial-box:hover .testi-desc p {
  color: #fff;
}

.testi-desc p:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: #564ac6;
  z-index: -1;
  transition: 0.5s;
  transform: scaleX(0);
}

.testimonial-box:hover .testi-desc p:before {
  height: 100%;
  transform: scaleX(100%);
}

.testi-content {
  margin-left: 35px;
  margin-top: -38px;
  position: relative;
}

.testi-thumb {
  margin-bottom: 28px;
  z-index: 9999;
  position: relative;
}
.testi-content h4 {
  font-size: 18px;
}

.testi-content p {
  font-size: 12px;
}

/*====================================
 <--start-contact-information-area -->
=====================================*/

.contact-information-area {
  padding: 118px 0 118px;
  background: #f2f3f4;
}

.contact-information-box {
  text-align: center;
  background: #fff;
  padding: 21px 0 35px;
  z-index: 1;
  position: relative;
}

.contact-information-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: #564ac6;
  z-index: -1;
  transition: 0.5s;
  transform: scaleX(0);
}

.contact-information-box:hover:before {
  height: 100%;
  transform: scaleX(100%);
}

.info-icon img {
  transition: 0.5s;
}

.contact-information-box:hover .info-icon img {
  filter: brightness(0) invert(1);
}

.contact-information-content h4 {
  font-size: 22px;
  margin: 2px 0 10px;
  transition: 0.5s;
}
.contact-information-box:hover .contact-information-content span,
.contact-information-box:hover .contact-information-content p,
.contact-information-box:hover .contact-information-content h4 {
  color: #fff;
}

.contact-information-content p {
  transition: 0.5s;
}
.contact-information-content span {
  transition: 0.5s;
}

/*====================================
 <--start-google-map-area -->
=====================================*/
.google-map iframe {
  width: 100%;
  height: 600px;
}

/*====================================
 <--start-footer-area -->
=====================================*/
.footer-area {
  background-color: #1f2a44;
  padding: 80px 0 30px;
  color: #fff;
}

.footer-logo {
  margin-bottom: 30px;
  text-align: left;
}

/* Desktop logo */
.footer-logo img {
  max-width: 200px;
  height: auto;
}

/* Logo styles */
.footer-circle-logo {
  max-width: 200px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .footer-logo {
    text-align: center;
    margin-bottom: 25px;
  }

  .footer-circle-logo {
    max-width: 120px;
    margin: 0 auto;
    filter: brightness(0) invert(1); /* Makes the logo white */
  }
}

@media (max-width: 576px) {
  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-circle-logo {
    max-width: 100px;
  }
}

.footer-widget-text p {
  color: #fff;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.footer-widget-content {
  padding-right: 30px;
}

.footer-widget-title {
  margin-bottom: 25px;
}

.footer-widget-title h4 {
  color: #fff;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

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

.footer-menu ul li {
  margin-bottom: 12px;
}

.footer-menu ul li a {
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}

.footer-menu ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 5px;
}

.footer-widget-infor {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.infor-icon {
  margin-right: 15px;
  width: 20px;
  display: flex;
  align-items: center;
}

.infor-icon img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.footer-widget-infor-content h6 {
  font-size: 15px;
  color: #fff;
  margin: 0 0 5px;
  font-weight: 600;
}

.footer-widget-infor-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 14px;
}

.copyright-area {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright-area span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.copyright-area i {
  margin-right: 8px;
}

@media (max-width: 991px) {
  .footer-area {
    padding: 60px 0 30px;
  }

  .footer-widget-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .col-lg-4:last-child .footer-widget-content {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .footer-area {
    padding: 50px 0 25px;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-widget-text {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer-widget-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-menu ul {
    text-align: center;
  }

  .footer-menu ul li {
    margin-bottom: 10px;
  }

  .footer-widget-infor {
    justify-content: center;
    margin-bottom: 15px;
  }

  .copyright-area {
    margin-top: 35px;
    padding-top: 20px;
  }
}

@media (max-width: 576px) {
  .footer-area {
    padding: 40px 0 20px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-widget-text p {
    font-size: 14px;
  }

  .footer-widget-title h4 {
    font-size: 18px;
  }

  .footer-menu ul li a {
    font-size: 14px;
  }

  .footer-widget-infor-content h6 {
    font-size: 14px;
  }

  .footer-widget-infor-content p {
    font-size: 13px;
  }

  .copyright-area {
    margin-top: 25px;
    padding-top: 15px;
  }

  .copyright-area span {
    font-size: 12px;
  }
}

/*=================================
<--start-scroll-up-area-->
=================================*/

.scroll-area {
  position: relative;
  z-index: 999;
}

.scroll-area .go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 30px;
  color: #ffffff;
  background-image: -moz-linear-gradient(0deg, #1f2a44 0%, #1f2a44 100%);
  background-image: -webkit-linear-gradient(0deg, #1f2a44 0%, #1f2a44 100%);
  z-index: 9999;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.9s ease-out 0s;
  -moz-transition: all 0.9s ease-out 0s;
  border-radius: 10px;
}

.scroll-area .go-top i {
  position: absolute;
  top: 50%;
  left: -4px;
  right: 0;
  margin: 0 auto;
  font-size: 15px;
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
}

.scroll-area .go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.scroll-area .go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to right, #1f2a44 0%, #1f2a44 100%);
  background-image: -ms-linear-gradient(0deg, #1f2a44 0%, #1f2a44 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  border-radius: 100%;
}

.scroll-area .go-top:focus,
.scroll-area .go-top:hover {
  color: #fff;
}

.scroll-area .go-top:focus::before,
.scroll-area .go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.scroll-area .go-top:focus i:first-child,
.scroll-area .go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.scroll-area .go-top:focus i:last-child,
.scroll-area .go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.scroll-area .go-top.active {
  top: auto;
  bottom: 130px;
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
  right: 21px;
  border-radius: 100%;
}

.top-wrap {
  position: relative;
}

.top-wrap .go-top-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  top: 3px;
  z-index: 1;
  background: #1f2a44;
}

.top-wrap .go-top-button i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #fff;
}

.top-wrap .go-top-button::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 45px;
  height: 45px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -moz-animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  background-image: -moz-linear-gradient(0deg, #1f2a44 0%, #1f2a44 100%);
  background-image: -webkit-linear-gradient(0deg, #1f2a44 0%, #1f2a44 100%);
  border-radius: 100%;
}
.top-wrap .go-top-button:hover {
  background-color: #222;
  color: #fff;
}
@keyframes ripple {
  0%,
  35% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
  }
}

/*====================================
 <--start-bradcumb-area -->
=====================================*/
.bradcumb-area {
  background: url(assets/images/breadcumb-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0 100px;
}

.bradcumb-content h1 {
  font-size: 70px;
  color: #fff;
  margin-bottom: 17px;
}

.bradcumb-content ul li {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.bradcumb-content ul li a {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

/*====================================
 <--start-about-area-inner -->
=====================================*/
.about-area-inner {
  background: #f6f7f9;
  padding: 110px 0 120px;
}

.about-area-inner .about-thumb {
  margin-left: -94px;
  position: relative;
}

.about-area-inner .vedio {
  position: absolute;
  right: 12%;
  bottom: 0%;
  background: #ffff;
  width: 25%;
  height: 36%;
  text-align: center;
  line-height: 197px;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

.about-area-inner .vedio a {
  width: 70px;
  height: 70px;
  line-height: 75px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  position: relative;
  color: #ffff;
  -webkit-animation: ripple-white 1s linear infinite;
  animation: ripple-blue 1s linear infinite;
  -webkit-transition: 0.5s;
  background: #554bc8;
  font-size: 28px;
  z-index: 44;
}

.about-area-inner .vedio i {
  display: inline-block;
  font-size: 35px;
  color: #ffff;
}

/*====================================
 <--start-contact-area-->
=====================================*/
.contact-area {
  padding: 120px 0 120px;
}

.contact-form {
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  padding: 34px 58px 48px;
}

.contact-content h4 {
  font-size: 22px;
}

.contact-content p {
  margin: 15px 0 26px;
}

.form-box input {
  width: 100%;
  outline: 0;
  height: 45px;
  margin-bottom: 15px;
  border: 1px solid #e8eae9;
  padding: 0 15px 0;
}

.form-box textarea {
  width: 100%;
  height: 130px;
  outline: 0;
  border: 1px solid #e8eae9;
  padding: 8px 15px 0;
}

.form-box button {
  border: transparent;
  background: #564ac6;
  color: #fff;
  padding: 10px 43px;
  margin-top: 33px;
}

/*====================================
 <--start-faqs-area-->
=====================================*/
.faqs-area {
  padding: 120px 0 127px;
}

.faqs-imgs-thumb img {
  width: 100%;
  margin-left: -32px;
}

.faqs-content {
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  padding: 34px 58px 80px;
}

.faqs-content h4 {
  font-size: 22px;
  margin-bottom: 11px;
  display: inline-block;
}

.accordion li {
  position: relative;
  list-style: none;
  background: #fff;
  margin-top: 22px;
  box-shadow: 0 0 1px #a59090;
  padding: 1px 0 15px;
}

.accordion li p {
  display: none;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  line-height: 25px;
  margin-left: 21px;
  margin-top: -6px;
}

.accordion h3 {
  width: 100%;
  display: block;
  cursor: pointer;
  font-weight: 700;
  line-height: 3;
  font-size: 14px;
  font-size: 0.875rem;
  text-indent: 31px;
  user-select: none;
  font-size: 17px;
  color: #232323;
}

.accordion h3::after {
  width: 8px;
  height: 8px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  position: absolute;
  right: 23px;
  content: " ";
  top: 34px;
  transform: rotate(403deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.accordion p {
  font-size: 0.8125rem;
  line-height: 2;
  padding: 10px;
}

h3.active:after {
  transform: rotate(225deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/*====================================
 <--start-service-area-tow-->
=====================================*/
.service-area-tow {
  padding: 105px 0 120px;
}

.service-box-tow {
  position: relative;
}

.service-thumb-tow {
  position: relative;
  overflow: hidden;
}

.service-thumb-tow:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  background: rgba(86, 74, 198, 0.6);
  transform: scale(0);
  transition: 0.5s;
}

.service-box-tow:hover .service-thumb-tow:before {
  transform: scale(1.1);
}

.service-thumb-tow img {
  width: 100%;
}

.service-main-content {
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  padding: 20px 33px 22px;
  width: 82%;
  margin: auto;
  margin-top: -37px;
  z-index: 9999;
  position: relative;
  opacity: 1;
  background: #ffff;
  transition: 0.5s;
}

.service-box-tow:hover .service-main-content {
  opacity: 0;
}

.service-main-content img {
  float: left;
  padding-right: 12px;
}

.service-main-content h4 {
  font-size: 18px;
  margin: 8px 0 0;
}

.service-content-tow {
  text-align: center;
  padding: 0 28px 0;
  position: absolute;
  top: 23%;
  left: 0;
  transform: scale(0);
  transition: 0.5s;
}

.service-box-tow:hover .service-content-tow {
  transform: scaleX(1.1);
}

.service-content-tow img {
  transition: 0.5s;
}

.service-box-tow:hover .service-content-tow img {
  filter: brightness(0) invert(1);
}

.service-content-tow h4 {
  font-size: 18px;
  margin: 23px 0 17px;
  transition: 0.5s;
}

.service-box-tow:hover .service-content-tow h4 {
  color: #fff;
}

.service-content-tow p {
  transition: 0.5s;
}

.service-box-tow:hover .service-content-tow p {
  color: #fff;
}

/*====================================
 <--start-team-area-->
=====================================*/

.team-area {
  padding: 100px 0;
}

/* Team section clean styles */
.team-row {
  margin-bottom: 60px;
}

.team-photo {
  width: 100%;
  /* border-radius: 8px; */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.section-title12 h1 {
  margin-bottom: 10px;
}

.section-title12 .text {
  max-width: 850px;
  margin: 8px auto 32px;
}

.single-team-box {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.team-thumb img {
  width: 100%;
}

.team-social-icon {
  position: absolute;
  right: -12%;
  bottom: 39%;
  transition: 0.5s;
}

.single-team-box:hover .team-social-icon {
  right: 5%;
}

.team-social-icon ul {
  list-style: none;
}

.team-social-icon ul li i {
  display: inline-block;
  background: #564ac6;
  color: #fff;
  width: 46px;
  height: 46px;
  line-height: 45px;
  text-align: center;
  border-radius: 50px;
  margin-bottom: 11px;
  font-size: 18px;
}

.team-content {
  text-align: center;
  padding: 16px 0 21px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.team-content:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background: #564ac6;
  z-index: -1;
  transition: 0.5s;
}

.single-team-box:hover .team-content:before {
  width: 100%;
}

.team-content h4 {
  font-size: 22px;
  margin-bottom: 12px;
  transition: 0.5s;
}

.single-team-box:hover .team-content p,
.single-team-box:hover .team-content h4 {
  color: #fff;
}

.team-content p {
  transition: 0.5s;
}

/*=================================
<--start-service-detials-area -->
=================================*/

.service-detials-area {
  padding: 120px 0 98px;
}

/*widget search*/

.widget_search {
  padding: 30px 30px 30px;
  border-radius: 4px;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0px 0px 70px rgb(0 0 0 / 5%);
}

.widget_search form {
  position: relative;
}

.widget_search input {
  border-radius: 4px;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  position: relative;
  color: #222;
  border: 0;
  border: 2px solid #1f2a44;
  outline: 0;
}

button.icons {
  border: 0;
  font-size: 18px;
  color: #fff;
  padding: 1px 15px;
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  width: 60px;
  background: #1f2a44;
  border-radius: 0 4px 4px 0;
}

/*widget categories box*/

.widget-categories-box {
  background: #fff;
  padding: 42px 40px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 70px rgb(0 0 0 / 5%);
}

/*title*/

.categories-title h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  border-bottom: 2px solid #1f2a44;
  padding: 0px 0 15px;
  margin: 0 0 30px;
  position: relative;
  padding-left: 10px;
}

.categories-title h4:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 24px;
  width: 3px;
  background: #1f2a44;
}

/*categories menu*/

.widget-categories-menu ul {
  display: block;
}

.widget-categories-menu ul li {
  display: block;
  list-style: none;
  margin-bottom: 15px;
  background: transparent;
  padding: 16px 20px 16px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid #1f2a44;
  position: relative;
  z-index: 1;
}

.widget-categories-menu ul li:hover {
  border: 2px solid #1f2a44;
}

.widget-categories-menu ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #1f2a44;
  transition: 0.5s;
  z-index: -1;
}

.widget-categories-menu ul li:hover:before {
  width: 100%;
}

.widget-categories-menu ul li a {
  display: block;
  color: #1f2a44;
  transition: 0.5s;
}

.widget-categories-menu ul li a span {
  float: right;
  display: block;
  background: #1f2a44;
  height: 22px;
  width: 22px;
  font-size: 12px;
  text-align: center;
  margin-top: 6px;
  color: #fff;
  line-height: 22px;
  transition: 0.5s;
}

.widget-categories-menu ul li:hover a span {
  background: #fff;
  color: #1f2a44;
}

.widget-categories-menu ul li:hover a {
  color: #fff;
}

.pdf-button a {
  display: block;
  background: #1f2a44;
  padding: 15px 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.pdf-button a i {
  float: right;
  font-size: 20px;
  margin-top: 2px;
}

/* Sidber Recent Post */

.sidber-widget-recent-post {
  margin-bottom: 20px;
  background: #f3f3f5;
  overflow: hidden;
}

.recent-widget-thumb {
  float: left;
  margin-right: 25px;
}

.sidber-widget-recent-post .recent-widget-content {
  padding-top: 20px;
}

.sidber-widget-recent-post .recent-widget-content a {
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.recent-widget-content a:hover {
  color: #1f2a44;
}

.sidber-widget-recent-post .recent-widget-content span i {
  margin-right: 7px;
  color: #222;
}

.recent-widget-content span {
  font-size: 14px;
  color: #1f2a44;
  padding-top: 7px;
  display: block;
}
/* Sidber Achivement CSS */

.widget-achivement ul li {
  list-style: none;
  margin-bottom: 6px;
}

.widget-achivement ul li a i {
  font-size: 17px;
  margin-right: 3px;
}

.widget-achivement ul li a {
  font-weight: 600;
  transition: 0.5s;
}

.widget-achivement ul li a span {
  float: right;
}

.widget-achivement ul li a:hover {
  color: #1f2a44;
}

/* Sidber Widget Gallery CSS */

.widget-gallery {
  overflow: hidden;
}

.widget-gallery-thumb {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* Sidber Widget Tags CSS */
.widget-tags a {
  display: inline-block;
  border: 2px solid #1f2a44;
  padding: 3px 20px;
  margin: 4px 3px;
  border-radius: 2px;
  color: #1f2a44;
  font-weight: 500;
  position: relative;
  transition: 0.5s;
  z-index: 1;
}

.widget-tags a:before {
  position: absolute;
  content: "";
  left: -2px;
  top: 0px;
  height: 102%;
  width: 0%;
  background: #1f2a44;
  z-index: -1;
  border-radius: 3px;
  transition: 0.5s;
}

.widget-tags a:hover {
  color: #fff;
  border-color: #1f2a44;
}

.widget-tags a:hover:before {
  width: 102%;
}

/* Service Details Content CSS */

.service-details-main-title {
  padding: 20px 0 18px;
}

.service-details-main-title h1 {
  font-size: 36px;
  text-transform: capitalize;
}
.service-details-video-thumb {
  position: relative;
  padding-top: 20px;
}

.service-details-overview-title {
  padding: 22px 0 15px;
}

.service-details-overview-title h2 {
  font-size: 30px;
}

.service-details-overview-text p {
  text-align: justify;
}

.service-details-overview-list ul li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  padding-right: 12px;
  padding-bottom: 12px;
}

.service-details-overview-list ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 9px;
  height: 12px;
  width: 12px;
  background: #1f2a44;
  border-radius: 50%;
}

.service-details-choose-us {
  padding-bottom: 10px;
}

.service-details-choose-us-title {
  padding: 5px 0 15px;
}

.service-details-choose-us-title h2 {
  font-size: 30px;
}

.service-details-box {
  background: #f3f3f5;
  padding: 30px 30px 10px;
  margin-bottom: 30px;
  position: relative;
}

.service-details-number {
  position: absolute;
  right: 60px;
}

.service-details-number h2 {
  font-size: 48px;
  text-transform: none;
  margin: 0;
  margin: 0;
  color: transparent !important;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #0e1317;
  opacity: 0.5;
}

.service-details-icon i {
  font-size: 50px;
  color: #1f2a44;
}

.service-details-content h2 {
  font-size: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.service-details-thumb img {
  width: 100%;
}

.service-details-video-thumb-inner img {
  width: 100%;
}

/*=================================
<--start-blog-detials-area -->
=================================*/

.blog-detials-area {
  padding: 120px 0 128px;
}

.blog-grid-area {
  padding: 120px 0 90px;
}

.blog-details-main {
  background: #fff;
  padding: 30px;
  box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.05);
}

.blog-details-meta {
  background: #f3f3f5;
  padding: 16px 30px;
}

.blog-details-meta span {
  margin-right: 30px;
}

.blog-details-meta span i {
  color: #1f2a44;
  padding-right: 5px;
}

.blog-details-content {
  padding: 20px 0 18px;
}

.blog-details-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-details-thumb img {
  width: 100%;
}

.blog-details-des {
  padding: 30px 0 10px;
}

.blog-details-blockquote {
  background: rgba(240, 40, 48, 0.1);
  padding: 40px 38px 26px;
  position: relative;
  margin-bottom: 10px;
}

.blog-details-blockquote::before {
  position: absolute;
  content: "";
  background: url(assets/images/resource/quite.png);
  top: 40px;
  left: 60px;
  height: 75px;
  width: 75px;
  background-repeat: no-repeat;
}

.blog-details-blockquote blockquote {
  font-size: 18px;
  color: #0e1317;
  font-weight: 500;
  font-family: "Open Sans";
}

.blog-details-video-thumb {
  margin-top: 30px;
  position: relative;
}

.blog-details-video-thumb img {
  width: 100%;
}

.blog-details-video-thumb-inner img {
  width: 100%;
}

.video-icon {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  padding-top: 8px;
}

.video-icon a {
  width: 80px;
  height: 80px;
  line-height: 80px;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  position: relative;
  color: #1f2a44;
  -webkit-animation: ripple-white 1s linear infinite;
  animation: ripple-blue 1s linear infinite;
  -webkit-transition: 0.5s;
  background: #fff;
  font-size: 25px;
  z-index: 1;
}

.blog-details-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.blog-details-content-list {
  margin-bottom: 30px;
}

.blog-details-content-list p i {
  font-size: 14px;
  height: 32px;
  width: 32px;
  border: 1px solid #ddd;
  text-align: center;
  line-height: 31px;
  border-radius: 100%;
  margin-right: 15px;
}

.blog-detials-area .blog-content {
  padding: 20px 30px 38px;
}

.blog-details-button a {
  display: inline-block;
  border: 2px solid #1f2a44;
  padding: 3px 20px;
  position: relative;
  z-index: 1;
  color: #fff;
  border-radius: 3px;
  margin-bottom: 10px;
}

.blog-details-button a:before {
  position: absolute;
  content: "";
  left: -2px;
  top: -1px;
  height: 104%;
  width: 104%;
  background: linear-gradient(to right, #1f2a44 6%, #1f2a44 96%);
  z-index: -1;
  border-radius: 3px;
  transition: 0.5s;
}

.blog-details-button a.active {
  border-color: #1f2a44;
  background: transparent;
  color: #1f2a44;
  transition: 0.5s;
  margin-left: 10px;
}

.blog-details-button a.active:before {
  background: transparent;
}

.blog-details-button a.active:hover:before {
  background: linear-gradient(to right, #1f2a44 6%, #1f2a44 96%);
}

.blog-details-button a.active:hover {
  color: #fff;
  border-color: #1f2a44;
}

.blog-details-social {
  text-align: right;
}

.blog-details-social a {
  display: inline-block;
  border: 2px solid #1f2a44;
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 100%;
  font-size: 14px;
  transition: 0.5s;
  margin-left: 5px;
}

.blog-details-social a:hover {
  background: #1f2a44;
  border-color: #1f2a44;
  color: #fff;
}

/* Blog Details Author */

.blog-details-author {
  border-top: 2px solid #ced3d9;
  padding-top: 40px;
  margin-top: 32px;
}

.blog-details-author-inner {
  background: #f3f3f5;
  padding: 30px 30px 25px;
}

.blog-details-author-thumb {
  float: left;
  margin-right: 30px;
}

.blog-details-author-content h2 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 12px;
}

/* Comment CSS */

.blog-details-comment {
  margin-bottom: 10px;
  position: relative;
}

.blog-details-comment-thumb {
  float: left;
  margin-right: 30px;
}

.blog-details-comment-content {
  overflow: hidden;
}

.blog-details-comment-content h2 {
  font-size: 18px;
  margin-top: 0;
}

.blog-details-comment-content span {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.blog-details-comment-reply {
  position: absolute;
  right: 25px;
}

.blog-details-comment-reply a {
  background: linear-gradient(to right, #1f2a44 6%, #1f2a44 96%);
  padding: 3px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 2px;
  display: inline-block;
}

.blog-details-comment.reply {
  margin-left: 70px;
  padding-top: 35px;
  border-top: 2px solid #1f2a44;
}

/* Blog Details Contact */

.blog-details-contact {
  border-top: 2px solid #1f2a44;
  margin: 12px 20px 10px;
  padding-top: 8px;
}

.input-box input {
  outline: oldlace;
  width: 100%;
  height: 45px;
  margin-bottom: 25px;
  border-radius: 5px;
  border: 1px solid #eeee;
  padding: 0 20px;
}

.input-box textarea {
  width: 100%;
  height: 200px;
  outline: 0;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 12px 23px 0;
}

.input-button button {
  background: #1f2a44;
  color: #fff;
  border: transparent;
  padding: 12px 18px;
  border-radius: 5px;
  margin-top: 28px;
}

/*=================================
<--start-account-area -->
=================================*/
.account-area {
  padding: 120px 0 128px;
}

.account-content h3 {
  font-size: 24px;
  color: #282828;
  font-weight: 400;
}

.back-home {
  float: right;
}

.back-home a {
  display: inline-block;
  background: #1f2a44;
  color: #fff;
  font-size: 16px;
  padding: 6px 18px;
  border-radius: 5px;
}

.d-single-info {
  border: 1px solid #ccc;
  padding: 18px 19px;
  border-radius: 5px;
  margin-bottom: 55px;
  margin-top: 16px;
}

.user-name p {
  margin-bottom: 0;
  font-size: 16px;
  color: #282828;
}

.tab ul li {
  list-style: none;
  border-bottom: 1px solid #ccc;
  width: 95%;
}

.tab ul li a {
  display: inline-block;
  color: #222;
  padding: 20px 0px 20px;
}

.tab button {
  padding: 22px 0;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  background: transparent;
}

/* Style the tab content */

.tabcontent {
  padding: 0 17px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.tabcontent h3 {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.tabcontent p {
  padding-top: 24px;
  padding-bottom: 24px;
  margin-bottom: 0;
}

.table.add-margin {
  margin-top: 30px;
}

.table.add-margin thead tr th {
  font-weight: 600;
}

.table thead th {
  border-bottom: 2px solid #999393;
}

.table td,
.table th {
  padding: 0.75rem;
  border: transparent;
}

.add-border tr {
  border-bottom: 1px solid #ccc;
}

.add-border.bg tr td a {
  display: inline-block;
  background: #1f2a44;
  color: #fff;
  padding: 3px 11px;
  border-radius: 3px;
  font-size: 15px;
}

.add-border tr td {
  font-size: 16px;
}

.add-border tr td a {
  display: inline-block;
  background: #1f2a44;
  color: #fff;
  padding: 6px 8px;
  border-radius: 3px;
  font-size: 15px;
}

.tab button a {
  color: #222;
}

/*=================================
<--start-account-detials-area -->
=================================*/
.account-details-area {
  padding: 120px 0 130px;
}
.details-form {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding: 60px;
  padding-top: 24px;
  border-radius: 5px;
}

.input-radio {
  margin-bottom: 12px;
}

.account-input-box input {
  outline: 0;
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px 0;
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 35px;
}

.slider {
  padding-left: 5px;
  color: #222;
}

.save-button button {
  background: #1f2a44;
  border: transparent;
  color: #fff;
  padding: 6px 20px;
  font-size: 18px;
  border-radius: 3px;
  margin-top: 20px;
  border: 1px solid #1f2a44;
  transition: 0.5s;
}

.save-button button:hover {
  background: transparent;
  border: 1px solid #1f2a44;
  color: #1f2a44;
}

/*======================================
  <--start-portfolio-area-->
========================================*/
.portfolio-area {
  padding: 106px 0 97px;
}

.portfolio-area .section-title p {
  margin-top: 14px;
  width: 50%;
  margin: auto;
  margin-top: 10px;
}

/* portfolio menu */
.portfolio_menu {
  text-align: center;
  padding: 0 0 45px;
}

li.current_menu_item {
  background: #564ac6 !important;
}

.portfolio_menu ul li {
  display: inline-block;
  list-style: none;
  margin-right: 10px;
  cursor: pointer;
  padding: 7px 30px;
  background: #232323;
  color: #fff;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.portfolio_menu ul li:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #564ac6;
  transform: scale(0);
  border-radius: 30px;
  transition: 0.5s;
}

.single-portfolio-box {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  margin-bottom: 30px;
}

.signle-portfolio-thumb {
  position: relative;
}

.signle-portfolio-thumb:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(86, 74, 198, 0.6);
  transform: scale(0);
  transition: 0.5s;
}

.single-portfolio-box:hover .signle-portfolio-thumb:before {
  transform: scale(1);
}

.signle-portfolio-thumb img {
  width: 100%;
}

.portfolio-box-icon {
  position: absolute;
  left: 47%;
  bottom: 103%;
  transition: 0.5s;
}

.single-portfolio-box:hover .portfolio-box-icon {
  bottom: 42%;
}

.portfolio-box-icon i {
  color: #fff;
  font-size: 35px;
}

.poftolio-content {
  text-align: center;
  background: #fff;
  position: absolute;
  bottom: -50%;
  left: 5%;
  width: 90%;
  border-radius: 0;
  transition: 0.5s;
  height: 102px;
  padding: 15px 0 6px;
}

.single-portfolio-box:hover .poftolio-content {
  bottom: 0;
}

.poftolio-content h6 {
  font-size: 18px;
  color: #564ac6;
  margin-top: 10px;
}

.poftolio-content h4 a {
  font-size: 16px;
  color: #222;
  margin-top: -16px;
  transition: 0.5s;
}

.poftolio-content h4 a:hover {
  color: #564ac6;
}

/*===========================
<-- portfolio-details-css-->
=============================*/
.portfolio-details-area {
  padding: 120px 0 120px;
}

.row.box-shadow {
  box-shadow: 0 0 30px rgb(0 0 0 / 10%);
  padding: 58px 70px 56px;
}

.portfolio-details-thumb img {
  width: 100%;
  margin-left: -29px;
}

.portfolio-details-content h4 {
  font-size: 25px;
  font-weight: 600;
}

.portfolio-details-content ul li strong {
  font-size: 18px;
  margin-right: 10px;
}

.portfolio-details-content ul li {
  list-style: none;
  border-bottom: 1px solid #ddd;
  padding: 13px 0;
  font-weight: 500;
  text-transform: capitalize;
  color: #222;
  font-size: 16px;
}

.port-dtl-social-icon {
  display: inline-block;
  margin-top: 16px;
}

.port-dtl-social-icon span {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
}

.port-dtl-social-icon ul {
  display: inline-block;
}

.port-dtl-social-icon ul li {
  list-style: none;
  display: inline-block;
}

.port-dtl-social-icon ul li i {
  display: inline-block;
  border: 1px solid #1f2a44;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  line-height: 34px;
  text-align: center;
  color: #1f2a44;
  margin-left: 6px;
  transition: 0.5s;
  font-size: 15px;
}

.port-dtl-social-icon ul li i:hover {
  background: #1f2a44;
  color: #fff;
}

.port-dlt-title h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 27px 0 10px;
}

.port-dlt-text p {
  text-align: justify;
}

/*===========================
<-- DreamHub Loader Css -->
=============================*/
.loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s 0.5s ease;
  z-index: 999999;
}
.loader {
  position: relative;
  display: block;
  z-index: 201;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  transition: all 0.5s 0.5s ease;
  border: 3px solid transparent;
  border-top-color: #9a241c;
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  -o-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.loader::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left-color: #1f2a44;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  -o-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loader:after {
  position: absolute;
  content: "";
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-right-color: #fff;
  -webkit-animation: spin 2.5s linear infinite;
  -moz-animation: spin 2.5s linear infinite;
  -o-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
}

/*/ Here comes the Magic /*/

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper .loder-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: #111;
  z-index: 2;
}

.loader-wrapper .loder-section.left-section {
  left: 0;
  transition: 0.5s 0.7s ease;
}

.loader-wrapper .loder-section.right-section {
  right: 0;
  transition: 0.5s 0.7s ease;
}

/*/ When page loaded /*/
.loaded .loder-section.left-section {
  left: -100%;
}

.loaded .loder-section.right-section {
  right: -100%;
}

.loaded .loader-wrapper {
  visibility: hidden;
}

.loaded .loader {
  top: -100%;
  opacity: 0;
}

/* Shared look & feel */
.bh-card,
.bh-hero-panel,
.bh-stack {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Option A */
.years-panel {
  background: linear-gradient(135deg, #0e1f3a 0%, #1a3c6e 60%, #1f5b84 100%);
  color: #ecf2f8;
  position: relative;
  overflow: hidden;
}
.years-panel::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    45% 45% at 70% 20%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  transform: rotate(15deg);
}
.years-badge {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.years-num {
  font-size: 72px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -1px;
}
.years-plus {
  font-size: 40px;
  font-weight: 700;
  opacity: 0.9;
}
.years-label {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 6px;
}
.bh-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.bh-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  line-height: 1.4;
}
.bh-checklist svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: #9fe6b3;
  margin-top: 2px;
}

/* Option B */
.bh-stack {
  display: grid;
  gap: 14px;
}
.bh-mini {
  background: #fafbff;
  border: 1px solid #eef0f6;
  border-radius: 14px;
  padding: 16px 18px;
}
.bh-mini-title {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.bh-mini-text {
  color: #5b667a;
  margin-top: 4px;
}

/* Option C */
.about-area .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.about-area .col-lg-6 {
  display: flex;
}

.bh-hero-panel {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* variant used where we removed inline styles */
.bh-hero-panel.compact {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.bh-hero-sub.emphasis {
  margin-bottom: 15px;
  font-weight: bold;
  color: #1f2a44;
}

.panel-note {
  margin-top: 15px;
  font-style: italic;
}

/* Ensure equal heights for the two hero panels */
.about-area .equal-panels {
  align-items: stretch !important;
}
.about-area .equal-panels > [class*="col-"] {
  display: flex;
  align-items: stretch;
}
.about-area .equal-panels .bh-hero-panel {
  flex: 1 1 auto;
}

/* Ensure the content takes up full height */
.bh-hero-panel > * {
  flex-shrink: 0;
}

/* Make the list grow to fill available space */
.bh-dotlist {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Ensure bottom paragraph doesn't affect height */
.bh-hero-panel .mt-3 {
  margin-top: auto;
  padding-top: 20px;
}

.about-area .row {
  margin-left: -15px;
  margin-right: -15px;
}

.about-area .col-lg-6 {
  padding: 15px;
}

@media (max-width: 991px) {
  .about-area .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .about-area .col-lg-6 {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .about-area .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .about-area .col-lg-6 {
    padding: 8px;
  }

  .bh-hero-panel {
    padding: 20px;
    margin-bottom: 16px;
  }
}

.bh-hero-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #0f1e39;
  letter-spacing: 0.2px;
  line-height: 1.3;
  text-align: left;
}

.bh-hero-sub {
  color: #365b86;
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.bh-hero-sub span {
  position: relative;
  padding-right: 16px;
}

.bh-hero-sub span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 4px;
  color: #1f2a44;
}

.bh-hero-lead {
  color: #4a5568;
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .bh-hero-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .bh-hero-sub {
    font-size: 14px;
    margin-bottom: 14px;
    gap: 6px;
  }

  .bh-hero-sub span {
    padding-right: 14px;
  }

  .bh-hero-lead {
    font-size: 15px;
    margin-bottom: 16px;
  }
}

@media (max-width: 576px) {
  .bh-hero-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .bh-hero-sub {
    font-size: 13px;
    margin-bottom: 12px;
    gap: 4px;
  }

  .bh-hero-sub span {
    padding-right: 12px;
  }

  .bh-hero-lead {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

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

.bh-dotlist {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.bh-dotlist li {
  position: relative;
  padding-left: 0;
  margin: 20px 0;
  color: #2f3b4d;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

.bh-dotlist li strong {
  color: #1f2a44;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.bh-hero-title {
  text-align: left;
}

.bh-hero-sub {
  text-align: left;
}

.bh-hero-lead {
  text-align: left;
}

@media (max-width: 768px) {
  .bh-dotlist li {
    margin: 16px 0;
  }

  .bh-dotlist li strong {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .bh-dotlist li {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .bh-dotlist li {
    margin: 14px 0;
  }

  .bh-dotlist li strong {
    font-size: 14px;
    margin-bottom: 3px;
  }

  .bh-dotlist li {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .about-area .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bh-hero-panel {
    height: auto;
    margin-bottom: 20px;
  }

  .bh-dotlist {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .bh-hero-panel {
    padding: 24px;
    margin-bottom: 20px;
  }

  .bh-hero-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .bh-hero-sub {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .bh-hero-lead {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .bh-dotlist li {
    padding-left: 20px;
    margin: 10px 0;
    font-size: 14px;
  }

  .bh-dotlist li strong {
    margin-bottom: 2px;
  }

  .bh-dotlist li::before {
    top: 7px;
  }
}

@media (max-width: 576px) {
  .bh-hero-panel {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .bh-hero-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .bh-hero-sub {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .bh-hero-lead {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .bh-dotlist li {
    padding-left: 18px;
    margin: 8px 0;
    font-size: 13px;
  }

  .bh-dotlist li strong {
    font-size: 14px;
  }

  .bh-dotlist li::before {
    width: 5px;
    height: 5px;
    top: 6px;
  }
}

/* Anchor offsets so in-page links land below sticky header */
.anchor-section {
  scroll-margin-top: 100px;
}

@media (max-width: 991px) {
  .anchor-section {
    scroll-margin-top: 70px;
  }
}

@media (max-width: 768px) {
  .anchor-section {
    scroll-margin-top: 60px;
  }
}

/* =================================
COMPREHENSIVE MOBILE RESPONSIVE FIXES
================================= */

/* Laptop-specific fixes (1024px - 1366px screens) */
@media (max-width: 1366px) and (min-width: 1024px) {
  /* About section image fixes for laptops */
  .about-area {
    background: #fff;
    padding: 80px 0;
  }

  .about-thumb {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 30px;
  }

  .about-thumb img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 8px;
    min-width: 300px;
    min-height: 200px;
  }

  .about-content .section-title h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .about-content .description {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Services section optimization for laptops */
  .blog-area {
    padding: 80px 0;
  }

  .faeture-content-tow .section-title h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .faeture-content-tow .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .faeture-list-item ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
  }

  .faeture-box {
    padding: 35px 25px 30px;
    margin-bottom: 25px;
  }

  .faeture-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .faeture-box p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* BH panels for laptops */
  .bh-hero-panel {
    padding: 28px;
  }

  .bh-hero-title {
    font-size: 26px !important;
    line-height: 1.3;
  }

  .bh-dotlist li {
    font-size: 15px;
    line-height: 1.7;
    margin: 10px 0;
  }
}

/* Mobile-first approach - Global fixes */
@media (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  /* Fix image overflow issues */
  .about-thumb {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .about-thumb img {
    width: 100% !important;
    margin-bottom: 30px;
  }

  /* Team section images */
  .team-area img {
    max-width: 100%;
    height: auto;
  }

  /* Brand images */
  .brand-thumb img {
    max-width: 100px;
    height: auto;
  }
}

/* Tablet and small desktop fixes */
@media (max-width: 991px) {
  /* Reset desktop equal-height overrides for mobile/tablet */
  .about-area .bh-hero-panel {
    min-height: auto !important;
    height: auto !important;
  }
  /* Header improvements */
  .mobile-menu-area {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }

  /* Hero section */
  .hero-area {
    min-height: 500px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px !important;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-content h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  /* Services section - CRITICAL FIX for laptop/tablet */
  .blog-area .row.align-items-center {
    align-items: flex-start !important;
  }

  .blog-area .col-lg-6 {
    margin-bottom: 40px;
  }

  .faeture-box {
    margin-bottom: 20px;
    padding: 25px 15px;
    text-align: center;
  }

  .faeture-content-tow {
    margin-bottom: 40px;
    text-align: left;
    padding-right: 15px;
  }

  .faeture-list-item ul li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  /* About section fixes */
  .about-area,
  .about-area-inner {
    text-align: left;
  }

  .about-area .col-lg-6 {
    margin-bottom: 30px;
  }

  .about-thumb {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .about-thumb img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 30px;
  }

  /* Team section responsive */
  .team-area .row {
    justify-content: center;
  }

  .team-area [class*="col-"] {
    margin-bottom: 30px;
  }

  /* BH panels for medium screens */
  .bh-hero-panel {
    padding: 25px;
    margin-bottom: 30px;
  }

  .bh-hero-title {
    font-size: 24px !important;
  }

  .bh-dotlist li {
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
  }
}

/* Mobile landscape and tablet portrait */
@media (max-width: 768px) {
  /* Typography scaling */
  h1,
  .section-title h1 {
    font-size: 28px !important;
    line-height: 1.3;
  }

  h2 {
    font-size: 24px !important;
    line-height: 1.3;
  }

  h3 {
    font-size: 20px !important;
    line-height: 1.4;
  }

  h4 {
    font-size: 18px !important;
    line-height: 1.4;
  }

  /* Padding adjustments */
  .about-area,
  .blog-area,
  .services-area,
  .team-area,
  .brand-area,
  .footer-area {
    padding: 40px 0 !important;
  }

  /* Hero content */
  .hero-area {
    min-height: 400px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 28px !important;
    margin-bottom: 15px;
  }

  .hero-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* Service boxes */
  .faeture-box {
    text-align: center;
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  .faeture-box-icon img {
    width: 60px;
    height: auto;
  }

  /* BH panels responsive */
  .bh-hero-panel {
    padding: 20px;
    margin-bottom: 30px;
  }

  .bh-hero-title {
    font-size: 22px !important;
  }

  .bh-hero-sub {
    font-size: 14px;
  }

  /* Team section mobile */
  .team-area img {
    max-width: 250px;
    margin: 0 auto 20px;
    display: block;
  }

  /* Footer adjustments */
  .footer-area .col-lg-4 {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-social-icon {
    justify-content: center;
  }

  /* Navigation improvements */
  .header-menu ul li a {
    padding: 15px 0;
    font-size: 14px;
    margin-right: 15px;
  }

  /* Top bar improvements */
  .top-infor ul li {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
  }

  .top-bar-social-icon {
    text-align: left;
    margin-top: 5px;
  }

  /* About section improvements */
  .about-thumb {
    margin: 0 0 30px 0;
  }

  .about-content .section-title p.description {
    width: 100%;
  }

  /* Services section improvements */
  .faeture-list-item ul li {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .faeture-content-tow .section-title p.description {
    width: 100%;
  }
}

/* Header mobile styles */
@media (max-width: 768px) {
  .header-logo {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }

  .header-logo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: contain;
  }
}

/* Mobile-only: left align for Complete Care section */
@media (max-width: 768px) {
  #care-section,
  #care-section .section-title,
  #care-section .text-center,
  #care-section h1,
  #care-section h2,
  #care-section h3,
  #care-section h4,
  #care-section h5,
  #care-section h6,
  #care-section p,
  #care-section .bh-hero-sub {
    text-align: left !important;
  }
}

/* Tablet as well (<=991px) - override the general centering on about-area */
@media (max-width: 991px) {
  #care-section,
  #care-section .section-title,
  #care-section .bh-hero-panel,
  #care-section h1,
  #care-section h2,
  #care-section h3,
  #care-section h4,
  #care-section h5,
  #care-section h6,
  #care-section p,
  #care-section .bh-hero-sub {
    text-align: left !important;
  }
}

/* Mobile portrait */
@media (max-width: 576px) {
  /* Container padding */
  .container {
    padding: 0 15px;
  }

  /* Consistent section spacing */
  .about-area,
  .blog-area,
  .about-area-inner,
  .team-area {
    padding: 40px 0;
  }

  /* Consistent text alignment */
  .section-title,
  .section-title12,
  .about-content,
  .faeture-content-tow {
    text-align: left !important;
  }

  /* Consistent heading styles */
  h1,
  .section-title h1,
  h2,
  .section-title h2,
  h3,
  .section-title h3,
  h4,
  .section-title h4 {
    text-align: left !important;
    margin-bottom: 15px;
  }

  /* Consistent paragraph styles */
  p,
  .description,
  .text {
    text-align: left !important;
    margin-bottom: 15px;
  }

  /* Hero section mobile */
  .hero-area {
    min-height: 350px;
  }

  .hero-content {
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 22px !important;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  /* Reduce section padding on mobile */
  .about-area,
  .blog-area,
  .services-area,
  .team-area,
  .brand-area {
    padding: 30px 0 !important;
  }

  .footer-area {
    padding: 40px 0 20px !important;
  }

  /* Typography mobile */
  .section-title h1 {
    font-size: 20px !important;
    margin-bottom: 12px;
  }

  .section-title p.description,
  .section-title p.text {
    font-size: 14px;
    line-height: 1.5;
    width: 100% !important;
  }

  /* Service lists mobile */
  .faeture-list-item ul li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 25px;
  }

  .faeture-list-item ul li i {
    font-size: 16px;
    margin-right: 8px;
  }

  /* BH panels mobile */
  .bh-hero-panel {
    padding: 15px;
    margin-bottom: 20px;
  }

  .bh-hero-title {
    font-size: 18px !important;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .bh-hero-sub {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .bh-dotlist li {
    font-size: 13px;
    line-height: 1.5;
    margin: 6px 0;
    padding-left: 15px;
  }

  .bh-dotlist li::before {
    width: 6px;
    height: 6px;
    top: 8px;
  }

  /* Team section mobile */
  .team-area h3 {
    font-size: 18px !important;
    margin-bottom: 5px;
  }

  .team-area h5 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .team-area p {
    font-size: 13px;
    line-height: 1.5;
  }

  .team-area img {
    max-width: 200px;
    margin: 0 auto 15px;
  }

  /* Contact section mobile */
  .footer-widget-infor {
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-widget-infor-content h6 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .footer-widget-infor-content p {
    font-size: 13px;
  }

  /* Top bar mobile */
  .top-bar-header {
    padding: 5px 0;
  }

  .top-infor ul li {
    font-size: 11px;
    margin-bottom: 3px;
  }

  .top-bar-social-icon ul li.info {
    font-size: 11px;
  }

  /* Header mobile */
  .header-logo {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }

  .header-logo img {
    max-width: 65px;
    height: 65px;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .header-menu ul li a {
    font-size: 13px;
    padding: 12px 0;
    margin-right: 12px;
  }
}

/* Extra small mobile */
@media (max-width: 375px) {
  .hero-content h1 {
    font-size: 20px !important;
  }

  .section-title h1 {
    font-size: 20px !important;
  }

  .bh-hero-title {
    font-size: 16px !important;
  }

  .faeture-box {
    padding: 20px 10px;
  }

  .container {
    padding: 0 10px;
  }
}

/* Landscape phone fixes */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-area {
    min-height: 300px;
  }

  .hero-content h1 {
    font-size: 20px !important;
  }

  .hero-content h3 {
    font-size: 12px;
  }
}

/* Optional: match column heights nicely on large screens */
@media (min-width: 992px) {
  .about-content-tow,
  .years-panel,
  .bh-stack,
  .bh-hero-panel {
    min-height: 100%;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/*==================================================*/
/* Modern Services Section Styles */
/*==================================================*/

.services-area {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.services-area .section-title h1 {
  font-size: 36px;
    line-height: 40px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 2rem;

}

.services-area .text-primary {
  color: #1f2a44 !important;
}

.services-tagline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #4b5563;
}

.badge-item i {
  color: #fbbf24;
  font-size: 1rem;
}

.services-area .description {
  font-size: 1.3rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.location-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.location-badge i {
  color: #6b7280;
}

.services-grid {
  margin-top: 4rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #bfdbfe;
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: #dbeafe;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #1f2a44;
}

.service-icon i {
  font-size: 2rem;
  color: #1f2a44;
  transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
  color: white;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: #1f2a44;
}

.service-content p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
  flex: 1;
}

/* CTA Card Styles */
.cta-card {
  background: linear-gradient(135deg, #1f2a44, #1d4ed8);
  border: none;
  justify-content: center;
  align-items: center;
}

.cta-card:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.cta-content {
  text-align: center;
  color: white;
  padding: 2rem;
}

.cta-content h3 {
  color: white !important;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #bfdbfe !important;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background: white;
  color: #1f2a44;
  border: 2px solid white;
}

.btn-primary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #1f2a44;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .services-area .section-title h1 {
    /* font-size: 2.5rem; */
  }

  .services-tagline {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .services-area .description {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .services-area {
    padding: 60px 0;
  }

  .services-area .section-title h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .services-tagline {
    gap: 0.75rem;
  }

  .badge-item {
    font-size: 1rem;
  }

  .services-area .description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-content h3 {
    font-size: 1.25rem;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .services-area .section-title h1 {
    font-size: 1.75rem;
  }

  .services-tagline {
    flex-direction: column;
    gap: 0.5rem;
  }

  .service-image {
    height: 160px;
  }

  .btn {
    min-width: 160px;
  }
}

/* Property Slideshow Styles */
.property-slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.property-slideshow {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.slide.active {
  display: block;
}

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

.slide img:hover {
  transform: scale(1.05);
}

/* Navigation arrows */
.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #333;
  font-size: 18px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slideshow-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
  left: 15px;
}

.slideshow-nav.next {
  right: 15px;
}

/* Slide indicators */
.slideshow-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

/* Rental Slideshow Section */
.rental-slideshow-section {
  margin-bottom: 4rem;
}

.rental-slideshow-section .property-slideshow-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Responsive adjustments for rental section */
@media (max-width: 768px) {
  .rental-slideshow-section {
    margin-bottom: 2rem;
  }

  .rental-slideshow-section .property-slideshow-container {
    max-width: 100%;
  }

  .property-slideshow {
    height: 300px;
  }

  .slideshow-nav {
    font-size: 16px;
    padding: 10px 12px;
  }

  .slideshow-nav.prev {
    left: 10px;
  }

  .slideshow-nav.next {
    right: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

/*==================================================*/
/* Contact Section Styles */
/*==================================================*/

.contact-section {
  padding: 100px 0;
  background: #f6f7f9;
}

.contact-section .section-title h1 {
  font-size: 36px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-section .description {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.contact-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper .form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.contact-form-wrapper .form-control:focus {
  outline: none;
  border-color: #1f2a44;
  background: white;
  box-shadow: 0 0 0 3px rgba(31, 42, 68, 0.1);
}

.contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.btn-contact-submit {
  background: #1f2a44;
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 42, 68, 0.3);
}

.btn-contact-submit:hover {
  background: #1a2238;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 42, 68, 0.4);
}

.btn-contact-submit:active {
  transform: translateY(0);
}

.btn-contact-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 1.5rem;
}

.form-status .alert {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Responsive styles */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-section .section-title h1 {
    font-size: 28px;
  }

  .btn-contact-submit {
    width: 100%;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .contact-section .section-title h1 {
    font-size: 24px;
  }

  .contact-form-wrapper {
    padding: 20px 15px;
  }
}


/*==================================================*/
/* Press/News Section Styles */
/*==================================================*/

.press-section {
  padding: 100px 0;
  background: #ffffff;
}

.press-section .section-title h1 {
  font-size: 36px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.press-section .description {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.press-card {
  display: block;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
  border: 2px solid #e5e7eb;
}

.press-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #1f2a44;
  text-decoration: none;
  color: inherit;
}

.press-card-image {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, #1f2a44 0%, #3b4d6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.press-card:hover .press-card-image {
  background: linear-gradient(135deg, #1a2238 0%, #2d3a52 100%);
}

.pdf-preview {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.pdf-preview i {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.press-card:hover .pdf-preview i {
  transform: scale(1.1);
  opacity: 1;
}

.pdf-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.press-card-content {
  padding: 30px;
}

.press-card-content h3 {
  font-size: 24px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.press-card:hover .press-card-content h3 {
  color: #1f2a44;
}

.press-card-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.press-card-footer {
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f2a44;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.press-card:hover .view-link {
  gap: 12px;
}

.view-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.press-card:hover .view-link i {
  transform: translateX(4px);
}

/* Responsive styles */
@media (max-width: 991px) {
  .press-section {
    padding: 80px 0;
  }
  
  .press-card-image {
    height: 240px;
  }
  
  .pdf-preview i {
    font-size: 70px;
  }
}

@media (max-width: 768px) {
  .press-section {
    padding: 60px 0;
  }
  
  .press-section .section-title h1 {
    font-size: 28px;
  }
  
  .press-card-image {
    height: 200px;
  }
  
  .pdf-preview i {
    font-size: 60px;
    margin-bottom: 15px;
  }
  
  .press-card-content {
    padding: 25px 20px;
  }
  
  .press-card-content h3 {
    font-size: 20px;
  }
  
  .press-card-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .press-section .section-title h1 {
    font-size: 24px;
  }
  
  .press-card-image {
    height: 180px;
  }
  
  .pdf-preview i {
    font-size: 50px;
  }
  
  .pdf-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .press-card-content {
    padding: 20px 15px;
  }
}


/*==================================================*/
/* Contact Links Hover Effects */
/*==================================================*/

/* Top bar contact links */
.top-infor ul li a:hover,
.top-bar-social-icon ul li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Footer contact links */
.footer-widget-infor-content a:hover {
  text-decoration: underline !important;
  opacity: 0.9;
}


/* Fix contact section description centering */
.contact-section .section-title {
  text-align: center !important;
}

.contact-section .section-title .description {
  text-align: center !important;
}


/* Center the contact section description properly */
.contact-section .section-title p.description {
  margin-left: auto;
  margin-right: auto;
}


/* Center the press section description properly */
.press-section .section-title p.description {
  margin-left: auto;
  margin-right: auto;
}

