/* Preloader styles */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999999;
  display: grid;
  place-content: center;
  transition: opacity 0.6s;
}

.preloader-logo img {
  width: 120px;
  animation: logo-bounce 1.2s infinite alternate ease-in-out;
}

@keyframes logo-bounce {
  from {
    transform: scale(1) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-15px);
  }
}

/* Fade-in for main content */
.main-wrapper {
  transition: opacity 0.8s;
}

body, p, .subheading-sans {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.font-weight-800, .alt-font {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}
h1 {
  color: #051b2e;
  font-size: 3rem !important;
}
h1 a {
  color: #051b2e;
}
h1 a:hover,
h1 a:active,
h1 a:focus {
  color: #ffcc53;
}
h2 {
  color: #051b2e;
  font-size: 2.5rem !important;
}
h2 a {
  color: #051b2e;
}
h2 a:hover,
h2 a:active,
h2 a:focus {
  color: #ffcc53;
}
h3 {
  color: #051b2e;
  font-size: 2rem !important;
}
h3 a {
  color: #051b2e;
}
h3 a:hover,
h3 a:active,
h3 a:focus {
  color: #ffcc53;
}
h4 {
  color: #051b2e;
  font-size: 1.5rem !important;
}
h4 a {
  color: #051b2e;
}
h4 a:hover,
h4 a:active,
h4 a:focus {
  color: #ffcc53;
}
h5 {
  color: #051b2e;
  font-size: 1.2rem !important;
}
h5 a {
  color: #051b2e;
}
h5 a:hover,
h5 a:active,
h5 a:focus {
  color: #ffcc53;
}
h6 {
  color: #051b2e;
  font-size: 1rem !important;
}
h6 a {
  color: #051b2e;
}
h6 a:hover,
h6 a:active,
h6 a:focus {
  color: #ffcc53;
}
.h1 {
  color: #051b2e;
}
.h1 a {
  color: #051b2e;
}
.h1 a:hover,
.h1 a:active,
.h1 a:focus {
  color: #ffcc53;
}
.h2 {
  color: #051b2e;
}
.h2 a {
  color: #051b2e;
}
.h2 a:hover,
.h2 a:active,
.h2 a:focus {
  color: #ffcc53;
}
.h3 {
  color: #051b2e;
}
.h3 a {
  color: #051b2e;
}
.h3 a:hover,
.h3 a:active,
.h3 a:focus {
  color: #ffcc53;
}
.h4 {
  color: #051b2e;
}
.h4 a {
  color: #051b2e;
}
.h4 a:hover,
.h4 a:active,
.h4 a:focus {
  color: #ffcc53;
}
.h5 {
  color: #051b2e;
}
.h5 a {
  color: #051b2e;
}
.h5 a:hover,
.h5 a:active,
.h5 a:focus {
  color: #ffcc53;
}
.h6 {
  color: #051b2e;
}
.h6 a {
  color: #051b2e;
}
.h6 a:hover,
.h6 a:active,
.h6 a:focus {
  color: #ffcc53;
}
.bg-primary {
  background: #ffcc53 !important;
}
.bg-secondary {
  background: #051b2e !important;
}
.primary-overlay[data-overlay-dark]:before {
  background: #ffcc53;
}
.secondary-overlay[data-overlay-dark]:before {
  background: #051b2e;
}
.left-overlay-secondary[data-overlay-dark]:before {
  background: rgba(5, 27, 46, 0.76);
  background: linear-gradient(-90deg, transparent, #051b2e 65%);
}
.left-overlay-dark-three[data-overlay-dark]:before {
  background: rgba(12, 50, 70, 0.76);
  background: linear-gradient(-90deg, transparent, #0c3246 65%);
}
.bg-light {
  background-color: rgba(190, 221, 234, 0.2) !important;
}
.text-primary {
  color: #ffcc53 !important;
}
.text-primary-hover:hover,
.text-primary-hover:active,
.text-primary-hover:focus {
  color: #ffcc53 !important;
}
.text-secondary,
.text-secondary-hover:hover {
  color: #051b2e !important;
}
.primary-shadow {
  box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
}
.cursor-pointer {
  cursor: pointer;
}
.ls-minus-2px {
  letter-spacing: -2px;
}
.border-primary {
  border-color: #ffcc53 !important;
}
@media screen and (min-width: 992px) {
  .vw-90 {
    width: 90vw;
  }
}
.background-overlay {
  background-color: transparent;
  background-image: linear-gradient(180deg, transparent -100%, #051b2e 100%);
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.scroll-top-percentage {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  color: #fff;
  right: 50px;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: -ms-grid;
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
}
.scroll-top-percentage.active {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1199px) {
  .scroll-top-percentage {
    right: 30px;
    bottom: 20px;
  }
}
#scroll-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 600;
}
#scroll-value i {
  font-size: 20px;
}
@-webkit-keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.list-style1 li {
  position: relative;
  padding: 0 0 0 35px;
  margin-bottom: 14px;
}
.list-style1 li:last-child {
  margin-bottom: 0;
}
.list-style1 li:before {
  content: "\e64c";
  font-family: "themify";
  color: #ffcc53;
  font-size: 16px;
  margin-right: 12px;
  border-radius: 30px;
  position: absolute;
  left: 0;
  top: 2px;
}
@media screen and (max-width: 767px) {
  .list-style1 li {
    font-size: 14.4px;
  }
}
.list-style2 li {
  position: relative;
  transition: 0.4s;
}
.list-style2 li:hover {
  padding-left: 28px;
}
.list-style2 li:hover:before {
  content: " ";
  position: absolute;
  top: 13px;
  left: 0;
  background: #fff;
  height: 2px;
  width: 18px;
  transition: 0.5s;
}
.list-style3 {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
.list-style3 li {
  margin-bottom: 15px;
}
.list-style3 li:last-child {
  margin-bottom: 0;
}
.list-style3 li:before {
  content: "\f14a";
  font-family: Font Awesome\5 Free;
  font-weight: 500;
  color: #ffcc53;
  font-size: 16px;
  vertical-align: middle;
  padding-right: 15px;
}
.list-style4 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-style4 li {
  margin-bottom: 10px;
}
.list-style4 li:last-child {
  margin-bottom: 0;
}
.list-style4 li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  padding: 15px 20px 15px 20px;
  border: 1px solid #ededed;
  font-weight: 600;
  background: #ffffff;
  transition: all 0.3s ease 0s;
}
.list-style4 li a:before {
  position: absolute;
  content: "\e628";
  font-weight: 500;
  font-family: "themify";
  transition: width 0.3s linear;
  font-size: 18px;
  top: 12px;
  right: 20px;
}
.list-style4 li a:hover {
  background-color: #ffcc53;
  color: #ffffff;
}
.list-style4 li.active a {
  background-color: #ffcc53;
  color: #ffffff;
}
.list-style5 li {
  border-bottom: 1px solid #f2f2f2;
  padding: 0 20px 12px 30px;
  position: relative;
  margin: 0 0px 12px;
}
.list-style5 li:before {
  content: "\e64c";
  font-family: "themify";
  font-size: 15px;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 35px;
  color: #ffcc53;
}
.list-style5 li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.list-style6 li {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.6);
}
.list-style6 li:last-child {
  margin-bottom: 0;
}
.list-style6 li span {
  text-transform: uppercase;
  font-weight: 700;
  padding-right: 3px;
  color: #fff;
  font-size: 16px;
}
.list-style7 {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.list-style7 li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}
.list-style7 li:after {
  content: "\e64c";
  font-family: "themify";
  position: absolute;
  left: 0px;
  top: 1px;
  z-index: 1;
  font-weight: 600;
  color: #ffcc53;
}
.list-style7 li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.list-style8 {
  margin-bottom: 0;
  list-style: none;
}
.list-style8 li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  color: #2b303b;
}
.list-style8 li:after {
  content: "\f0a9";
  font-family: Font Awesome\5 Free;
  position: absolute;
  left: 0px;
  top: 1px;
  z-index: 1;
  font-weight: 600;
  color: #ffcc53;
}
.list-style9 li {
  position: relative;
  padding: 0 0 0 35px;
  margin-bottom: 14px;
}
.list-style9 li:last-child {
  margin-bottom: 0;
}
.list-style9 li:before {
  content: "\e64c";
  font-family: "themify";
  color: #ffcc53;
  font-size: 12px;
  margin-right: 12px;
  border-radius: 30px;
  position: absolute;
  left: 0;
  top: 2px;
}
.list-style10 li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f1f1f1;
  padding: 15px 0;
}
.list-style10 li:last-child {
  border-bottom: unset;
  padding-bottom: 0;
}
.butn-style1 {
  color: #fff;
  padding: 17px 30px !important;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s linear;
  z-index: 1;
  background: #ffcc53;
  border: none;
  letter-spacing: 1.4px;
  font-size: 14px !important;
  line-height: normal;
  font-weight: bold;
  vertical-align: top;
}
.butn-style1:before {
  content: "";
  position: absolute;
  top: -71px;
  right: 0px;
  bottom: 0;
  width: 115%;
  height: 322%;
  left: -1px;
  transform: translateX(-100%) rotate(180deg);
  z-index: -1;
  transition: all 0.4s linear;
  background: #051b2e;
}
.butn-style1.secondary {
  background: #ffcc53;
}
.butn-style1.white {
  background: #fff;
  color: #051b2e;
}
.butn-style1:hover {
  color: #fff;
}
.butn-style1.secondary:before {
  background: #ffcc53;
}
.butn-style1:hover:before {
  transform: translateX(0) rotate(195deg);
}
.butn-style1.md {
  padding: 14px 26px !important;
  font-size: 12px !important;
}
@media screen and (max-width: 991px) {
  .butn-style1 {
    padding: 14px 26px !important;
    font-size: 12px !important;
  }
  
  /* Mobile button styles for butn-style4 */
  .butn-style4 {
    padding: 10px 24px !important;
    font-size: 12px !important;
    width: auto !important;
    max-width: 200px !important;
    white-space: nowrap;
    min-width: 120px !important;
  }
  
  .butn-style4.white-hover {
    padding: 10px 20px !important;
    font-size: 12px !important;
  }
  
  /* Ensure buttons are properly displayed on mobile */
  .banner-button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    width: 100% !important;
  }
  
  /* Force left alignment for banner content on mobile */
  .slider-fade1 .col-md-11,
  .slider-fade1 .col-lg-9,
  .slider-fade1 .col-xl-8,
  .slider-fade1 .col-xxl-7 {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 0 !important;
  }
  
  .slider-fade1 .section-title02 {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  
  .slider-fade1 .section-title02 .mb-2-1 {
    text-align: left !important;
    width: 100% !important;
  }
  
  .slider-fade1 .section-title02 .sm-title {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  
  .slider-fade1 .section-title02 h1,
  .slider-fade1 .section-title02 h2 {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: auto !important;
  }
  
  .slider-fade1 .section-title02 p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  
  .slider-fade1 .banner-button {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  /* Force paragraph alignment on mobile */
  .slider-fade1 p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 0 !important;
  }
  
  .slider-fade1 .display-28 {
    text-align: left !important;
    margin-left: 0 !important;
  }
  
  .slider-fade1 .w-md-80 {
    text-align: left !important;
    margin-left: 0 !important;
    width: 100% !important;
  }
  
  /* Ensure workflow optimization text is white on mobile */
  h2.mb-0.ls-minus-2px.display-5.font-weight-800.lh-1.w-100.text-white {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 1.5rem !important;
  }
  
  .banner-button a {
    margin: 5px !important;
  }
}

/* Mobile section title styles */
@media screen and (max-width: 991px) {
  /* Section titles responsive */
  .section-title02 h2.display-5 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  
  .section-title02 .sm-title {
    font-size: 0.75rem !important;
    padding-left: 15px !important;
    position: relative !important;
    margin-bottom: 0.8rem !important;
  }
  
  .section-title02 {
    gap: 1rem !important;
  }
  
  .section-title02 h2 {
    margin-top: 0.6rem !important;
  }
  
  .display-5.font-weight-800 {
    font-size: 1.75rem !important;
  }
  
  /* Ensure section titles are visible */
  .section-title02 h2,
  h1.display-3,
  h2.display-3,
  h2.display-5 {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }
  
  /* Ensure sm-title dot appears */
  .section-title02 .sm-title::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 6px !important;
    height: 6px !important;
    background: #ffcc53 !important;
    border-radius: 50% !important;
  }
}

/* Extra small mobile devices */
@media screen and (max-width: 575px) {
  .butn-style4 {
    padding: 8px 20px !important;
    font-size: 11px !important;
    max-width: 180px !important;
    min-width: 100px !important;
  }
  
  .banner-button {
    flex-direction: column !important;
    width: 100% !important;
    text-align: center !important;
    align-items: center !important;
  }
  
  .banner-button a {
    width: auto !important;
    text-align: center !important;
  }
  
  /* Smaller section titles for very small screens */
  .section-title02 h2.display-5 {
    font-size: 1.5rem !important;
  }
  
  .section-title02 .sm-title {
    margin-bottom: 1rem !important;
  }
  
  .section-title02 {
    gap: 0.8rem !important;
  }
  
  .section-title02 h2 {
    margin-top: 0.4rem !important;
  }
  
  .display-5.font-weight-800 {
    font-size: 1.5rem !important;
  }
  
  h1.display-3,
  h2.display-3 {
    font-size: 1.75rem !important;
  }
  
  /* Fix overlapping text in about section */
  .section-title02 h2 {
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
    transform: none !important;
    white-space: normal !important;
  }
  
  .section-title02 p {
    margin-top: 1rem !important;
    line-height: 1.6 !important;
  }
  
  /* Fix text rendering glitch for Yuva AI Solutions */
  h2.mb-0.ls-minus-2px.display-5.font-weight-800.lh-1.text-left {
    text-shadow: none !important;
    transform: none !important;
    white-space: normal !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
}

/* Global fix for text rendering issues */
h2.mb-0.ls-minus-2px.display-5.font-weight-800.lh-1.text-left {
  text-shadow: none !important;
  transform: none !important;
  white-space: normal !important;
  letter-spacing: -0.5px !important;
  line-height: 1.1 !important;
  margin-bottom: 1rem !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Ensure all section titles are visible */
.section-title02 h2 {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  color: #051B2E !important;
}

.section-title02 h2.display-5 {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  color: #051B2E !important;
}

/* Force left alignment for banner content */
.slider-fade1 .col-md-11,
.slider-fade1 .col-lg-9,
.slider-fade1 .col-xl-8,
.slider-fade1 .col-xxl-7 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding-left: 0 !important;
}

.slider-fade1 .section-title02 {
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.slider-fade1 .section-title02 .mb-2-1 {
  text-align: left !important;
  width: 100% !important;
}

.slider-fade1 .section-title02 .sm-title {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.slider-fade1 .section-title02 h1,
.slider-fade1 .section-title02 h2 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  width: auto !important;
}

.slider-fade1 .section-title02 p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.slider-fade1 .banner-button {
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Override any center alignment rules for hero sliders */
.full-screen .slider-fade1 .section-title02 {
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.full-screen .slider-fade1 .section-title02 h1,
.full-screen .slider-fade1 .section-title02 h2 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  width: auto !important;
}

.full-screen .slider-fade1 .section-title02 .sm-title {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.full-screen .slider-fade1 .section-title02 p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* Force slider headings to be visible and left-aligned */
.slider-fade1 h1,
.slider-fade1 h2 {
  text-align: left !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  color: #ffffff !important;
}

.slider-fade1 .display-3 {
  text-align: left !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Ensure slider text content is left-aligned */
.slider-fade1 p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.slider-fade1 .text-primary {
  text-align: left !important;
}

/* Force specific paragraph alignment */
.slider-fade1 .display-28 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.slider-fade1 .font-weight-500 {
  text-align: left !important;
}

.slider-fade1 .opacity7 {
  text-align: left !important;
}

.slider-fade1 .w-md-80 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* Fix "Streamline Operations, Slash Costs Yuva's AI Workflow Optimization" text color */
.section-title02 h2.text-white {
  color: #ffffff !important;
}

/* Force white color for workflow optimization text */
h2.mb-0.ls-minus-2px.display-5.font-weight-800.lh-1.w-100.text-white {
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Add spacing between sections */
.team-section {
  margin-top: 4rem !important;
  padding-top: 3rem !important;
}

@media screen and (max-width: 991px) {
  .team-section {
    margin-top: 3rem !important;
    padding-top: 2rem !important;
  }
}

@media screen and (max-width: 575px) {
  .team-section {
    margin-top: 2.5rem !important;
    padding-top: 1.5rem !important;
  }
}

/* Add spacing to section before team section */
section:has(+ .team-section) {
  margin-bottom: 2rem !important;
  padding-bottom: 2rem !important;
}

/* Alternative selector for sections before team section */
.about-section + .team-section {
  margin-top: 4rem !important;
}

/* Ensure proper spacing for the about section */
section:not(.team-section) {
  margin-bottom: 2rem !important;
}

/* Fix specific heading alignment for main content sections */
.section-title02 h1,
.section-title02 h2 {
  text-align: center !important;
  margin: 0 auto !important;
  width: 100% !important;
  display: block !important;
}

/* Force center alignment for all headings except slider */
section h1,
section h2,
.container h1,
.container h2,
.row h1,
.row h2 {
  text-align: center !important;
  margin: 0 auto !important;
  width: 100% !important;
  display: block !important;
}

/* Keep slider headings left-aligned */
.slider-fade1 h1,
.slider-fade1 h2,
.banner-style01 h1,
.banner-style01 h2 {
  text-align: left !important;
}

/* Specific fix for any heading containing "Transforming" or "Innovation" */
h1, h2 {
  text-align: center !important;
  margin: 0 auto !important;
  width: 100% !important;
  display: block !important;
}

/* Target specific containers that might contain the "Transforming" text */
.py-5 h1,
.py-5 h2,
.py-lg-6 h1,
.py-lg-6 h2,
.about-style01 h1,
.about-style01 h2,
.wow h1,
.wow h2 {
  text-align: center !important;
  margin: 0 auto !important;
  width: 100% !important;
  display: block !important;
}


/* Fix "Trusted By 10k" alignment */
@media screen and (max-width: 991px) {
  .bg-secondary.d-inline-block.border-radius-10 {
    position: relative !important;
    margin: 1rem auto !important;
    padding: 1.5rem !important;
    width: auto !important;
    max-width: 200px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  .bg-secondary.d-inline-block.border-radius-10 p {
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
    text-align: center !important;
  }
  .bg-secondary.d-inline-block.border-radius-10 h3 {
    margin: 0 !important;
    font-size: 1.8rem !important;
    text-align: center !important;
  }
}

@media screen and (max-width: 575px) {
  .bg-secondary.d-inline-block.border-radius-10 {
    position: relative !important;
    margin: 1rem auto !important;
    padding: 1.2rem !important;
    width: auto !important;
    max-width: 180px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  .bg-secondary.d-inline-block.border-radius-10 p {
    margin-bottom: 0.3rem !important;
    font-size: 0.8rem !important;
    text-align: center !important;
  }
  .bg-secondary.d-inline-block.border-radius-10 h3 {
    margin: 0 !important;
    font-size: 1.5rem !important;
    text-align: center !important;
  }
}

/* Fix dot alignment for sm-title globally */
.section-title02 .sm-title {
  position: relative !important;
  padding-left: 12px !important;
  display: inline-block !important;
  margin-bottom: 1rem !important;
}

.section-title02 .sm-title::before {
  content: "•" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #ffcc53 !important;
  font-weight: bold !important;
  font-size: inherit !important;
}

/* Add spacing between section title elements */
.section-title02 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1.2rem !important;
}

.section-title02 h2 {
  margin-top: 0.8rem !important;
}
.butn-style2 {
  font-size: 15px;
  font-weight: 700;
  padding: 12px 34px !important;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  position: relative;
  overflow: hidden !important;
  display: inline-block;
  text-align: center;
  border: 2px solid #ffcc53;
  color: #fff;
  z-index: 1;
  background-color: #ffcc53;
  vertical-align: middle;
  text-transform: uppercase;
}
.butn-style2:after {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  -webkit-transform: skewX(-20deg);
  -khtml-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
  background-image: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  z-index: -1;
}
.butn-style2:hover,
.butn-style2:focus,
.butn-style2:active {
  background-color: #ffcc53;
  color: #fff;
}
.butn-style2:hover:after,
.butn-style2:focus:after,
.butn-style2:active:after {
  -webkit-animation: btn_shine 1.2s ease;
  animation: btn_shine 1.2s ease;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.butn-style2.md {
  padding: 8px 26px !important;
  font-size: 15px;
}
.butn-style2.sm {
  padding: 6px 20px !important;
}
@-webkit-keyframes btn_shine {
  100% {
    left: 200%;
  }
}
@keyframes btn_shine {
  100% {
    left: 200%;
  }
}
@media screen and (max-width: 1399px) {
  .butn-style2 {
    padding: 10px 30px !important;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .butn-style2 {
    padding: 8px 25px !important;
    font-size: 14px;
  }
}
.butn-style3 {
  background-color: #ffcc53;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  padding: 15px 34px !important;
  display: inline-block;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  width: auto;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.butn-style3:hover {
  color: #fff;
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}
.butn-style3.white {
  background-color: #fff;
  color: #232323;
}
.butn-style3.md {
  padding: 13px 30px !important;
  font-size: 13px;
}
.butn-style3.sm {
  padding: 11px 27px !important;
  font-size: 12px;
}
.butn-style4 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, #FFD030 0%, #FFCC4C 100%);
  border-radius: 0.25rem;
  padding: 12px 30px !important;
  z-index: 1;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out 0s;
  border: none;
  max-width: 250px !important;
  min-width: 140px !important;
}
.butn-style4:hover,
.butn-style4:active,
.butn-style4:focus {
  background: #051b2e;
}
.butn-style4 span {
  position: relative;
  z-index: 9;
}
.butn-style4.secondary {
  background: #051b2e;
}
.butn-style4.secondary:before {
  border-color: #ffcc53;
}
.butn-style4.secondary:hover,
.butn-style4.secondary:active,
.butn-style4.secondary:focus {
  background: #fff;
}
.butn-style4.white-hover {
  background: #ffffff;
  color: #051b2e;
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.butn-style4.white-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease-in-out;
}

.butn-style4.white-hover:hover::before {
  left: 100%;
}

.butn-style4.white-hover:hover,
.butn-style4.white-hover:active,
.butn-style4.white-hover:focus {
  background: linear-gradient(135deg, #FFD030 0%, #FFCC4C 100%);
  color: #051b2e;
  border: none;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 30px rgba(255, 208, 48, 0.25),
    0 4px 15px rgba(255, 204, 76, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.butn-style4.white-hover span {
  position: relative;
  z-index: 10;
  display: block;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.butn-style4.white-hover:hover span,
.butn-style4.white-hover:active span,
.butn-style4.white-hover:focus span {
  color: #ffffff;
  transform: translateX(2px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.butn-style4.white-border:before {
  border-color: #fff;
}
.butn-style4.md {
  padding: 9px 30px !important;
  font-size: 13px;
}
.butn-style4.sm {
  padding: 11px 27px !important;
  font-size: 12px;
}
.butn-style4.hover-bg:hover,
.butn-style4.hover-bg:active,
.butn-style4.hover-bg:focus {
  background: #051b2e !important;
  color: #fff;
  transition: all 0.4s ease-in-out 0s;
}
@media screen and (min-width: 992px) {
  .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style4 {
    color: #fff;
    border: 1px solid transparent;
  }
  .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style4:hover,
  .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style4:active,
  .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style4:focus {
    color: #ffcc53;
    border: 1px solid #ffcc53;
  }
  .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style4 {
    color: #fff;
    border: 1px solid transparent;
  }
  .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style4:hover,
  .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style4:active,
  .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style4:focus {
    color: #ffcc53;
    border: 1px solid #ffcc53;
  }
}
.button-text {
  padding: 0;
  position: relative;
  text-decoration: none;
  border: 0;
  background-color: transparent;
  display: inline-block;
  font-size: 15px;
  text-transform: uppercase;
  width: auto;
  font-weight: 500;
}
.button-text a {
  text-decoration: none !important;
}
.button-text:hover {
  border-color: #e74860;
}
.top-bar-info {
  display: inline-block;
  vertical-align: middle;
}
.top-bar-info ul {
  margin-bottom: 0;
}
.top-bar-info li {
  font-weight: 500;
  color: #fff;
  list-style-type: none;
  font-size: 14px;
  padding: 0 5px 0;
  display: inline-block;
  margin-bottom: 0;
}
.top-bar {
  display: block;
  position: relative;
  z-index: 999;
  padding: 7px 0;
}
.top-bar-info li i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: text-bottom;
}
.top-social-icon {
  padding: 0;
  margin: 0;
  display: inline-block;
}
.top-social-icon li {
  font-size: 14px;
  list-style-type: none;
  display: inline-block;
  text-align: center;
  margin: 0;
  padding: 0 7px;
}
.top-social-icon li:last-child {
  padding-right: 0;
}
.top-social-icon li:last-child a {
  padding-right: 0;
}
.top-social-icon li a {
  color: #fff;
  line-height: 28px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 0 3px;
}
.top-social-icon li a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.navbar-nav li.current > a,
.navbar-nav li.active > a {
  color: #ffcc53;
}
.attr-nav > ul > li > a.butn {
  color: #fff;
}
.navbar > ul > li.current > a:after {
  border-color: transparent #ffcc53 #ffcc53 transparent;
}
.menu_area-light .navbar-nav li.current > a,
.menu_area-light .navbar-nav li.active > a {
  color: #ffcc53;
}
.menu_area-light .navbar > ul > li.current > a:after {
  border-color: transparent #ffcc53 #ffcc53 transparent;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a {
  color: #ffcc53;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
  color: #ffcc53;
}
.menu_area-light.scrollHeader .navbar-nav li.active > a {
  color: #ffcc53;
}
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #ffcc53 #ffcc53 transparent;
}
@media screen and (min-width: 992px) {
  .menu_area-light .navbar ul ul li.active > a,
  .menu_area-light .navbar-nav li.has-sub a:hover {
    color: #ffcc53;
  }
  .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
    display: none;
  }
  .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #ffcc53;
  }
  .menu_area-light.scrollHeader .navbar > ul > li.has-sub > a:hover:after {
    display: none;
  }
  .menu_area-light.scrollHeader .navbar ul ul li.active > a,
  .menu_area-light.scrollHeader .navbar-nav li.has-sub a:hover {
    color: #ffcc53;
  }
  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #ffcc53;
  }
  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
    display: none;
  }
  .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
    display: none;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a {
    color: #ffcc53;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: #ffcc53;
  }
  .header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #ffcc53 #ffcc53 transparent;
  }
  .header-style2 .navbar ul ul li.active > a {
    color: #ffcc53;
  }
  .header-style2 .navbar-nav li.has-sub a:hover,
  .header-style2 .navbar-nav li.has-sub a:active,
  .header-style2 .navbar-nav li.has-sub a:focus {
    color: #ffcc53;
  }
  .header-style2 .navbar-nav li.current > a,
  .header-style2 .navbar-nav li.active > a {
    color: #ffcc53;
  }
  .header-style2 .navbar > ul > li.has-sub > a:hover:after,
  .header-style2 .navbar > ul > li.has-sub > a:active:after,
  .header-style2 .navbar > ul > li.has-sub > a:focus:after {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-style1 .navbar-toggler {
    background: #ffcc53;
  }
  .header-style1 .navbar-toggler:after {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .header-style1 .navbar-toggler:before {
    background: #fff;
  }
  .header-style1 .navbar-toggler.menu-opened:after,
  .header-style1 .navbar-toggler.menu-opened:before {
    background: #fff;
  }
  
  /* Force hide mobile navigation by default - override all existing styles */
  .menu_area .navbar-nav,
  .navbar .navbar-nav,
  #nav,
  ul.navbar-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateX(-100%) !important;
  }
  
  /* Show navigation when menu is opened - compact mobile menu */
  .menu_area .navbar-nav.show,
  .navbar .navbar-nav.show,
  #nav.show,
  ul.navbar-nav.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    backdrop-filter: blur(10px) !important;
    z-index: 99999 !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 1rem 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    border-radius: 0 0 15px 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  }
  
  /* Menu items styling with high specificity */
  .menu_area .navbar-nav.show li,
  .navbar .navbar-nav.show li,
  #nav.show li,
  ul.navbar-nav.show li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    border-bottom: 1px solid rgba(5, 27, 46, 0.1) !important;
  }
  
  .menu_area .navbar-nav.show li:last-child,
  .navbar .navbar-nav.show li:last-child,
  #nav.show li:last-child,
  ul.navbar-nav.show li:last-child {
    border-bottom: none !important;
  }
  
  /* Menu links styling with high specificity */
  .menu_area .navbar-nav.show li a,
  .navbar .navbar-nav.show li a,
  #nav.show li a,
  ul.navbar-nav.show li a {
    color: #051B2E !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 1rem 2rem !important;
    display: block !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    border: none !important;
    text-shadow: none !important;
    position: relative !important;
  }
  
  .menu_area .navbar-nav.show li a:hover,
  .navbar .navbar-nav.show li a:hover,
  #nav.show li a:hover,
  ul.navbar-nav.show li a:hover {
    color: #ffcc53 !important;
    background: rgba(255, 204, 83, 0.1) !important;
    transform: none !important;
    box-shadow: none !important;
  }
  
  /* Add arrow indicator for hover effect */
  .menu_area .navbar-nav.show li a::after,
  .navbar .navbar-nav.show li a::after,
  #nav.show li a::after,
  ul.navbar-nav.show li a::after {
    content: '→' !important;
    position: absolute !important;
    right: 2rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
  }
  
  .menu_area .navbar-nav.show li a:hover::after,
  .navbar .navbar-nav.show li a:hover::after,
  #nav.show li a:hover::after,
  ul.navbar-nav.show li a:hover::after {
    color: #ffcc53 !important;
    transform: translateY(-50%) translateX(5px) !important;
  }
  
  /* Ensure header has proper positioning for dropdown */
  .menu_area {
    position: relative !important;
  }
  
  .navbar-default {
    position: relative !important;
  }
  
  /* Mobile Layout Fixes */
  .main-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  /* Fix container spacing on mobile */
  .container,
  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  /* Fix row spacing on mobile */
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* Fix column spacing on mobile */
  [class*="col-"] {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  
  /* Ensure sections don't have excessive margins */
  section {
    margin: 0 !important;
    padding: 2rem 0 !important;
  }
  
  /* Fix page title section spacing */
  .page-title-section {
    padding: 2rem 0 !important;
    margin: 0 !important;
  }
  
  /* Fix contact section spacing */
  .contact-us {
    padding: 1rem !important;
    margin: 0 !important;
  }
  
  /* Ensure proper alignment of main content */
  .bg-light {
    background-color: #f8f9fa !important;
    padding: 1rem 0 !important;
  }
  
  /* Fix form container alignment */
  .contact {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Fix form elements spacing */
  .form-elements {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Ensure proper button alignment */
  .butn-style4 {
    width: 100% !important;
    margin: 1rem 0 !important;
  }
  
  /* Fix footer alignment */
  footer {
    margin: 0 !important;
    padding: 2rem 1rem !important;
  }
  
  /* Ensure map container is properly sized */
  .map-container {
    margin: 1rem 0 !important;
    padding: 0 !important;
  }
  
  /* Fix any overflow issues */
  body {
    overflow-x: hidden !important;
  }
  
  /* Ensure all content is properly contained */
  * {
    box-sizing: border-box !important;
  }
}

/* Additional mobile fixes for smaller screens */
@media screen and (max-width: 767px) {
  /* Fix any remaining layout issues on smaller mobile devices */
  .main-wrapper {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  /* Ensure containers take full width */
  .container,
  .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  
  /* Fix any sidebar or navigation alignment */
  .sidebar,
  .side-nav,
  .navigation {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Ensure main content area is properly aligned */
  .main-content,
  .content-area,
  .main-section {
    width: 100% !important;
    margin: 0 !important;
    padding: 1rem !important;
    float: none !important;
  }
  
  /* Fix any grid layout issues */
  .grid,
  .flex-container {
    display: block !important;
    width: 100% !important;
  }
  
  /* Ensure proper spacing for form elements */
  .form-group {
    margin-bottom: 1rem !important;
  }
  
  .form-control {
    width: 100% !important;
    margin-bottom: 0.5rem !important;
  }
  
  /* Fix any card or box layouts */
  .card,
  .box,
  .panel {
    width: 100% !important;
    margin: 0 0 1rem 0 !important;
    padding: 1rem !important;
  }
  
  /* Ensure images are responsive */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Fix any table layouts */
  table {
    width: 100% !important;
    display: block !important;
    overflow-x: auto !important;
  }
  
  /* Specific fixes for content box alignment with sidebar */
  .main-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  /* Ensure header takes full width */
  header,
  .header-style1,
  .navbar-default {
    width: 100% !important;
    position: relative !important;
    z-index: 1000 !important;
  }
  
  /* Fix content sections alignment */
  section {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Ensure contact form and content boxes align with sidebar */
  .contact-us,
  .bg-light,
  .contact,
  .form-elements {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100% !important;
  }
  
  /* Fix any floating elements that might cause misalignment */
  .float-left,
  .float-right,
  .pull-left,
  .pull-right {
    float: none !important;
    display: block !important;
    width: 100% !important;
  }
  
  /* Ensure proper alignment for all content containers */
  .content-box,
  .white-box,
  .main-content-box {
    width: 100% !important;
    margin: 0 !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
  }
  
  /* Force alignment of main content with sidebar */
  .page-title-section,
  .bg-light,
  .contact-us {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Ensure all containers are properly aligned */
  .container,
  .container-fluid {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix any potential layout shifts */
  .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  
  /* Ensure columns are properly aligned */
  .col-lg-7,
  .col-lg-5,
  .col-md-6,
  .col-md-12,
  .col-12 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  /* Fix any absolute positioning that might cause misalignment */
  .position-absolute,
  .position-relative {
    position: static !important;
  }
  
  /* Ensure proper box model for all elements */
  *,
  *::before,
  *::after {
    box-sizing: border-box !important;
  }
}

/* Extra specific mobile alignment fixes */
@media screen and (max-width: 991px) and (min-width: 320px) {
  /* Force perfect alignment for all mobile devices */
  body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }
  
  /* Ensure main wrapper is perfectly aligned */
  .main-wrapper {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }
  
  /* Force header alignment */
  header {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }
  
  /* Ensure all sections are properly aligned */
  section {
    width: 100% !important;
    margin: 0 !important;
    padding: 1rem 0 !important;
    position: relative !important;
  }
  
  /* Force container alignment */
  .container,
  .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Ensure content boxes align perfectly */
  .bg-light,
  .contact-us,
  .page-title-section {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Fix any potential margin/padding issues */
  .mt-n2-9,
  .mt-2-9 {
    margin-top: 1rem !important;
  }
  
  /* Ensure forms are properly contained */
  .contact,
  .form-elements,
  form {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Force proper alignment for all content */
  .text-center,
  .text-left,
  .text-right {
    width: 100% !important;
  }
}

/* Ultra-specific mobile layout alignment fix */
@media screen and (max-width: 991px) {
  /* Reset all positioning and alignment */
  body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  /* Force main wrapper to be perfectly aligned */
  .main-wrapper {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    display: block !important;
  }
  
  /* Ensure header takes full width and is properly positioned */
  header,
  .header-style1,
  .navbar-default,
  .menu_area {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
  }
  
  /* Force all sections to align with sidebar */
  section,
  .page-title-section,
  .bg-light,
  .contact-us {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure containers are perfectly aligned */
  .container,
  .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
  }
  
  /* Force rows to be properly aligned */
  .row {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure columns align perfectly */
  .col-12,
  .col-lg-7,
  .col-lg-5,
  .col-md-6,
  .col-md-12 {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0.5rem !important;
    box-sizing: border-box !important;
    position: relative !important;
  }
  
  /* Force content boxes to match sidebar alignment */
  .contact,
  .form-elements,
  .bg-light,
  .contact-us,
  .white-box,
  .content-box {
    width: 100% !important;
    margin: 0 !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
  }
  
  /* Ensure footer is properly aligned */
  footer {
    width: 100vw !important;
    margin: 0 !important;
    padding: 2rem 1rem !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
  }
  
  /* Force any floating or positioned elements to be static */
  .float-left,
  .float-right,
  .pull-left,
  .pull-right,
  .position-absolute,
  .position-relative,
  .position-fixed {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Ensure all elements use proper box model */
  *,
  *::before,
  *::after {
    box-sizing: border-box !important;
  }
  
  /* Force perfect alignment for any remaining elements */
  .main-content,
  .content-area,
  .sidebar-content {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }
  
  /* Specific fix for content box to match sidebar alignment */
  .contact-us .row .col-lg-7,
  .contact-us .row .col-lg-5,
  .bg-light .container,
  .page-title-section .container {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    position: relative !important;
    left: 0 !important;
  }
  
  /* Ensure the white content box aligns with sidebar */
  .bg-light {
    background-color: #ffffff !important;
    margin: 0 !important;
    padding: 2rem 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Force alignment of form containers */
  .form-elements .row {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  
  /* Ensure proper spacing for form elements */
  .form-group {
    margin-bottom: 1.5rem !important;
    width: 100% !important;
  }
  
  /* Force button alignment */
  .butn-style4 {
    width: 100% !important;
    margin: 1rem 0 !important;
    padding: 12px 24px !important;
  }
  
  /* Ensure map container is properly aligned */
  .map-container {
    width: 100% !important;
    margin: 1rem 0 !important;
    padding: 0 !important;
  }
  
  .map-container iframe {
    width: 100% !important;
    height: 250px !important;
    border: none !important;
    border-radius: 8px !important;
  }
}
.header-style2 .navbar-nav li.current > a {
  color: #ffcc53;
}
.header-style2 .navbar > ul > li.current > a:after {
  border-color: transparent #ffcc53 #ffcc53 transparent;
}
.header-style2.scrollHeader .navbar-nav li.current > a {
  color: #ffcc53;
}
.header-style3 .navbar-nav > li > a:hover,
.header-style3 .navbar-nav > li > a:active,
.header-style3 .navbar-nav > li > a:focus {
  color: #ffcc53;
}
  .header-style3 .navbar ul ul li.active > a {
    color: #ffcc53;
  }
  .header-style3 .navbar-nav li.has-sub a:hover,
  .header-style3 .navbar-nav li.current > a {
    color: #ffcc53;
  }
  .header-style3 .navbar-nav > li.has-sub > a:hover {
    color: #ffcc53;
  }
  .header-style3 .navbar > ul > li.has-sub > a:hover:after,
  .header-style3 .navbar > ul > li.current > a:after {
    display: none;
  }
  .header-style3.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #ffcc53;
  }
  .header-style3.scrollHeader .navbar > ul > li.has-sub > a:primarycolor:after {
    display: none;
  }
  .header-style3.scrollHeader .navbar-nav > li.active > a {
    color: #ffcc53;
  }
  .header-style3.scrollHeader .navbar-nav li.current > a {
    color: #ffcc53;
  }
  .header-style3.scrollHeader .navbar-nav li.current > a:hover {
    color: #ffcc53;
  }
  .header-style3.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #ffcc53 #ffcc53 transparent;
  }

@media screen and (max-width: 991px) {
  .header-style3 .navbar-toggler {
    background: #ffcc53;
  }
  .header-style3 .navbar-toggler:after {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .header-style3 .navbar-toggler:before {
    background: #fff;
  }
  .header-style3 .navbar-toggler.menu-opened:after,
  .header-style3 .navbar-toggler.menu-opened:before {
    background: #fff;
  }
}
.slider-fade1 span {
  animation-delay: 0.8s;
}
.slider-fade1 h1 {
  animation-delay: 1.2s;
}
.slider-fade1 p {
  animation-delay: 1.6s;
}
.slider-fade1 .banner-button {
  animation-delay: 2s;
}
.slider-fade1.owl-carousel .owl-nav button.owl-prev,
.slider-fade1.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: #000;
  transition: all 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.slider-fade1.owl-carousel .owl-nav button.owl-prev {
  left: 2%;
}
.slider-fade1.owl-carousel .owl-nav button.owl-next {
  right: 2%;
}
.slider-fade1.owl-carousel .owl-nav button.owl-prev:hover,
.slider-fade1.owl-carousel .owl-nav button.owl-next:hover {
  background-color: #ffcc53;
  color: #fff;
}
.slider-fade1 .banner-button .button-text a {
  transform: scale(0);
}
.slider-fade1 .banner-button .button-text a:hover {
  transform: scale(1.1);
}
.slider-fade1.owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  bottom: 110px;
  right: 50px;
  margin: 0 !important;
}
.slider-fade1.owl-theme .owl-dots .owl-dot span {
  background-color: #fff;
  opacity: 1;
}
.slider-fade1.owl-theme .owl-dots .owl-dot.active span,
.slider-fade1.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #ffcc53;
}
.slider-fade1 .owl-nav i,
.slider-fade1 .owl-nav span {
  color: #000;
  font-size: 16px;
}
.slider-fade1.owl-carousel .owl-nav button.owl-prev:hover i,
.slider-fade1.owl-carousel .owl-nav button.owl-next:hover i,
.slider-fade1.owl-carousel .owl-nav button.owl-prev:hover span,
.slider-fade1.owl-carousel .owl-nav button.owl-next:hover span {
  color: #fff;
}
.slider-fade1.owl-theme .owl-nav {
  margin-top: 0;
}
@media screen and (max-width: 1599px) {
  .slider-fade1.owl-carousel .owl-nav button.owl-prev {
    left: 0;
  }
  .slider-fade1.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }
}
.banner-style01 h1 {
  margin-bottom: 20px;
}
.banner-style01 .banner-button {
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-pack: center;
  justify-content: center !important;
  text-align: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}
.banner-style01 .banner-button .button-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 15px;
  width: 65px;
  height: 65px;
  background-color: #ffcc53;
  border-radius: 50%;
}
.banner-style01 .banner-button .button-arrow i {
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  font-weight: 700;
}
.banner-style01 .banner-button .button-text a {
  font-size: 19px;
}
.banner-style01 .left-text {
  position: absolute;
  transform: rotate(-90deg) translate(-50%, 50%);
  transform-origin: 0 50%;
  transition: 1s cubic-bezier(0.7, 0, 0.3, 1) !important;
  top: 50%;
  left: 50px;
  z-index: 9;
}
.banner-style01 .left-text span {
  font-size: 16px;
  color: #fff;
}
.banner-style01 .left-text span i {
  font-size: 18px;
  margin-right: 10px;
  display: inline-block;
}
@media screen and (max-width: 1599px) {
  .banner-style01 .left-text {
    left: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .banner-style01 .left-text {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .banner-style01 .banner-button .button-arrow {
    width: 50px;
    height: 50px;
  }
  .banner-style01 .banner-button .button-arrow i {
    font-size: 14px;
  }
  .banner-style01 .banner-button .button-text a {
    font-size: 16px;
  }
}
.section-title01 h2 {
  line-height: 1.05em;
  letter-spacing: -0.02em;
}
.section-title02 .sm-title {
  position: relative;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  color: #ffcc53;
  display: inline-block;
  padding-left: 15px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.section-title02 .sm-title:after {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50px;
  background-color: #ffcc53;
  right: 0px;
  left: 0;
  top: 9px;
}
/* Ensure page title sections are visible and properly positioned */
.page-title-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10 !important;
  padding: 180px 0 100px 0 !important;
  margin: 0 !important;
  margin-top: 0 !important; /* Override top-position1 negative margin */
  width: 100% !important;
}

.page-title-section h1 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #ffffff !important;
  font-size: 64px !important;
  line-height: 1 !important;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2) !important;
  margin-bottom: 10px !important;
}

.page-title-section ul {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  line-height: 1.2 !important;
}

.page-title-section ul li {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.page-title-section ul li a {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
}
.page-title-section.style1 {
  padding: 150px 0;
}
.page-title-section h1 {
  font-size: 64px;
  line-height: 1;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 9;
  text-transform: uppercase;
}
.page-title-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  line-height: 1.2;
}
.page-title-section ul li {
  display: inline-block;
}
.page-title-section ul li:last-child {
  color: #ffffff;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.page-title-section ul li:last-child a {
  color: #ffffff;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.page-title-section ul li:after {
  content: "";
  font-weight: 700;
  vertical-align: middle;
  background-color: #ffcc53;
  width: 10px;
  padding: 0 5px 0 10px;
  height: 2px;
  display: inline-block;
  margin: 0 15px;
}
.page-title-section ul li:last-child:after {
  content: none;
}
.page-title-section ul li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.page-title-section .shape-1 {
  padding: 20px;
  background: #fff;
  z-index: 3;
  bottom: 73px;
  left: 52px;
}
@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 170px 0 90px 0;
  }
  .page-title-section h1 {
    font-size: 52px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 150px 0 90px 0;
  }
  .page-title-section.style1 {
    padding: 130px 0;
  }
  .page-title-section h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 575px) {
  .page-title-section {
    padding: 130px 0 80px 0;
  }
  .page-title-section.style1 {
    padding: 100px 0;
  }
  .page-title-section h1 {
    font-size: 36px;
  }
}
.ani-left-right {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: LeftRight;
  animation-timing-function: ease-in-out;
}
@keyframes LeftRight {
  0% {
    transform: translate(0px, 0px);
  }
  65% {
    transform: translate(30px, 0);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.ani-top-bottom {
  -webkit-animation-name: top-bottom;
  animation-name: top-bottom;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes top-bottom {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.card .card-body {
  color: #575a7b;
}
.card-body .h5 a {
  white-space: nowrap;
  font-size: 1.1rem;
}
.card-style01 {
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  border: 0;
  border-radius: 5px;
}
.card-style01 .blog-img {
  border-radius: 5px 5px 0 0;
}
.card-style01 .blog-img img {
  border-radius: 5px 5px 0 0;
}
.card-style01 .blog-img span a {
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  padding: 4px 12px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 5px;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #fff;
}
.card-style01 .blog-author {
  font-size: 14px;
  will-change: transform;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.card-style01 .blog-author .blog-date {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
  font-weight: 500;
  display: inline-block;
}
.card-style01 .blog-author .author-name {
  position: absolute;
  width: auto;
  left: 0;
  bottom: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  -webkit-transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
  display: inline-block;
}
.card-style01 .blog-author .author-name a {
  font-weight: 600;
  border-bottom: 1px solid #232323;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card-style01 .blog-author .blog-like a i {
  margin-right: 4px;
  vertical-align: middle;
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
.card-style01:hover .blog-author .blog-date {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-32px);
  transform: translateY(-32px);
}
.card-style01:hover .blog-author .author-name {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.card-style02 {
  position: relative;
}
.card-style02 .card-icon {
  width: 65px;
  height: 65px;
  display: flex;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.17);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  position: relative;
}
.card-style03 {
  position: relative;
}
.card-style03 .card-price {
  background-color: #051b2e;
  position: absolute;
  bottom: -50px;
  right: 30px;
  width: 100px;
  color: #fff;
  height: 100px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-style03 .price-before {
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: tb-rl;
  background: #ffcc53;
  padding: 15px 5px;
  color: #fff;
}
.card-style04 {
  position: relative;
  overflow: hidden;
  border: 0;
  height: 100%;
  background: unset;
  border-radius: 0;
}
.card-style04 .card-header {
  padding: 40px 35px 70px 35px;
  border-color: #ededed;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}
.card-style04 .card-price {
  background-color: #fff;
  position: absolute;
  bottom: -32px;
  left: 30px;
  border-radius: 5px;
  width: 110px;
  height: 70px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-style04 .card-month {
  position: absolute;
  right: 30px;
  bottom: -15px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #ffcc53;
  padding: 5px 20px;
  border-radius: 35px;
}
.card-style04 .card-body {
  border: 1px solid #ededed;
  border-top: none;
  background: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 60px 35px 30px;
}
@media screen and (max-width: 991px) {
  .card-style04 .card-header .price {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .card-style04 .card-header .price sup {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .card-style04 .card-header .price {
    font-size: 45px;
  }
  .card-style04 .discount-tag {
    width: 116px;
    font-size: 12px;
  }
}
.card-style05 {
  border: none;
  border-radius: 5px;
  height: 100%;
  box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
}
.card-style05 .radius-top {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-style05 .blog-img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-style05 .blog-img img {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s ease;
  -ms-transition: -ms-transform 0.3s ease;
  transition: transform 0.3s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(1.01, 1.01);
  -ms-transform: scale(1.01, 1.01);
  transform: scale(1.01, 1.01);
}
.card-style05 .post-date {
  position: absolute;
  right: 30px;
  top: -42px;
  font-size: 20px;
  background: #051b2e;
  color: #fff;
  border-radius: 3px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px;
  height: 78px;
  width: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-style05 .post-date .month {
  font-size: 12px;
  text-transform: uppercase;
}
.card-style05 .read-more {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
  color: #4e86ff;
}
.card-style05 .blog-tag:after {
  content: "";
  margin: 0 0.75em;
  width: 3px;
  height: 3px;
  background-color: #8e919d;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  border-radius: 50%;
}
.card-style05 .read-more:hover {
  color: #33d687;
}
.card-style05:hover .blog-img img {
  -webkit-transform: scale(1.07, 1.07);
  -ms-transform: scale(1.07, 1.07);
  transform: scale(1.07, 1.07);
}
.card-style06 .card-body {
  padding: 40px 50px 40px 50px;
}
.card-style06 .card-body .service-img {
  margin: 0 auto 25px;
  position: relative;
}
.card-style06 .card-body .icon-circle {
  width: 85px;
  height: 85px;
  position: absolute;
  background-color: rgba(255, 204, 83, 0.2);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%) !important;
}
.card-style06 .card-btn {
  background: transparent;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  width: 100%;
  justify-content: center;
  position: relative;
  border-radius: 0;
}
.card-style06 .card-btn .main-butn {
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  font-size: 14px;
  text-transform: uppercase;
}
.card-style06 .card-btn .main-butn .main-text {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
}
.card-style06 .card-btn .hover-butn {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: #0c3246;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-style06 .card-btn .hover-butn a {
  padding: 0 0 2px;
  position: relative;
  border: 0;
  letter-spacing: 0;
  background-color: transparent;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  width: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.card-style06 .card-btn .hover-butn .inner-butn {
  display: inline-flex;
  align-items: center;
}
.card-style06 .card-btn .hover-butn .inner-butn .hover-text {
  margin-left: -13px;
  position: relative;
  z-index: 3;
  transition: transform 0.6s 125ms cubic-bezier(0.1, 0.75, 0.25, 1);
}
.card-style06 .card-btn .hover-butn .inner-butn .btn-icon {
  margin-left: 6px;
  position: relative;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
  line-height: 0;
  z-index: 3;
}
.card-style06 .card-btn .hover-butn .inner-butn .btn-icon i {
  margin: 0;
  line-height: 0;
  position: relative;
}
.card-style06 .card-btn .hover-butn .inner-butn .btn-icon + .btn-icon {
  order: -2;
  opacity: 0;
  transition-delay: 0s;
  margin-left: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.card-style06:hover .card-btn .main-butn .main-text {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}
.card-style06:hover .card-btn .hover-butn {
  top: 0;
}
@media screen and (max-width: 1399px) {
  .card-style06 .card-body {
    padding: 40px 30px 40px 30px;
  }
}
@media screen and (max-width: 1199px) {
  .card-style06 .card-body {
    padding: 40px 30px 40px 30px;
  }
  .card-style06 .card-body .icon-circle {
    top: 40px;
  }
}
.project-info-list {
  list-style: none;
  margin-bottom: 0;
  padding: 40px 30px;
  display: block;
  border-radius: 5px;
  color: #fff;
  margin-top: -70px;
  margin-right: 30px;
  background-color: #ffcc53;
}
.project-info-list li {
  margin-bottom: 15px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}
.project-info-list li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.project-info-list li .project-label {
  font-weight: 500;
  display: inline-block;
  margin-right: 25px;
  position: relative;
  width: 115px;
  vertical-align: top;
}
.project-info-list li .project-label:after {
  content: ":";
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  top: -1px;
  right: 0;
}
@media screen and (max-width: 991px) {
  .project-info-list {
    margin: 0;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 575px) {
  .project-info-list li .project-label {
    margin-right: 15px;
    width: 100px;
  }
}
.portfolio-style-01 .portfolio-box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 39, 50, 0.3);
  top: 0;
  left: 0;
}
.portfolio-style-01 .portfolio-box .portfolio-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #ff497c;
}
.portfolio-style-01 .portfolio-box:hover .portfolio-inner:before {
  height: 100%;
}
.portfolio-style-01 .portfolio-content {
  position: absolute;
  bottom: 46px;
  left: 46px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.portfolio-style-01:hover .portfolio-content {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-style-01 .portfolio-content .port-text {
  background-color: #fff;
  padding: 5px 10px;
  display: inline-block;
}
.portfolio-style-01:hover .portfolio-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.portfolio-style-01 .portfolio-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
  border-radius: 50%;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  transform: translateY(-20px) scale(1);
  opacity: 0;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.portfolio-style-01:hover .portfolio-img img {
  transform: scale(1.1);
}
.portfolio-style-01 .portfolio-img img {
  transition: all 0.3s ease-in-out;
}
.portfolio-style-01:after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(31, 36, 44, 0.7);
  content: "";
  transition: all 0.3s ease-in-out;
}
.portfolio-style-01 .port-four-col {
  bottom: 30px !important;
  left: 25px !important;
}
.portfolio-style-01 .port-four-col .port-text {
  padding: 5px 5px !important;
}
.pagination {
  border-radius: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.pagination ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
}
.pagination li {
  display: inline-block;
  margin-right: 10px;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination a {
  display: inline-block;
  border-radius: 2px;
  background: transparent;
  font-weight: 700;
  text-align: center;
  margin: 3px 0;
  padding: 12px 16px;
  color: #002a5c;
  border: 1px solid #dddddd;
  line-height: 25px;
}
.pagination a:hover,
.pagination a:active,
.pagination a:focus {
  background-color: #ffcc53;
  color: #ffffff;
  box-shadow: none;
}
.pagination .active a {
  background-color: #f7f7f7;
  color: #002147;
  border: 1px solid #dbdbdb;
  cursor: default;
}
@media screen and (max-width: 575px) {
  .pagination li {
    margin-right: 8px;
  }
}
ul.resp-tabs-list {
  margin: 0px;
  padding: 0px;
}
.resp-tabs-list li {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 4px 0 0;
  list-style: none;
  cursor: pointer;
}
.resp-tabs-list li:last-child {
  margin-right: 0;
}
.resp-tabs-list li i {
  font-size: 28px;
  color: #6f6f6f;
}
.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}
.resp-tab-content {
  display: none;
  padding: 40px 0 40px 0;
}
.resp-tabs-list li.resp-tab-active {
  background: #ffcc53;
  background: linear-gradient(-45deg, #ffcc53, #8089ff);
  padding: 15px 20px 13px 20px;
  color: #ffcc53;
}
.resp-tabs-list li.resp-tab-active i {
  color: #fff;
}
.resp-content-active,
.resp-accordion-active {
  display: block;
}
.resp-tab-content {
  float: left;
  width: 100%;
}
h2.resp-accordion {
  background: #ffffff !important;
  cursor: pointer;
  display: none;
  font-size: 14px;
  border: 1px solid #e4e4e4;
  border-top: 0px solid #e4e4e4;
  margin: 0px;
  padding: 15px;
  float: left;
  width: 100%;
}
h2.resp-tab-active {
  border-bottom: 0px solid #e4e4e4 !important;
  background: #ffcc53 !important;
  color: #fff;
}
h2.resp-tab-title:last-child {
  border-bottom: 12px solid #e4e4e4 !important;
  background: #ffcc53;
}
.resp-arrow {
  border-color: transparent #232323 #232323 transparent;
  border-style: solid;
  border-width: 0 1px 1px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 4px;
}
h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 1px 0 0 1px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px;
}
.resp-vtabs ul.resp-tabs-list {
  display: inline-block;
  width: 30%;
  margin-top: 0 !important;
}
.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 25px 15px !important;
  margin: 0;
  cursor: pointer;
  float: none;
}
.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: 1px solid #86bc42 !important;
  float: left;
  width: 70%;
  min-height: 250px;
  clear: none;
}
.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}
.resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
  margin-right: -1px !important;
  padding: 14px 15px 15px 11px !important;
  border-top: 4px solid #f499aa !important;
  border: 4px solid #f499aa !important;
  border-left: 4px solid #f499aa !important;
  margin-bottom: 0 0 20px;
  border-right: 4px solid #f499aa !important;
}
.resp-arrow {
  border-color: transparent #f499aa #f499aa transparent;
  border-style: solid;
  border-width: 0 2px 2px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 4px;
}
h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 2px 0 0 2px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px;
}
.resp-easy-accordion h2.resp-accordion {
  display: block;
}
.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}
.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1;
}
.resp-jfit {
  width: 100%;
  margin: 0px;
}
.resp-tab-content-active {
  display: block;
  border-color: #ededed !important;
}
h2.resp-accordion:first-child {
  border-top: 1px solid #ededed;
}
h2.resp-accordion.resp-tab-active {
  border-color: #ededed !important;
}
.owl-theme .owl-nav.disabled {
  margin-top: 40px !important;
}
.owl-theme .owl-dots {
  margin-top: 40px !important;
}
.owl-theme .owl-dots .owl-dot span {
  background: rgba(0, 0, 0, 0.15);
}
.owl-theme .owl-dots .owl-dot:hover span,
.owl-theme .owl-dots .owl-dot.active span {
  background: #ffcc53;
}
.owl-nav i,
.owl-nav span {
  color: #232323;
  font-size: 28px;
}
.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}
.dots-white.owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
}
.dots-white.owl-theme .owl-dots .owl-dot:hover span,
.dots-white.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}
.owl-thumbs button {
  border: none;
}
.owl-thumbs button img {
  opacity: 0.5;
}
.owl-thumbs button.active img {
  opacity: 1;
}
.testimonial-thumbs4.owl-thumbs button {
  border: 1px solid transparent;
  background: transparent;
}
.testimonial-thumbs4.owl-thumbs button img {
  opacity: 1;
  border: 1px solid transparent;
  padding: 8px;
}
.testimonial-thumbs4.owl-thumbs button.active img {
  opacity: 1 !important;
  border: 1px solid #ffcc53;
  padding: 8px;
  background: none;
}
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev,
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next {
  top: 40%;
  border-radius: 50%;
  position: absolute;
}
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev {
  left: -90px;
}
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next {
  right: -90px;
}
.testimonial-carousel-one.owl-carousel .owl-dots {
  margin-top: 30px;
}
.testimonial-carousel-one .owl-nav span {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px !important;
  color: #fff;
  transition: all 0.3s;
  border-radius: 50%;
}
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next:hover span,
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev:hover span {
  background: #fff;
  border-radius: 50%;
  color: #e74860;
}
.testimonial-quote {
  -webkit-text-stroke-width: 1px;
  color: #ffffff00;
  -webkit-text-stroke-color: #ffffff1a;
  font-size: 810px;
  line-height: 0px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion .card {
  background: transparent;
  box-shadow: none;
  margin-bottom: 20px;
  border: 0;
  border-radius: 0;
}
.accordion .card:last-child {
  margin-bottom: 0;
}
.accordion .card-header {
  border: 0;
  padding: 0;
  background: none;
}
.accordion .accordion-collapse {
  border: none;
}
.accordion .accordion-button {
  border-bottom: none;
  color: #fff;
  font-size: 18px;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  box-shadow: none;
  font-weight: 500;
  padding: 20px 60px 20px 20px;
  text-decoration: none;
  background: #2a334e;
  border: 0;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.accordion .accordion-button:hover {
  text-decoration: none;
}
.accordion .accordion-button.collapsed {
  background: #fff;
  color: #575a7b;
  border: 1px solid #ededed;
  border-radius: 5px;
}
.accordion .accordion-button.collapsed:after {
  background: #2a334e;
  border: none;
  content: "+";
  right: 20px;
  left: inherit;
  font-size: 18px;
  transform: none;
  width: 25px;
  height: 25px;
  line-height: 20px;
  top: 18px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
}
.accordion .accordion-button:after {
  background: #fff;
  border: none;
  content: "-";
  right: 20px;
  border-radius: 5px;
  left: inherit;
  font-size: 18px;
  border: 1px solid #fff;
  transform: none;
  width: 25px;
  height: 25px;
  line-height: 21px;
  top: 18px;
  position: absolute;
  color: #2a334e;
  text-align: center;
}
.accordion .card-body {
  color: #575a7b;
  font-size: 16px;
  padding: 20px 25px;
  line-height: 28px;
  text-align: left;
  border-top: 0;
  border-bottom: 1px solid #ededed;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media screen and (max-width: 991px) {
  .accordion .accordion-button {
    padding: 15px 50px 15px 15px;
    font-size: 16px;
  }
  .accordion .accordion-button.collapsed:after,
  .accordion .accordion-button:after {
    right: 15px;
    font-size: 16px;
    height: 22px;
    line-height: 22px;
    width: 22px;
    top: 13px;
  }
  .accordion .card-body {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 575px) {
  .accordion .accordion-button {
    padding: 15px 50px 15px 15px;
  }
}
.accordion-style .card {
  background: transparent;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  border: none;
  border-radius: 0;
}
.accordion-style .card-header {
  border: 0px;
  padding: 0;
  border-bottom: none;
  background: none;
}
.accordion-style .btn-link {
  color: #ffcc53;
  line-height: 26px;
  position: relative;
  border: none;
  border-bottom: none;
  border-left: none;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  border-radius: 0;
  padding: 20px 45px 20px 18px;
  font-weight: 700;
  text-decoration: none;
  background-color: #ffffff;
}
.accordion-style .btn-link.collapsed {
  color: #42545e;
  line-height: 26px;
  position: relative;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  padding: 20px 45px 20px 18px;
  font-weight: 700;
  text-decoration: none;
  background-color: #fff;
}
.accordion-style .btn-link:hover,
.accordion-style .btn-link:active,
.accordion-style .btn-link:focus {
  text-decoration: none;
  color: #ffcc53;
}
.accordion-style .btn-link.collapsed:after {
  content: "+";
  right: 17px;
  left: inherit;
  font-size: 20px;
  transform: none;
  top: 22px;
  position: absolute;
  color: #212121;
  background-color: transparent;
  border-radius: 0.3rem;
  line-height: 20px;
  width: 25px;
  height: 25px;
  text-align: center;
}
.accordion-style .btn-link:after {
  content: "-";
  right: 17px;
  left: inherit;
  font-size: 20px;
  transform: none;
  top: 20px;
  position: absolute;
  color: #ffcc53;
  background-color: transparent;
  border-radius: 0.3rem;
  line-height: 22px;
  width: 25px;
  height: 25px;
  text-align: center;
}
.accordion-style .card-body {
  padding: 0px 30px 25px 26px;
  line-height: 24px;
  text-align: left;
  border: none;
  border-left: none;
  background: #fff;
  border-top: none;
}
@media screen and (max-width: 991px) {
  .accordion-style .card-body {
    padding: 10px 25px 30px 25px;
  }
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.accordion.style1 .card {
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  border-radius: 0.375rem;
}
.accordion.style1 .accordion-button {
  background-color: unset;
  color: #2a334e;
  padding: 25px 60px 25px 28px;
  font-weight: 700;
  border-radius: 0.375rem 0.375rem 0 0;
}
.accordion.style1 .accordion-button.collapsed {
  border: 0;
}
.accordion.style1 .card-body {
  padding: 0 25px 25px 28px;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  border: 0;
}
.accordion.style1 .accordion-button.collapsed:after {
  background-color: unset;
  content: "\e64b";
  font-family: themify;
  font-size: 14px;
  top: 24px;
  color: #575a7b;
}
.accordion.style1 .accordion-button:after {
  content: "\e648";
  font-family: themify;
  font-size: 14px;
  top: 24px;
}
.blog-grid {
  position: relative;
  box-shadow: 0 1rem 1.75rem 0 rgba(45, 55, 75, 0.1);
  height: 100%;
  border: 0.0625rem solid rgba(220, 224, 229, 0.6);
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  height: 100%;
}
.blog-grid span {
  color: #292dc2;
}
.blog-grid img {
  width: 100%;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.blog-grid-text {
  position: relative;
}
.blog-grid-text > span {
  color: #292dc2;
  font-size: 13px;
  padding-right: 5px;
}
.blog-grid-text h4 {
  line-height: normal;
  margin-bottom: 15px;
}
.blog-grid-text .meta-style2 {
  border-top: 1px dashed #cee1f8;
  padding-top: 15px;
}
.blog-grid-text .meta-style2 ul li {
  margin-bottom: 0;
  font-weight: 500;
}
.blog-grid-text .meta-style2 ul li:last-child {
  margin-right: 0;
}
.blog-grid-text ul {
  margin: 0;
  padding: 0;
}
.blog-grid-text ul li {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin: 5px 10px 5px 0;
}
.blog-grid-text ul li:last-child {
  margin-right: 0;
}
.blog-grid-text ul li i {
  font-size: 14px;
  font-weight: 600;
  margin-right: 5px;
}
.blog-grid-text p {
  font-weight: 400;
  padding: 0;
}
.tags a {
  border: 1px solid #051b2e;
  padding: 7px 21px;
  font-size: 14px;
  line-height: 20px;
  margin: 5px 10px 5px 0;
  display: inline-block;
}
.tags a:hover,
.tags a:active,
.tags a:focus {
  border-color: #ffcc53;
  background: #ffcc53;
  color: #fff;
}
.sidebar .butn-style3 {
  box-shadow: none;
}
.sidebar .input-group .form-control {
  min-height: 50px;
}
.sidebar .blog-tags a {
  border: 1px solid #1cbfaa;
  background-color: #fff;
  padding: 7px 25px;
  font-size: 14px;
  line-height: 20px;
  margin: 0.6rem 10px 0 0;
  display: inline-block;
  border-radius: 0.3rem;
}
.sidebar .blog-tags a:hover {
  border: 1px solid #1388d7;
  background-color: #1388d7;
  color: #fff;
}
.sidebar .blog-insta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(28, 191, 170, 0.8);
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  z-index: 1;
  border-radius: 0.3rem;
}
.sidebar .blog-insta:hover:before {
  opacity: 0.85;
}
.sidebar .blog-insta .insta-icon {
  position: absolute;
  font-size: 25px;
  color: #fff;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: 55%;
  transform: translateY(-55%);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.sidebar .blog-insta:hover .insta-icon {
  opacity: 1;
  visibility: visible;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cat-item {
  list-style: none;
  word-wrap: break-word;
}
.cat-item:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}
.cat-item ul.children {
  margin-top: 0.5rem;
  margin-left: 10px;
}
.wp-tag-cloud li {
  display: inline-block;
}
.wp-tag-cloud a {
  border: 1px solid #efefef;
  padding: 7px 21px;
  font-size: 14px !important;
  line-height: 20px;
  margin: 5px 10px 5px 0;
  display: inline-block;
}
.wp-tag-cloud a:hover {
  background-color: #ffcc53;
  border-color: #ffcc53;
  color: #fff;
}
.sidebar .widget {
  margin-bottom: 3rem;
}
.sidebar .widget:last-child {
  margin-bottom: 0;
  margin-bottom: 0 !important;
}
.sidebar .widget p:last-child {
  margin-bottom: 0;
}
.sidebar .widget-body {
  padding: 1.9rem;
}
.sidebar .widget-title {
  background: #051b2e;
  padding: 20px;
  font-size: 1rem;
  margin-bottom: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.sidebar .contact-icon {
  display: block;
  color: #fff;
  background: #ffcc53;
  font-size: 20px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  transition: all 0.45s ease-out;
}
.recent-post > div:first-child a {
  display: inline-block;
  width: 80px;
  height: auto;
}
.widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.widget_categories ul .cat-item {
  margin-bottom: 10px;
}
.widget_categories ul .cat-item a {
  position: relative;
  display: block;
  text-transform: capitalize;
  padding: 15px 20px 15px 20px;
  border: 1px solid #ededed;
  font-weight: 600;
  background: #ffffff;
  transition: all 0.3s ease 0s;
}
.widget_categories ul .cat-item a:hover {
  background-color: #ffcc53;
  color: #ffffff;
}
.widget_categories ul .cat-item:first-child {
  padding-top: 0;
}
.widget_categories ul .cat-item:last-child {
  margin-bottom: 0;
}
.widget_categories ul .cat-item span.cat-name {
  padding-right: 5px;
}
.widget .widget-brochure {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.widget .widget-brochure li {
  position: relative;
  margin-bottom: 12px;
  display: inline-block;
  border: 1px solid #ededed;
  width: 100%;
  background: #fff;
}
.widget .widget-brochure li a {
  position: relative;
  display: block;
  padding: 16px 15px 16px 75px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
}
.widget .widget-brochure li a i {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  line-height: 3;
  text-align: center;
  font-size: 20px;
  background: #ffcc53;
  color: #ffffff;
}
.widget .widget-brochure li:last-child {
  margin-bottom: 0;
}
.banner-wrapper img {
  margin-top: 0;
  clip-path: polygon(0 0, 100% 0, 102% 87%, 0% 100%);
}
.banner-wrapper .icon-boxs {
  position: absolute;
  top: -60px;
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.banner-wrapper .icon-boxs i {
  line-height: 80px;
}
.blog-comment:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
  left: 10px;
  background-color: #ffcc53;
}
.sidebar .widget {
  margin-bottom: 30px;
  box-shadow: 0 0 14px rgba(82, 85, 90, 0.1);
}
.sidebar .widget .blog-tags a {
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  display: -webkit-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  z-index: 9;
  padding: 5px 12px;
  margin: 5px 10px 5px 0;
}
.sidebar .widget .blog-tags a:hover {
  color: #f9275a;
}
.sidebar .widget .blog-tags a:hover:before {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar .widget .blog-tags a:before {
  width: 0%;
  content: "";
  height: 0%;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #fff;
  z-index: -1;
}
.sidebar .widget .blog-tags.sm-tags a {
  font-size: 14px;
  background-color: white;
  color: #051b2e;
  display: -webkit-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  z-index: 9;
  padding: 5px 12px;
  margin: 5px 10px 5px 0;
}
.sidebar .widget .blog-tags.sm-tags a:hover {
  color: #f9275a;
}
.sidebar .widget.categories ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.sidebar .widget.categories ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}
.sidebar .widget.categories ul li a {
  color: #fff;
}
.sidebar .widget.categories ul li:hover a {
  color: #f9275a;
}
.sidebar .widget.categories ul li:hover span {
  color: #f9275a;
}
.sidebar .widget.categories ul li:hover span:before {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar .widget.categories ul li span {
  width: 27px;
  height: 27px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  z-index: 9;
}
.sidebar .widget.categories ul li span:before {
  width: 0%;
  content: "";
  height: 0%;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #fff;
  z-index: -1;
}
.sidebar .widget-info {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-color: #f0f2f7;
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
}
.sidebar .widget-info .info-img {
  background: #fff;
  display: inline-block;
  padding: 15px 20px 15px 0;
  width: 150px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.sidebar .widget-info .info-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
.sidebar .widget-info h3 {
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2px;
}
.story-video {
  height: 100%;
}
.video_btn {
  position: relative;
  height: 80px;
  width: 80px;
  background: #ffcc53;
  text-align: center;
  display: inline-block;
  line-height: 80px;
  color: #fff;
  border-radius: 50%;
  transition-duration: 0s;
  -ms-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
}
.video_btn:hover i,
.video_btn:focus i {
  color: #fff;
}
.video_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 95px;
  width: 95px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.startup-video {
  margin-bottom: -100px;
}
.video_btn-style2:after,
.video_btn-style2:before {
  border-color: rgba(0, 0, 0, 0.1);
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video_btn.small {
  width: 50px;
  height: 50px;
  line-height: 50px;
}
.video_btn.small:after {
  height: 50px;
  width: 50px;
}
.video_btn.small:before {
  height: 65px;
  width: 65px;
}
@media screen and (max-width: 1199px) {
  .video_btn {
    height: 75px;
    width: 75px;
    line-height: 75px;
  }
  .video_btn:after {
    height: 75px;
    width: 75px;
  }
  .video_btn:before {
    height: 90px;
    width: 90px;
  }
}
@media screen and (max-width: 991px) {
  .video_btn {
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .video_btn:after {
    height: 70px;
    width: 70px;
  }
  .video_btn:before {
    height: 85px;
    width: 85px;
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
    }
  }
}
@media screen and (max-width: 767px) {
  .video_btn {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .video_btn:after {
    height: 60px;
    width: 60px;
  }
  .video_btn:before {
    height: 75px;
    width: 75px;
  }
}
.page-container .title {
  font-size: 250px;
  line-height: 1;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .page-container .title {
    font-size: 200px;
  }
}
@media screen and (max-width: 991px) {
  .page-container .title {
    font-size: 125px;
  }
}
@media screen and (max-width: 767px) {
  .page-container .title {
    font-size: 75px;
  }
}
.coming-soon .social-links li {
  display: inline-block;
  font-size: 22px;
  margin-right: 30px;
}
.coming-soon .social-links li:last-child {
  margin-right: 0;
}
.coming-soon .social-links li a {
  color: #fff;
}
.coming-soon .social-links li a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.countdown {
  padding: 0;
}
.countdown li {
  background: #ffcc53;
  display: inline-block;
  text-align: center;
  min-width: 140px;
  overflow: hidden;
  margin-right: 10px;
  padding: 15px 10px;
  position: relative;
}
.countdown li:last-child {
  margin-right: 0;
}
.countdown li span {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  line-height: normal;
  position: relative;
}
.countdown li p.timeRefDays,
.countdown li p.timeRefHours,
.countdown li p.timeRefMinutes,
.countdown li p.timeRefSeconds {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  z-index: 2;
  position: relative;
  padding: 0;
  text-transform: capitalize;
}
@media screen and (max-width: 1199px) {
  .countdown li {
    min-width: 120px;
  }
  .countdown li span {
    font-size: 34px;
  }
}
@media screen and (max-width: 991px) {
  .countdown li span {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .countdown li {
    min-width: 180px;
    margin-top: 5px;
  }
  .countdown li:nth-child(2) {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .countdown li {
    min-width: 43%;
  }
  .countdown li span {
    font-size: 26px;
  }
}
.about-style01 .about-us-section .about-image {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 5px;
}
.about-style01 .about-us-section .about-image.one {
  margin-bottom: 30px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
}
.about-style01 .about-us-section .about-image img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}
.about-style01 .about-us-section .a-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.05);
}
.about-style01 .about-us-section .about-us-inner {
  text-align: center;
  padding: 20px 30px;
  background: #ffcc53;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  position: absolute;
  border-radius: 5px;
}
.about-style01 .about-us-section .about-us-inner.viceo {
  padding-right: 80px;
}
.about-style01 .about-us-section .about-us-inner h2 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
}
.about-style01 .about-us-section .about-us-inner .video-box {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  height: 40px;
  width: 40px;
  margin: auto;
}
.about-style01 .about-us-section .about-us-inner .video-box a {
  color: #fff;
  width: 40px;
  display: block;
  text-align: center;
  line-height: 43px;
  height: 40px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.1);
}
.about-style01 .about-content .about-list {
  display: flex;
  align-items: center;
  padding-top: 15px;
  margin-top: 25px;
}
.about-style01 .about-content .about-list .about-author {
  background: #ffffff;
  box-shadow: 0px 0px 62px 0px rgba(0, 0, 0, 0.08);
  padding: 35px 30px 35px 45px;
  border-radius: 5px;
  margin-right: 40px;
  margin-top: 25px;
  position: relative;
}
.about-style01 .about-content .about-list .about-author::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #ffcc53;
  height: 3px;
  width: calc(100% - 30px);
}
.about-style01 .about-content .about-list .about-author span {
  color: #4c4d56;
}
.about-style01 .about-content .about-list .about-author .author-img {
  position: absolute;
  left: -25px;
  top: 35px;
}
.about-style01 .about-content .about-list .about-author .author-img img {
  border-radius: 50%;
}
.about-style01 .about-content .about-list ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #090d2f;
}
.about-style01 .about-content .about-list ul li i {
  color: #ffcc53;
  margin-right: 5px;
}
.about-style01 .about-content .about-list ul li + li {
  margin-top: 15px;
}
@media screen and (max-width: 1199px) {
  .about-style01 .about-content .about-list {
    margin-top: 0px;
    padding-top: 0px;
  }
  .about-style01 .about-content .about-list .about-author {
    border-radius: 5px;
    margin-right: 20px;
    margin-top: 0px;
    padding: 24px 22px 19px 39px;
  }
}
@media screen and (max-width: 575px) {
  .about-style01 .about-us-section .about-us-inner {
    padding: 15px 21px;
  }
  .about-style01 .about-us-section .about-us-inner.viceo {
    padding-right: 65px;
  }
  .about-style01 .about-content .about-list {
    display: inline-block;
  }
  .about-style01 .about-content .about-list .about-author {
    margin-bottom: 2rem;
  }
}
.about-style-02 .left-box {
  position: absolute;
  left: 40px;
  bottom: -25px;
  background-color: #ffcc53;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 198px;
  padding: 44px 8px;
  z-index: 9;
}
.about-style-02 .left-top-box {
  position: absolute;
  left: -20px;
  top: -10%;
  display: inline-block;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  width: 250px;
  z-index: 9;
}
.about-style-02 .about-left:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -20px;
  left: 60px;
  clip-path: polygon(
    100% 50%,
    75% 93.3%,
    25% 93.3%,
    0% 50%,
    25% 6.7%,
    75% 6.7%
  );
  transform: rotate(30deg);
  background-color: rgba(255, 204, 83, 0.06);
}
.about-style-02 .about-left:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -20px;
  left: 60px;
  clip-path: polygon(
    100% 50%,
    75% 93.3%,
    25% 93.3%,
    0% 50%,
    25% 6.7%,
    75% 6.7%
  );
  transform: rotate(30deg);
  background-color: transparent;
  border: 4px solid rgba(231, 72, 96, 0.1);
}
@media screen and (max-width: 1399px) {
  .about-style-02 .left-top-box {
    left: -6%;
  }
  .about-style-02 .left-box {
    left: -30px;
  }
}
@media screen and (max-width: 1199px) {
  .about-style-02 .about-left:before {
    left: -30px;
  }
  .about-style-02 .left-top-box {
    left: -6%;
  }
  .about-style-02 .left-box {
    left: -4%;
    bottom: -31%;
  }
}
@media screen and (max-width: 991px) {
  .about-style-02 .about-left:before {
    left: 120px;
  }
  .about-style-02 .left-top-box {
    left: 40px;
  }
  .about-style-02 .left-box {
    left: 100px;
  }
}
@media screen and (max-width: 767px) {
  .about-style-02 .about-left:before,
  .about-style-02 .left-top-box,
  .about-style-02 .left-box {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .about-style03 .arrow-circle {
    width: 40px;
    height: 40px;
  }
}
.service-style-01 .inner-box {
  position: relative;
  background-color: #ffffff;
  padding: 45px 25px 50px 50px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.service-style-01 .inner-box:hover {
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}
.service-style-01 .inner-box:hover .read-more i {
  color: #ffffff;
  background-color: #ff497c;
}
.service-style-01 .icon-box {
  position: absolute;
  right: -52px;
  bottom: -52px;
  height: 210px;
  width: 210px;
  background: #f3f3f3;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 40px 50px;
  border-radius: 50%;
}
.service-style-01 .icon-box .icon {
  color: #ff497c;
  font-size: 72px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-style-01 .text {
  position: relative;
  margin-bottom: 60px;
}
.service-style-01 .read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  color: #6a6a6a;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}
.service-style-01 .read-more i {
  margin-right: 20px;
  height: 52px;
  width: 52px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1199px) {
  .service-style-01 .inner-box {
    padding: 35px 20px 33px 20px;
  }
  .service-style-01 .icon-box {
    right: -80px;
    bottom: -71px;
    height: 190px;
    width: 190px;
    padding: 36px 36px;
  }
  .service-style-01 .icon-box .icon {
    font-size: 55px;
  }
}
.team-style01 img {
  border: 3px solid #ffcc53;
  transition: all 0.3s ease 0.1s;
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.team-style01:hover img {
  border: 3px solid #051b2e;
}
.progress-style2 .progress {
  height: 8px;
}
.progress-style2 .progress .progress-bar {
  background-color: #ffcc53;
}
.progress-text {
  font-size: 15px;
  margin-bottom: 8px;
}
.custom-progress {
  height: 9px;
  border-radius: 2px;
  box-shadow: none;
  margin-bottom: 2rem;
  background-color: #fff;
}
.custom-bar {
  height: 100%;
  background-color: #fcaf17;
  box-shadow: none;
}
.counter-style01 {
  background-color: #fff;
  box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.1);
  padding: 50px;
  margin-top: -90px;
  position: relative;
  z-index: 3;
}
.counter-number {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.counter-number:before {
  content: "";
  background-color: #ffcc53;
  height: 8px;
  width: 100%;
  position: absolute;
  bottom: 9px;
  z-index: -1;
}
.contact-wrapper {
  text-align: center;
  box-shadow: -3px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 70px 30px 30px;
  position: relative;
  z-index: 2;
  height: 100%;
  word-break: break-all;
}
.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.contact-content .title-hover {
  display: block;
  position: absolute;
  top: -30px;
  margin: 0 auto;
  width: 100%;
  color: #f6f6f6;
  margin-bottom: 0;
  font-weight: bold;
  z-index: -1;
  font-size: 75px;
  transition: all 300ms ease-in-out;
  opacity: 0;
}
.contact-wrapper:hover .title-hover {
  opacity: 1;
}
.contact-wrapper:hover .contact-icon {
  background: #051b2e;
}
@media screen and (max-width: 991px) {
  .contact-wrapper {
    padding: 60px 30px 30px;
  }
  .contact-icon {
    margin: -100px auto 30px;
    width: 80px;
    height: 80px;
    line-height: 5.8;
  }
  .contact-content .title-hover {
    top: -20px;
    font-size: 60px;
  }
}
@media screen and (max-width: 575px) {
  .contact-wrapper {
    padding: 50px 25px 25px;
  }
  .contact-content .title-hover {
    font-size: 55px;
  }
}
.contact-from {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 40px;
}
.contact-map {
  width: 100%;
  height: 520px;
  vertical-align: top;
  border: 0;
}
.contact-us {
  padding: 60px;
  background-color: #f6f6f6;
}
.contact-us .contacts-icon img {
  padding: 16px;
}
.contact-us .contact-details {
  padding: 30px 50px 40px;
  border-radius: 5px;
  margin-left: 20px;
  background-color: #051b2e;
}
.contact-us .contact-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
  padding: 0 0 25px;
  margin-bottom: 22px;
}
.contact-us .contacts-icon {
  margin-right: 20px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background-color: rgba(255, 255, 255, 0.5196078431);
  text-align: center;
  display: inline-block;
  transition: 0.5s;
}
.contact-us .contacts-icon i {
  color: #fff;
  font-size: 22px;
  transition: 0.5s;
}
.contact-us .contacts-title h6 {
  font-size: 14px;
  line-height: 23px;
  opacity: 0.702;
  margin-top: 5px;
}
.contact-us .contact-info:hover .contacts-icon {
  transform: rotateY(180deg);
  background: #ffcc53;
}
.contact-us .contact-info.upper2 {
  border-bottom: none;
  margin-bottom: 0px;
}
.contact-us .contact-details .follow-company-icon2 a {
  font-size: 14px;
  display: inline-block;
  color: #fff;
  margin-right: 7px;
  transition: 0.5s;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.contact-us .follow-company-icon2 a:hover {
  background: #ffcc53;
}
@media screen and (max-width: 1199px) {
  .contact-us {
    padding: 40px;
  }
  .contact-us .contact-details {
    padding: 30px 31px 30px;
    margin-left: 7px;
  }
}
@media screen and (max-width: 575px) {
  .contact-us {
    padding: 30px 19px 31px 19px;
  }
  .contact-us .contact-info {
    padding: 0 0 18px;
    margin-bottom: 21px;
  }
  .contact-us .contacts-icon {
    margin-right: 13px;
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
  .contact-us .contact-details {
    padding: 19px 19px 19px;
    margin-left: 7px;
  }
  .contact-us .contacts-title h6 {
    font-size: 13px;
    line-height: 21px;
  }
}
.client-style01 .clients-box {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.client-style01 .clients-box .clients-inner {
  width: 100%;
  height: 328px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #f8f9fa;
}
.client-style01 .clients-box .clients-img {
  position: relative;
  z-index: 2;
}
.client-style01 .clients-box .clients-hover-logo {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.client-style01 .clients-box .clients-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 0.57s cubic-bezier(0.62, 0.83, 0.34, 0.93);
  transition: clip-path 0.57s cubic-bezier(0.62, 0.83, 0.34, 0.93);
  transition: clip-path 0.57s cubic-bezier(0.62, 0.83, 0.34, 0.93),
    -webkit-clip-path 0.57s cubic-bezier(0.62, 0.83, 0.34, 0.93);
}
.client-style01 .clients-box:hover .clients-hover-logo {
  opacity: 1;
}
.client-style01 .clients-box:hover .clients-bg-img {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.feature-style01 {
  margin-top: -114px;
}
.feature-style01 .feature-box {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  padding: 15%;
  background-color: #fff;
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.feature-style01 .feature-box:hover {
  transform: translate3d(0, -3px, 0);
}
.feature-style01 .feature-number {
  border: 2px solid #e4e4e4;
  width: 90px;
  height: 90px;
  line-height: 90px;
  margin: 0px auto 27px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 1399px) {
  .feature-style01 .feature-box {
    padding: 12% 9%;
  }
}
@media screen and (max-width: 575px) {
  .feature-style01 {
    margin-top: -75px;
  }
}
.process-style2 .process-icons {
  border-radius: 50%;
  background-color: #ffcc53;
  width: 120px;
  height: 120px;
  line-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.extra-icon-circle {
  width: 80px;
  background: #ffcc53;
  color: #fff;
  border-radius: 50%;
  padding: 15px;
}
@-webkit-keyframes wcBubble {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.5;
  }
  100% {
    scale: 1;
  }
}
@keyframes wcBubble {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.5;
  }
  100% {
    scale: 1;
  }
}
.faq-img-bg {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.history-style01 {
  position: relative;
}
.history-style01:before {
  position: absolute;
  content: "";
  left: 0;
  top: 4px;
  width: 100%;
  height: 1px;
  background: #232323;
  opacity: 0.2;
}
.timeline-flag {
  background: #ffcc53;
  width: 10px;
  height: 25px;
  margin-bottom: 25px;
  position: relative;
  transform: rotate(180deg);
}
.timeline-flag:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 0px;
  height: 0;
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.history-year {
  position: absolute;
  background-color: #ffcc53;
  color: #fff;
  padding: 4px 20px;
  left: 50%;
  transform: translateX(-67%);
}
@media screen and (max-width: 767px) {
  .history-year {
    transform: translateX(-50%);
  }
}
blockquote:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
  left: 0px;
  background-color: #ffcc53;
}
.page-navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f7ff;
  padding: 0;
}
.prev-page,
.next-page {
  position: relative;
  width: 50%;
  max-width: 350px;
  margin: 10px;
}
.prev-page:before,
.next-page:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
  transform: scale(1.04, 1.12);
  transition: 0.3s ease-in-out;
  pointer-events: none;
}
.prev-page .page-info > a,
.next-page .page-info > a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 20px;
  min-height: 110px;
  transition: 0.8s;
}
.prev-page .page-info .image-prev,
.prev-page .page-info .image-next {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  border-radius: 4px;
  overflow: hidden;
}
.next-page .page-info .image-prev,
.next-page .page-info .image-next {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  overflow: hidden;
}
.prev-page .page-info .prev-title,
.prev-page .page-info .next-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}
.next-page .page-info .prev-title,
.next-page .page-info .next-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}
.prev-page .page-info .prev-title:empty,
.prev-page .page-info .next-title:empty {
  display: none;
}
.next-page .page-info .prev-title:empty,
.next-page .page-info .next-title:empty {
  display: none;
}
.prev-page:hover:before,
.next-page:hover:before {
  background-color: white;
  transform: scale(1);
  box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1);
}
.prev-page a {
  justify-content: flex-start;
  text-align: left;
}
.prev-page a:hover .image-prev:after {
  visibility: visible;
  opacity: 1;
}
.prev-page a:hover .image-prev:before {
  visibility: visible;
  opacity: 1;
  margin-left: 0;
}
.prev-page .image-prev {
  margin-right: 20px;
}
.prev-page .image-prev:after {
  background-color: #ffcc53;
}
.next-page .image-next:after {
  background-color: #ffcc53;
}
.prev-page .image-prev:before {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-left: 20px;
  content: "\e64a";
  font-family: "themify";
  font-size: 21px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.prev-page .image-prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.next-page {
  margin-left: auto;
}
.next-page a {
  justify-content: flex-end;
  text-align: right;
}
.next-page a:hover .image-next:after {
  visibility: visible;
  opacity: 1;
}
.next-page a:hover .image-next:before {
  visibility: visible;
  opacity: 1;
  margin-right: 0;
}
.next-page .image-next {
  margin-left: 20px;
}
.next-page .image-next:before {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-right: 20px;
  content: "\e64a";
  font-family: "themify";
  font-size: 21px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  transform: scaleX(-1);
}
.next-page .image-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.next-page .next-title {
  text-align: right;
}
.prev-link-page-info > span,
.next-link-page-info > span {
  display: block;
}
.prev-link-page-info .date-details,
.next-link-page-info .date-details {
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 20px;
  margin-bottom: -2px;
}
.prev-link-page-info .date-details > div,
.prev-link-page-info .date-details > span {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 500;
}
.next-link-page-info .date-details > div,
.next-link-page-info .date-details > span {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 500;
}
.prev-link-page-info .date-details:only-child,
.next-link-page-info .date-details:only-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .prev-page,
  .next-page {
    width: calc(100% - 20px);
    max-width: unset;
  }
  .prev-page + .next-page {
    margin-top: 0;
  }
  .page-navigation {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .prev-page .page-info > a,
  .next-page .page-info > a {
    padding: 10px;
  }
  .prev-page .page-info .prev-title,
  .prev-page .page-info .next-title {
    max-width: 168px;
  }
  .next-page .page-info .prev-title,
  .next-page .page-info .next-title {
    max-width: 168px;
  }
}
.lg-backdrop {
  z-index: 99999;
}
.lg-outer {
  z-index: 999999;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #ffcc53;
}
.lg-progress-bar .lg-progress {
  background-color: #ffcc53;
}
.lg-backdrop.in {
  opacity: 0.85;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  margin-bottom: 0.5rem;
}
.form-control:focus {
  border-color: #ffcc53;
}
.form-check-input:checked {
  border-color: #ffcc53;
  background-color: #ffcc53;
}
.quform-input {
  position: relative;
}
.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 1;
}
.quform-element > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px;
}
.quform-element > label .quform-required {
  color: #cc0101;
  font-size: 10px;
}
.quform-inner input {
  width: 100%;
}
.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top;
}
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px;
}
.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal;
}
.quform-errors > .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type="file"],
.quform-has-error .custom-file-label {
  border-color: #f5543f;
}
.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-submit-inner {
  float: none;
}
.quform-loading-wrap {
  float: none;
}
.quform-loading-wrap .quform-loading {
  display: inline-block;
}
.quform-element {
  margin-bottom: 1rem;
}
.newsletter-form-icon .quform-elements {
  position: relative;
}
.newsletter-form-icon .quform-submit-inner {
  position: absolute;
  right: 1px;
  top: 3px;
  width: auto;
  background: transparent;
  height: 48px;
}
.newsletter-form-icon .quform-submit-inner .btn {
  border: none;
  padding: 0.5rem 1.15rem;
}
.newsletter-form-icon .quform-loading-wrap {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0;
}
.newsletter-form-icon input {
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.2);
  height: 50px;
  padding: 0.5rem 4rem 0.5rem 1rem;
  color: #fff;
}
.newsletter-form-icon .form-control:focus,
.newsletter-form-icon .form-control:active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.newsletter-form-icon .quform-has-error input,
.newsletter-form-icon .quform-has-error textarea,
.newsletter-form-icon .quform-has-error select {
  border-color: #f5543f;
}
.newsletter-form-icon .quform-input .quform-errors-wrap {
  right: 15px;
}
.newsletter-form-icon i {
  font-size: 1.2rem;
  line-height: 2rem;
}
.newsletter-form-cooming-soon .quform-elements1 {
  position: relative;
}
.newsletter-form-cooming-soon .quform-submit-inner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: auto;
  background: transparent;
  height: 48px;
}
.newsletter-form-cooming-soon .quform-submit-inner .btn {
  padding: 0.5rem 1.15rem;
}
.newsletter-form-cooming-soon .quform-loading-wrap {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0;
}
.newsletter-form-cooming-soon input {
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.2);
  height: 50px;
  padding: 0.5rem 4rem 0.5rem 1rem;
  color: #fff;
}
.newsletter-form-cooming-soon .form-control:focus,
.newsletter-form-cooming-soon .form-control:active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.newsletter-form-cooming-soon .quform-has-error input,
.newsletter-form-cooming-soon .quform-has-error textarea,
.newsletter-form-cooming-soon .quform-has-error select {
  border-color: #f5543f;
}
.newsletter-form-cooming-soon .quform-input .quform-errors-wrap {
  right: 15px;
}
.newsletter-form-cooming-soon i {
  font-size: 1.2rem;
  line-height: 2rem;
}
.newsletter-rounded .quform-elements {
  position: relative;
}
.newsletter-rounded .quform-submit-inner {
  position: absolute;
  right: 0px;
  top: 6px;
  width: auto;
}
.newsletter-rounded .quform-loading-wrap {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0;
}
.newsletter-rounded input {
  height: 60px;
  padding: 0.5rem 4rem 0.5rem 1.5rem;
}
.newsletter-rounded .quform-has-error input,
.newsletter-rounded .quform-has-error textarea,
.newsletter-rounded .quform-has-error select {
  border-color: #f5543f;
}
.newsletter-rounded .quform-input .quform-errors-wrap {
  right: 15px;
}
.newsletter-rounded i {
  font-size: 1.5rem;
  line-height: 2rem;
}
.newsletter-style01 .form-control {
  height: 54px;
}
.social-icon-style1 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 10px;
  list-style: none;
}
.social-icon-style1 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}
.social-icon-style1 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  background: #ffcc53;
  height: 41px;
  line-height: 41px;
  width: 41px;
}
.social-icon-style1 li a:hover,
.social-icon-style1 li a:focus,
.social-icon-style1 li a:active {
  background: #fff;
  color: #051b2e;
}
.social-icon-style1 li:last-child {
  margin-right: 0;
}
.social-icon-style2 li {
  display: inline-block;
}
.social-icon-style2 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  background: #ffcc53;
  height: 38px;
  line-height: 38px;
  width: 38px;
  border-radius: 0;
}
.social-icon-style2 li a:hover {
  color: #fff;
  background-color: #051b2e;
}
.social-icon-style2 li:last-child {
  margin-right: 0;
}
.social-icon-style3 li {
  margin-right: 5px;
  display: inline-block;
}
.social-icon-style3 li:last-child {
  margin-right: 0;
}
.social-icon-style3 li a {
  width: 50px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 16px;
  color: #272c49;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.social-icon-style3 li a:hover {
  color: #ffcc53;
}
@media screen and (max-width: 1199px) {
  .social-icon-style3 li a {
    width: 40px;
    height: 40px;
  }
}
.social-icon-style4 li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
  margin-bottom: 8px;
}
.social-icon-style4 li a {
  font-size: 15px;
  display: inline-block;
  border-radius: 0;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.social-icon-style4 li a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.social-icon-style5 li {
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
}
.social-icon-style5 li a {
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  border: 1px solid rgba(11, 11, 11, 0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.social-icon-style5 li a:hover {
  color: #fff;
  background-color: #ffcc53;
  border-color: #ffcc53;
}
.social-icon-style5 li:last-child {
  margin-right: 0;
}
.social-icon-style6 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  height: 38px;
  line-height: 38px;
  width: 38px;
  border-radius: 50px;
}
.social-icon-style6 li a:hover {
  color: #ffcc53;
  background-color: #fff;
}
.social-icon-style6 li:last-child {
  margin-right: 0;
}
.social-icon-style7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 30px 0;
  padding: 35px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.social-icon-style7 ul {
  margin-left: 30px;
  padding-left: 0;
  margin-bottom: 0;
}
.social-icon-style7 ul li {
  display: inline-block;
  list-style: none;
  margin-right: 10px;
}
.social-icon-style7 ul li:last-child {
  margin: 0;
}
.social-icon-style7 ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  border: 1px solid #ededed;
  color: #343a40;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.social-icon-style7 ul li a:hover {
  color: #fff;
  border-color: #ff497c;
  background: #ff497c;
}
.social-icon-style8 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 10px;
  list-style: none;
}
.social-icon-style8 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}
.social-icon-style8 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #ffcc53;
  background: #fff;
  height: 41px;
  line-height: 42px;
  width: 41px;
}
.social-icon-style8 li a:hover {
  background: #ffcc53;
  color: #fff;
}
.social-icon-style8 li:last-child {
  margin-right: 0;
}
.social-icon-style8 li a.small {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 11px;
}
.social-icon-style8.small li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
}
@media screen and (max-width: 991px) {
  .social-icon-style8.small li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
footer {
  word-break: break-word;
}
.footer-logo {
  max-width: 210px;
  width: 100%;
  display: inline-block;
}
footer .footer-bar {
  position: relative;
  z-index: 9;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.85);
}
footer .footer-bar p {
  margin-bottom: 0;
}
footer .email {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding-bottom: 5px;
}
footer .email a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: all 0.8s ease;
}
footer .email a:hover:after,
footer .email a:active:after,
footer .email a:focus:after {
  width: 100%;
}
footer .email a:hover,
footer .email a:active,
footer .email a:focus {
  color: #ffcc53;
}
footer .email a:after {
  border-bottom: 1px solid #fff;
  transition: all 0.8s ease;
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
}
footer .phone {
  padding-bottom: 0;
  margin-bottom: 0;
}
footer .phone a {
  padding-bottom: 0;
  letter-spacing: -0.05rem;
  color: white;
}
footer .phone a:hover,
footer .phone a:active,
footer .phone a:focus {
  color: #ffcc53;
}
@media screen and (max-width: 767px) {
  footer .email a:after {
    bottom: -10px;
  }
}
.footer-list {
  margin: 0;
  padding: 0;
}
.footer-list li {
  list-style-type: none;
  color: #fff;
  margin-bottom: 20px;
}
.footer-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.footer-list li a {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
.footer-list li a:hover {
  color: #ffcc53;
}
@media screen and (max-width: 767px) {
  .footer-list li a {
    font-size: 15px;
  }
}
.footer-address {
  margin-bottom: -50px;
}
.footer-style01 > .container {
  padding-top: 130px;
  padding-bottom: 70px;
}
.footer-style01 h3 {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .footer-style01 > .container {
    padding-top: 110px;
  }
}
.menu_area .navbar-nav {
  justify-content: flex-end !important;
  margin-right: 0 !important;
}
.menu_area .navbar-nav {
  margin-right: 0 !important;
  padding-right: 0 !important;
}
.menu_area nav.navbar {
  width: 100%;
}
footer .footer-links a, footer .footer-links a:visited, footer .footer-links a:active {
  color: #b0b7be !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  transition: color 0.2s, font-weight 0.2s;
}
footer .footer-links a:hover, footer .footer-links a:focus {
  color: #fff !important;
  font-weight: 700 !important;
}
footer h5, footer .footer-heading {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 24px !important;
}
footer .row {
  gap: 32px 0;
}
@media (min-width: 992px) {
  footer .row {
    column-gap: 32px;
  }
}

.heading-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 2rem;
  color: #222;
  margin-bottom: 0.2em;
}

.subheading-sans {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #7a7a7a;
}

/* Apply Playfair Display font to all headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
.card-body .h5 a {
  white-space: nowrap;
  font-size: 1.1rem;
}
p {
  text-align: justify;
  text-justify: inter-word;
}

.navbar-nav .dropdown-menu,
.navbar-nav .dropdown-menu * {
    font-family: 'Poppins', sans-serif !important;
}

.menu_area .navbar-nav ul,
.menu_area .navbar-nav ul li,
.menu_area .navbar-nav ul li a {
    font-family: 'Poppins', sans-serif !important;
}

/* Place at the end of the file for highest specificity */
.menu_area .navbar-nav ul,
.menu_area .navbar-nav ul li,
.menu_area .navbar-nav ul li a {
    font-family: 'Poppins', sans-serif !important;
}

.menu_area .navbar-nav > li > a {
    font-family: 'Poppins', sans-serif !important;
}

/* Center align all testimonial text and author info */
.testimonial-carousel-three,
.testimonial-carousel-three *,
.testimonial-carousel-one,
.testimonial-carousel-one *,
.testimonial-quote {
    text-align: center !important;
}

.secondary-overlay {
  position: relative;
  overflow: hidden;
}

.secondary-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(8px); /* Adjust blur as needed */
  background: rgba(0, 0, 0, 0.4); /* Optional: darken for contrast */
  pointer-events: none; /* Allows clicks to pass through */
}

.secondary-overlay > * {
  position: relative;
  z-index: 2;
}

footer h5, .footer-heading, .footer-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
}

footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  justify-content: center;
}
footer .row > [class^="col-"],
footer .row > [class*=" col-"] {
  min-width: 180px;
  flex: 1 1 180px;
  margin-bottom: 32px;
  text-align: left;
}
@media (max-width: 991px) {
  footer .row {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  footer .row > [class^="col-"],
  footer .row > [class*=" col-"] {
    min-width: 100%;
    margin-bottom: 24px;
    text-align: left;
  }
}
footer .footer-links {
  padding-left: 0;
  list-style: none;
}
footer .footer-links li {
  margin-bottom: 8px;
}
footer .footer-links li:last-child {
  margin-bottom: 0;
}
footer h5, footer .footer-heading, footer .footer-title {
  margin-bottom: 16px;
}



#backToTop {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: #ffcc53; /* Accent color */
  color: #001233;      /* Dark color */
  border: none;
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s;
}
#backToTop:hover {
  background: #ffe08a;
  color: #001233;
}
#backToTop i {
  pointer-events: none;
}





#backToTop {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: #ffcc53; /* Accent color */
  color: #001233;      /* Dark color */
  border: none;
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s;
}
#backToTop:hover {
  background: #ffe08a;
  color: #001233;
}
#backToTop i {
  pointer-events: none;
}

.footer-bottom-hr-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-bottom-hr {
  width: 80%;
  max-width: 900px;
  border: 0;
  border-top: 1.5px solid #3a4661;
  opacity: 0.3;
  margin: 0 auto;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 12px 0;
  width: 100%;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer divider line */
.footer-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3), transparent);
  margin: 40px 0 30px 0;
  border: none;
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Footer bottom bar - Main container */
.footer-bottom-bar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 24px 0 12px 0 !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  flex-wrap: nowrap !important;
}

/* Footer bottom bar - Child divs */
.footer-bottom-bar > div {
  display: flex !important;
  align-items: center !important;
  flex: 1 !important;
  min-width: 0 !important;
}

/* Left section - Legal links */
.footer-bottom-left {
  justify-content: flex-start !important;
  text-align: left !important;
  flex: 1 !important;
}

/* Center section - Copyright */
.footer-bottom-center {
  justify-content: center !important;
  text-align: center !important;
  flex: 1 !important;
}

/* Right section - Social icons */
.footer-bottom-right {
  justify-content: flex-end !important;
  text-align: right !important;
  flex: 1 !important;
}

/* Footer links styling */
.footer-bottom-link {
  color: #b0b7be !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  font-size: 0.95rem !important;
  margin-right: 24px !important;
  white-space: nowrap !important;
  font-weight: 500 !important;
}

.footer-bottom-link:last-child {
  margin-right: 0 !important;
}

.footer-bottom-link:hover {
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* Footer copyright styling */
.footer-bottom-copyright {
  white-space: nowrap !important;
  text-align: center !important;
  color: #b0b7be !important;
  font-size: 0.95rem !important;
}

/* Footer social icons styling */
.footer-bottom-social {
  display: flex !important;
  gap: 16px !important;
  align-items: center !important;
}

.footer-bottom-social a {
  color: #b0b7be !important;
  text-decoration: none !important;
  padding: 10px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  font-size: 1.2rem !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.footer-bottom-social a::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  transition: left 0.5s ease !important;
}

.footer-bottom-social a:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.footer-bottom-social a:hover::before {
  left: 100% !important;
}

/* Specific social icon hover colors */
.footer-bottom-social a:hover .fa-x-twitter {
  color: #1DA1F2 !important;
}

.footer-bottom-social a:hover .fa-linkedin-in {
  color: #0077B5 !important;
}

.footer-bottom-social a:hover .fa-instagram {
  color: #E4405F !important;
}

.footer-bottom-social a:hover .fa-facebook-f {
  color: #1877F2 !important;
}

/* Mobile responsive footer */
@media (max-width: 767px) {
  .footer-bottom-bar {
    flex-direction: column !important;
    gap: 16px 0 !important;
    text-align: center !important;
  }
  
  .footer-bottom-left,
  .footer-bottom-right {
    justify-content: center !important;
    text-align: center !important;
  }
  
  .footer-bottom-center {
    justify-content: center !important;
    text-align: center !important;
  }
}

.footer-bottom-left {
  text-align: left;
  display: flex;
  gap: 24px;
  justify-content: flex-start;
}

.footer-bottom-link {
  color: #b0b7be;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-right: 24px;
  white-space: nowrap;
  font-weight: 500;
}

.footer-bottom-link:last-child {
  margin-right: 0;
}

.footer-bottom-link:hover {
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom-link:hover {
  color: #ffffff !important;
  font-weight: bold;
}

.footer-bottom-center {
  text-align: center;
}

.footer-bottom-right {
  text-align: right;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

/* Professional footer styling */
.footer-links a {
  color: #b0b7be;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffcc53;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom-center {
  flex: 2 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}
.footer-bottom-copyright {
  font-size: 0.95rem;
  color: #b0b7be;
  opacity: 0.7;
}

.footer-bottom-right {
  flex: 1 1 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
  min-width: 200px;
}

.footer-bottom-social {
  color: #b0b7be;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-bottom-social:hover {
  color: #ffffff !important;
  font-weight: bold;
}

@media (max-width: 575px) {
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px 0;
  }
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    justify-content: center;
    text-align: center;
    min-width: 0;
  }
  .footer-bottom-center {
    flex-direction: column;
    gap: 4px;
  }
}

.footer-bottom-hr-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-bottom-hr {
  width: 95%;
  max-width: 1200px;
  border: 0;
  border-top: 1px solid #3a4661;
  opacity: 0.18;
  margin: 0 auto;
}

.footer-bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
  padding-bottom: 24px;
}

.footer-bottom-bar a,
.footer-bottom-bar span {
  color: #b0b7be;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-bottom-bar a:hover {
  color: #ffcc53;
}

.footer-bottom-copyright {
  font-size: 0.95rem;
  color: #b0b7be;
  opacity: 0.7;
}

.footer-bottom-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-bottom-social a {
  color: #b0b7be;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.footer-bottom-social a:hover {
  color: #ffcc53;
}

@media (max-width: 767px) {
  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px 0;
  }
}

.footer-bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
  padding-bottom: 24px;
}

.footer-bottom-center {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-center a,
.footer-bottom-center span {
  color: #b0b7be;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-bottom-center a:hover {
  color: #ffcc53;
}

.footer-bottom-copyright {
  opacity: 0.7;
}

.footer-bottom-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-social a {
  color: #b0b7be;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.footer-bottom-social a:hover {
  color: #ffcc53;
}

/* Mobile responsive footer adjustments */
@media (max-width: 767px) {
  .footer-bottom-bar {
    flex-direction: column !important;
    gap: 18px 0 !important;
    text-align: center !important;
  }
  
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    justify-content: center !important;
    text-align: center !important;
  }
  
  .footer-bottom-social {
    justify-content: center !important;
  }
}

/* Map container for contact page */
.map-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
  padding: 0 20px;
}

.map-container iframe {
  width: 100%;
  max-width: 800px;
  height: 500px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tablet responsive */
@media (max-width: 991px) {
  .map-container {
    margin: 30px 0;
    padding: 0 15px;
  }
  
  .map-container iframe {
    height: 450px;
  }
}

/* Mobile responsive */
@media (max-width: 767px) {
  .map-container {
    margin: 20px 0;
    padding: 0 10px;
  }
  
  .map-container iframe {
    height: 350px;
    border-radius: 16px;
  }
}

/* Small mobile responsive */
@media (max-width: 480px) {
  .map-container {
    margin: 15px 0;
    padding: 0 5px;
  }
  
  .map-container iframe {
    height: 300px;
    border-radius: 12px;
  }
}

/* Counter/Statistics numbers - Playfair Display font */
.counter-number,
.odometer,
.odometer-digit,
.odometer-value,
[data-count],
.count-number,
.statistics-number {
  font-family: "Playfair Display", serif !important;
  font-weight: 400 !important;
}

/* Override any font-weight-700 classes on headings to use normal weight */
h1.font-weight-700,
h2.font-weight-700,
h3.font-weight-700,
h4.font-weight-700,
h5.font-weight-700,
h6.font-weight-700,
.display-1.font-weight-700,
.display-2.font-weight-700,
.display-3.font-weight-700,
.display-4.font-weight-700,
.display-5.font-weight-700,
.display-6.font-weight-700 {
  font-weight: 400 !important;
}

/* Force all headings to use normal weight */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.heading-serif,
.alt-font {
  font-weight: 400 !important;
}

/* Footer two-column layout for Services and Industries */
.footer-links {
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #b0b7be;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links li a:hover {
  color: #ffcc53;
}

/* Mobile responsive for footer columns */
@media (max-width: 767px) {
  .footer-links li {
    margin-bottom: 6px;
  }
  
  .footer-links li a {
    font-size: 0.85rem;
  }
}

/* Yellow underline hover effect for specific navbar links only (HOME, BLOG, CONTACT) */
.menu_area .navbar-nav > li > a {
  position: relative;
  overflow: hidden;
}

/* Default - no underline */
.menu_area .navbar-nav > li > a::after {
  display: none;
}

/* Yellow underline only for HOME, ABOUT, SERVICES, CASE STUDIES, BLOG, and CONTACT links */
.menu_area .navbar-nav > li > a[href="index.html"]::after,
.menu_area .navbar-nav > li > a[href="about.html"]::after,
.menu_area .navbar-nav > li > a[href="services.html"]::after,
.menu_area .navbar-nav > li > a[href="case-studies.html"]::after,
.menu_area .navbar-nav > li > a[href="blog-grid.html"]::after,
.menu_area .navbar-nav > li > a[href="contact.html"]::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffcc53; /* Yellow color */
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Service Boxes Styling */
.service-box {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ffcc53;
    background: linear-gradient(135deg, #ffcc53 0%, #FFD127 100%);
}

.service-box:hover .service-title {
    color: #051b2e;
}

.service-box:hover .service-description {
    color: #051b2e;
}

.service-box:hover .read-more-link {
    color: #051b2e;
    font-weight: 600;
}

.service-icon-box {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #051b2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.service-box:hover .service-icon {
    background: #051b2e;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(5, 27, 46, 0.3);
}

.service-box:hover .service-icon i {
    color: #ffcc53;
    transform: rotate(5deg);
}

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

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #051b2e;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.service-description {
    color: #575a7b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    font-family: 'Poppins', sans-serif;
}

.read-more-link {
    color: #051b2e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.read-more-link:hover {
    color: #ffcc53;
    text-decoration: none;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    color: #051b2e;
    transform: translateX(5px);
}

.read-more-link:hover i {
    transform: translateX(8px) rotate(5deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-box {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
}

/* Call to Action Banner - Simple Structure */
.cta-banner-section {
    background: transparent !important;
    border-top: none !important;
    padding: 40px 0;
}

.cta-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.cta-simple h3 {
    font-family: 'Playfair Display', serif !important;
}

.cta-text {
    color: #051b2e;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif !important;
}

.btn-get-in-touch {
    background: #051b2e !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-get-in-touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease-in-out;
}

.btn-get-in-touch:hover::before {
    left: 100%;
}

.btn-get-in-touch:hover {
    background: linear-gradient(135deg, #FFD030 0%, #FFCC4C 100%) !important;
    color: #051b2e !important;
    border: none !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(255, 208, 48, 0.25),
        0 4px 15px rgba(255, 204, 76, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-get-in-touch:focus {
    background: #051b2e !important;
    color: #ffffff !important;
    border: none !important;
    outline: none !important;
}

.btn-get-in-touch:active {
    background: #051b2e !important;
    color: #ffffff !important;
    border: none !important;
}

/* Responsive CTA Banner */
@media (max-width: 768px) {
    .cta-simple {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-text {
        font-size: 1.25rem;
        margin-bottom: 15px;
        font-family: 'Playfair Display', serif !important;
    }
    
    .btn-get-in-touch {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Services column styling - fix alignment */
.services-column {
    padding-left: 0;
}

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

.services-column li a {
    display: block;
    padding: 2px 0;
    transition: all 0.3s ease;
    font-weight: normal;
    text-align: left;
    margin-left: 0;
}

/* Make first item (AI Models) bold/highlighted */
.services-column li:first-child a {
    font-weight: bold;
    color: #00ccff;
}

/* Ensure navigation is always visible */
.navbar-nav {
    display: flex !important;
}

.navbar-nav li {
    margin: 0 15px;
}

.navbar-nav li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar-nav li a:hover {
    color: #ffcc53;
}

/* Yellow text color and underline on hover for HOME, ABOUT, SERVICES, CASE STUDIES, and CONTACT */
.menu_area .navbar-nav > li > a[href="index.html"]:hover,
.menu_area .navbar-nav > li > a[href="index.html"]:focus,
.menu_area .navbar-nav > li > a[href="about.html"]:hover,
.menu_area .navbar-nav > li > a[href="about.html"]:focus,
.menu_area .navbar-nav > li > a[href="services.html"]:hover,
.menu_area .navbar-nav > li > a[href="services.html"]:focus,
.menu_area .navbar-nav > li > a[href="case-studies.html"]:hover,
.menu_area .navbar-nav > li > a[href="case-studies.html"]:focus,
.menu_area .navbar-nav > li > a[href="blog-grid.html"]:hover,
.menu_area .navbar-nav > li > a[href="blog-grid.html"]:focus,
.menu_area .navbar-nav > li > a[href="contact.html"]:hover,
.menu_area .navbar-nav > li > a[href="contact.html"]:focus {
  color: #ffcc53 !important; /* Yellow text color */
}

.menu_area .navbar-nav > li > a[href="index.html"]:hover::after,
.menu_area .navbar-nav > li > a[href="index.html"]:focus::after,
.menu_area .navbar-nav > li > a[href="about.html"]:hover::after,
.menu_area .navbar-nav > li > a[href="about.html"]:focus::after,
.menu_area .navbar-nav > li > a[href="services.html"]:hover::after,
.menu_area .navbar-nav > li > a[href="services.html"]:focus::after,
.menu_area .navbar-nav > li > a[href="case-studies.html"]:hover::after,
.menu_area .navbar-nav > li > a[href="case-studies.html"]:focus::after,
.menu_area .navbar-nav > li > a[href="blog-grid.html"]:hover::after,
.menu_area .navbar-nav > li > a[href="blog-grid.html"]:focus::after,
.menu_area .navbar-nav > li > a[href="contact.html"]:hover::after,
.menu_area .navbar-nav > li > a[href="contact.html"]:focus::after {
  width: 100%;
}

/* Optimized Video Preloader Animation - SEO Friendly */
#video-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  visibility: visible;
  will-change: opacity, visibility;
  transform: translateZ(0); /* Force GPU acceleration */
  backface-visibility: hidden; /* Prevent flickering */
}

#video-preloader.fade-out {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

#video-preloader video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  will-change: transform;
}

/* Optimized main content transition */
.main-wrapper {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.main-wrapper.loaded {
  opacity: 1;
}

/* Responsive adjustments for preloader */
@media (max-width: 768px) {
  #video-preloader video {
    width: 80%;
    height: auto;
  }
}

@media (max-width: 480px) {
  #video-preloader video {
    width: 90%;
    height: auto;
  }
}

/* Preloader fallback for better accessibility */
#video-preloader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #ffcc53;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

#video-preloader.fallback::before {
  display: block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide Blog links temporarily - can be easily restored by removing this rule */
.navbar-nav li a[href*="blog"],
.navbar-nav ul li a[href*="blog"],
.navbar-nav li a[href="blog.html"],
.navbar-nav li a[href="blog-grid.html"],
.navbar-nav ul li a[href="blog.html"],
.navbar-nav ul li a[href="blog-grid.html"],
#nav li a[href*="blog"],
#nav ul li a[href*="blog"],
.menu_area li a[href*="blog"],
.menu_area ul li a[href*="blog"],
/* Additional comprehensive selectors */
li a[href*="blog"],
li a[href="blog.html"],
li a[href="blog-grid.html"],
ul li a[href*="blog"],
ul li a[href="blog.html"],
ul li a[href="blog-grid.html"],
/* Navigation specific */
nav li a[href*="blog"],
nav ul li a[href*="blog"],
/* Any element with blog in href */
a[href*="blog"],
a[href="blog.html"],
a[href="blog-grid.html"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  position: absolute !important;
  left: -9999px !important;
}

/* AI-First Approach Banner Styles */
.ai-banner-section {
    background: #051B2E;
    position: relative;
    overflow: hidden;
}

.ai-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.ai-banner-section .container {
    position: relative;
    z-index: 2;
}

.ai-banner-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.ai-banner-description {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.ai-testimonial {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.quote-mark {
    text-align: left;
}

.quote-symbol {
    font-size: 4rem;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1;
    opacity: 0.8;
}

.ai-quote {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.author-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.author-title {
    color: #cbd5e0;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design for AI Banner */
@media (max-width: 991.98px) {
    .ai-banner-title {
        font-size: 2rem;
    }
    
    .ai-banner-description {
        font-size: 1rem;
    }
    
    .ai-quote {
        font-size: 1rem;
    }
    
    .ai-testimonial {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .ai-banner-title {
        font-size: 1.75rem;
    }
    
    .quote-symbol {
        font-size: 3rem;
    }
    
    .ai-testimonial {
        padding: 1.25rem;
    }
}

/* Our Expertise & Vision Section Styles */
.expertise-vision-section {
    background: #051b2e;
    position: relative;
    overflow: hidden;
}

.expertise-content {
    background: url('../img/bg/bg-04.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    position: relative;
}

.expertise-text {
    max-width: 600px;
}

.expertise-subtitle {
    color: #051b2e !important;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    display: block;
}

.expertise-title {
    color: #051b2e !important;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.expertise-description {
    color: #2d4a69 !important;
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Vision & Mission Banner Section */
.vision-mission-banner-section {
    padding: 0;
    margin-bottom: 0;
}

.vision-mission-image {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.vision-mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.image-overlay-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.image-overlay-text p {
    font-size: 1.2rem;
    margin: 0;
    color: white;
    opacity: 0.9;
}

.vision-mission-container {
    position: relative;
    height: 500px;
    background: #051B2E;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.vision-content, .mission-content {
    background: transparent;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 0 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
}

.vision-content.active, .mission-content.active {
    opacity: 1;
    transform: translateX(0);
}

.vision-icon-circle, .mission-icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vision-icon-circle i, .mission-icon-circle i {
    font-size: 2rem;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.vision-icon-inner {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
}

.vision-icon-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #051B2E;
    border-radius: 50%;
}

.vision-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.vision-description {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    max-width: 300px;
}

.vision-navigation {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: #ffffff;
    color: #1a365d;
}

/* Mission Styles */
.mission-icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.mission-icon-inner {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
}

.mission-icon-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #051B2E;
    border-radius: 50%;
}

.mission-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.mission-description {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    max-width: 300px;
}

/* Updated Navigation Styles */
.vision-mission-navigation {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-dots {
    display: flex;
    gap: 0.5rem;
}

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

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.dot:hover {
    background: #ffffff;
    transform: scale(1.1);
}

/* Responsive Design for Expertise & Vision Section */
@media (max-width: 991.98px) {
    .expertise-content {
        padding: 3rem 2rem;
        min-height: 400px;
    }
    
    .vision-content {
        padding: 3rem 2rem;
        min-height: 400px;
    }
    
    .expertise-title {
        font-size: 2rem;
    }
    
    .vision-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .expertise-content {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .vision-content {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .expertise-title {
        font-size: 1.75rem;
    }
    
    .vision-title {
        font-size: 1.5rem;
    }
    
    .expertise-description {
        font-size: 1rem;
    }
}

/* Typing Animation */
.typing-animation {
    overflow: hidden;
    border-right: 2px solid #ffffff;
    white-space: nowrap;
    animation: typing-loop 6s steps(30, end) infinite, blink-caret 1s step-end infinite;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    display: inline-block;
    width: 0;
}

@keyframes typing-loop {
    0% {
        width: 0;
    }
    25% {
        width: 100%;
    }
    75% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

@keyframes blink-caret {
}

/* Case Studies Blog Style */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.case-study-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.case-study-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(5, 27, 46, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-content {
    padding: 25px;
}

.case-study-content h4 {
    color: #051B2E;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.case-study-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.case-study-date {
    font-weight: 600;
}

.case-study-read-time {
    font-style: italic;
}

.btn-read-more {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #dc3545;
}

.btn-read-more:hover {
    background: transparent;
    color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Industry Filter Styling */
.industry-filters {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.industry-filter {
    display: block;
    padding: 12px 20px;
    background: #f8f9fa;
    color: #051B2E;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-filter:hover,
.industry-filter.active {
    background: #051B2E;
    color: white;
    border-color: #051B2E;
}

.industries-sidebar h3 {
    color: #051B2E;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-study-content {
        padding: 20px;
    }
    
    .case-study-content h4 {
        font-size: 18px;
    }
}

.case-study-full-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.case-study-full-content h5 {
    color: #051B2E;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 20px;
}

.case-study-full-content h5:first-child {
    margin-top: 0;
}

.case-study-full-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.case-study-full-content li {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate-fade {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.scroll-animate-fade.animate-in {
    opacity: 1;
}

/* Staggered animations for multiple elements */
.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
    transition-delay: 0.4s;
}

.scroll-animate-delay-5 {
    transition-delay: 0.5s;
}

.scroll-animate-delay-6 {
    transition-delay: 0.6s;
}

/* Apply animations to case study cards */
.case-study-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.case-study-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Apply animations to page title */
.page-title-section h1 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.page-title-section h1.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Apply animations to section titles */
.section-title02 h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-title02 h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Apply animations to industry filters */
.industry-filter {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.industry-filter.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Team Section Alignment Fix */
.team-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    margin: 0 -15px !important;
}

.team-section .col-md-6,
.team-section .col-xl-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
    padding: 0 15px !important;
    margin-bottom: 2rem !important;
    display: flex !important;
}

.team-section .team-style01 {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 2rem 1.5rem !important;
    border-radius: 10px !important;
}

/* Ensure all team cards have same height */
.team-section .team-style01 {
    min-height: 350px !important;
}

/* Team card content alignment */
.team-section .team-style01 .pt-4 {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

/* Team card text alignment */
.team-section .team-style01 h3,
.team-section .team-style01 .small {
    text-align: center !important;
    width: 100% !important;
}

/* Force team card font sizes - More specific selectors */
.team-section .team-style01 h3,
.team-section .team-style01 h3 a {
    font-size: 1rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.team-section .team-style01 .small {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.3rem !important;
    text-align: center !important;
}

.team-section .team-style01 .small.text-muted.fst-italic {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    text-align: center !important;
    font-style: italic !important;
}

/* Override any existing styles */
.team-section .bg-light .team-style01 h3,
.team-section .bg-light .team-style01 .small {
    font-size: 1rem !important;
    text-align: center !important;
}

.team-section .bg-light .team-style01 .small {
    font-size: 0.8rem !important;
}

.team-section .bg-light .team-style01 .small.text-muted.fst-italic {
    font-size: 0.75rem !important;
}

/* Ensure consistent text alignment for all team cards */
.team-section .team-style01 .pt-4 h3,
.team-section .team-style01 .pt-4 .small {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Fix specific alignment issues */
.team-section .team-style01 .pt-4 {
    padding-top: 1rem !important;
    text-align: center !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .team-section .col-md-6,
    .team-section .col-xl-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 767px) {
    .team-section .col-md-6,
    .team-section .col-xl-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Force center alignment for team section */
.team-style01,
.team-style01 h3,
.team-style01 .small,
.team-style01 div {
    text-align: center !important;
}

/* Team section title alignment - STRONG OVERRIDE */
.team-section .section-title02 {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.team-section .section-title02 h2 {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
}

.team-section .section-title02 .sm-title {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
}

/* Home page team section title alignment - SPECIFIC OVERRIDE */
.team-section .section-title02.mb-2-3.mb-md-6.text-center {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.team-section .section-title02.mb-2-3.mb-md-6.text-center h2 {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
}

.team-section .section-title02.mb-2-3.mb-md-6.text-center .sm-title {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
}

/* Force center alignment for ALL section titles */
.section-title02 {
    text-align: center !important;
}

.section-title02 h2 {
    text-align: center !important;
    margin: 0 auto !important;
}

.section-title02 .sm-title {
    text-align: center !important;
    margin: 0 auto !important;
}

/* Specific override for services section title */
.py-5.py-lg-6 .section-title02 h2 {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
}

/* Extra specific rule for Yuva Services title */
.section-title02 h2.mb-0.ls-minus-2px.display-5.font-weight-800.lh-1.text-center {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
    justify-content: center !important;
}

/* ===================================================================
   CONSOLIDATED FIXES - ALL IMPROVEMENTS IN ONE FILE
   =================================================================== */

/* ===================================================================
   CRITICAL ALIGNMENT FIXES
   =================================================================== */

/* Hero Section Alignment Fixes */
.hero-section .banner-button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.hero-section .butn-style1,
.hero-section .butn-style2 {
    margin: 0.5rem !important;
    flex: 0 0 auto !important;
}

/* Team Section Alignment Fixes */
.team-section .team-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    height: 100% !important;
}

.team-section .team-card .team-image {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
}

.team-section .team-card .team-info {
    padding: 1.5rem !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* About Section Layout Fixes */
.about-section .about-content {
    display: flex !important;
    align-items: center !important;
    min-height: 500px !important;
}

.about-section .about-image {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
}

/* Statistics Section Alignment */
.statistics-section .stat-item {
    text-align: center !important;
    padding: 2rem 1rem !important;
}

.statistics-section .stat-number {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #ffcc53 !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
}

.statistics-section .stat-label {
    font-size: 1.1rem !important;
    color: #051b2e !important;
    font-weight: 600 !important;
}

/* ===================================================================
   CONTACT PAGE VISIBILITY FIXES
   =================================================================== */

/* Fix contact details section */
.contact-details {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 4rem 3rem !important;
    border-radius: 25px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    margin-top: 2rem !important;
    max-width: 100% !important;
}

/* Fix contact info items */
.contact-info {
    background: #ffffff !important;
    padding: 2rem !important;
    border-radius: 20px !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    min-height: 120px !important;
    align-items: center !important;
    display: flex !important;
    gap: 1.5rem !important;
}

.contact-info:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

/* Fix contact info text visibility */
.contact-info h5 {
    color: #051b2e !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
    text-shadow: none !important;
    text-align: left !important;
    line-height: 1.4 !important;
}

.contact-info h6 {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    text-shadow: none !important;
    text-align: left !important;
}

/* Fix contact icons */
.contacts-icon {
    background: #ffcc53 !important;
    padding: 1.5rem !important;
    border-radius: 50% !important;
    margin-right: 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 80px !important;
    height: 80px !important;
    flex-shrink: 0 !important;
    align-self: center !important;
}

.contacts-icon img {
    width: 40px !important;
    height: 40px !important;
    filter: none !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) !important;
}

/* Fix contact section title */
.section-title02 .sm-title {
    color: #ffcc53 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.section-title02 h2 {
    color: #051b2e !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    text-shadow: none !important;
}

/* Contact form fixes */
.contact-form {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 3rem 2rem !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.form-group label {
    color: #051b2e !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
    text-shadow: none !important;
}

.form-control {
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    color: #051b2e !important;
    font-size: 1rem !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    border-color: #ffcc53 !important;
    box-shadow: 0 0 0 3px rgba(255, 204, 83, 0.1) !important;
    background: #ffffff !important;
}

.form-control::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.required {
    color: #ff4444 !important;
    font-weight: bold !important;
}

.btn-primary,
.butn-style1 {
    background: #ffcc53 !important;
    border: 2px solid #ffcc53 !important;
    color: #051b2e !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    text-shadow: none !important;
}

.btn-primary:hover,
.butn-style1:hover {
    background: #051b2e !important;
    border-color: #051b2e !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Map container fixes */
.map-container {
    background: #ffffff !important;
    padding: 2rem !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    margin: 3rem 0 !important;
}

.map-container iframe {
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Social media icons fixes */
.follow-company-icon2 {
    margin-top: 2rem !important;
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
}

.follow-company-icon2 a {
    background: #ffcc53 !important;
    color: #051b2e !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.follow-company-icon2 a:hover {
    background: #051b2e !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.follow-company-icon2 a i {
    font-size: 1.2rem !important;
}

/* Contact section background fixes */
.contact-section {
    background: #f8f9fa !important;
    padding: 4rem 0 !important;
}

.contact-section.bg-img {
    background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)), url('../img/banner/contact-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

/* Perfect text alignment fixes */
.contact-info .flex-grow-1 {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    height: 100% !important;
    padding-left: 0 !important;
}

/* Mobile responsive fixes for contact */
@media screen and (max-width: 767px) {
    .contact-details,
    .contact-form {
        padding: 2rem 1.5rem !important;
        margin: 1rem 0 !important;
    }
    
    .contact-info {
        padding: 1.5rem !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .contact-info .flex-grow-1 {
        text-align: center !important;
        align-items: center !important;
    }
    
    .contact-info h5,
    .contact-info h6 {
        text-align: center !important;
    }
    
    .contacts-icon {
        margin-right: 0 !important;
        margin-bottom: 1.5rem !important;
        min-width: 70px !important;
        height: 70px !important;
    }
    
    .contacts-icon img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .section-title02 h2 {
        font-size: 1.5rem !important;
        text-align: center !important;
    }
    
    .section-title02 .sm-title {
        text-align: center !important;
    }
    
    .map-container {
        padding: 1rem !important;
    }
    
    .map-container iframe {
        width: 100% !important;
        height: 300px !important;
    }
    
    .follow-company-icon2 {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }
    
    .follow-company-icon2 a {
        width: 45px !important;
        height: 45px !important;
    }
}

/* Tablet devices */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .contact-details,
    .contact-form {
        padding: 2.5rem 2rem !important;
    }
    
    .contact-info {
        padding: 1.25rem !important;
    }
    
    .section-title02 h2 {
        font-size: 1.8rem !important;
    }
    
    .map-container iframe {
        height: 350px !important;
    }
}

/* Desktop devices */
@media screen and (min-width: 992px) {
    .contact-details,
    .contact-form {
        padding: 3rem 2rem !important;
    }
    
    .contact-info {
        padding: 1.5rem !important;
    }
    
    .section-title02 h2 {
        font-size: 2rem !important;
    }
    
    .map-container iframe {
        height: 400px !important;
    }
}

/* Dark mode compatibility for contact */
@media (prefers-color-scheme: dark) {
    .contact-details,
    .contact-form,
    .contact-info,
    .map-container {
        background: #ffffff !important;
        color: #051b2e !important;
    }
    
    .contact-info h5,
    .contact-info h6,
    .form-group label,
    .section-title02 h2 {
        color: #051b2e !important;
    }
    
    .form-control {
        background: #ffffff !important;
        color: #051b2e !important;
        border-color: #e0e0e0 !important;
    }
    
    .form-control::placeholder {
        color: #999 !important;
    }
}

/* Force visibility overrides for contact */
.contact-details *,
.contact-info *,
.contact-form *,
.map-container * {
    color: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-details,
.contact-info,
.contact-form,
.map-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* END OF CONSOLIDATED FIXES */

/* ===================================================================
   HEADER STYLING - DARK BLUE TRANSPARENT BAR
   =================================================================== */

/* Header styling for all pages */
.header-style1 {
    background: rgba(5, 27, 46, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Navigation menu styling */
.navbar-nav {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-nav li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-nav a {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 1rem 0.5rem !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.5px !important;
}

.navbar-nav a:hover {
    color: #ffcc53 !important;
}

/* Active page indicator - orange underline */
.navbar-nav a.active,
.navbar-nav li.active a {
    color: #ffffff !important;
}

.navbar-nav a.active::after,
.navbar-nav li.active a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 60% !important;
    height: 3px !important;
    background: #ffcc53 !important;
    transform: translateX(-50%) !important;
    border-radius: 2px !important;
}

/* Logo styling */
.navbar-brand img {
    height: 50px !important;
    width: auto !important;
    max-height: 50px !important;
}

/* Header container */
.navbar-default {
    background: transparent !important;
    padding: 0.5rem 0 !important;
}

/* Menu area styling */
.menu_area {
    background: transparent !important;
}

/* Breadcrumb styling */
.breadcrumb-style {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
}

.breadcrumb-style a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.breadcrumb-separator {
    color: #ffcc53 !important;
    margin: 0 0.5rem !important;
}

/* Mobile navigation fixes */
@media screen and (max-width: 991px) {
    .navbar-nav {
        background: rgba(5, 27, 46, 0.98) !important;
        padding: 1rem !important;
        border-radius: 0 0 10px 10px !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
    }
    
    .navbar-nav.show {
        display: flex !important;
    }
    
    .navbar-nav li {
        width: 100% !important;
        text-align: center !important;
    }
    
    .navbar-nav a {
        display: block !important;
        padding: 1rem !important;
        border-radius: 5px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        margin-bottom: 0.25rem !important;
    }
    
    .navbar-nav a:hover {
        background: rgba(255, 204, 83, 0.2) !important;
        color: #ffcc53 !important;
    }
    
    .navbar-nav a.active::after,
    .navbar-nav li.active a::after {
        display: none !important;
    }
}

/* Tablet devices */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav {
        gap: 1.5rem !important;
    }
    
    .navbar-nav a {
        font-size: 0.9rem !important;
        padding: 0.75rem 0.5rem !important;
    }
}

/* Desktop devices */
@media screen and (min-width: 992px) {
    .navbar-nav {
        gap: 2rem !important;
    }
    
    .navbar-nav a {
        font-size: 1rem !important;
        padding: 1rem 0.5rem !important;
    }
}

/* END OF HEADER STYLING */
