.theme-color-yellow {
  color: #f6921e !important;
}

.theme-bg-color-yellow {
  background: #f6921e !important;
}

.theme-color-dark-blue {
  color: #131921 !important;
}

.green-theme-color {
  color: #131921 !important;
}

.theme-color-blue {
  color: #377bbf !important;
}

.theme-color-gray {
  color: #999b9d !important;
}

.logo-image {
  max-width: 250px;
  height: auto;
}

#contact-form label {
  color: #131921;
}

/* section.section.about {
  background: url("../images/bg/best-seller.webp") no-repeat;
  background-size: cover;
  background-position-x: right;
} */
section.section.about {
  background: #f9f9f9;
}

.section-bg {
  background-image: url("../images/bg/section-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-bg-2 {
  background-image: url("../images/bg/section-bg-2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-footer-shadow {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
  transition: all 0.3scubic-bezier(.25, .8, .25, 1);
  border-bottom: 2px solid #7a7a7a17;
}

/* Add this CSS to your stylesheet */
.banner {
  opacity: 0;
  animation: fadeIn 1s forwards;
  /* Animation for the entire banner */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.block {
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.5s forwards 0.5s;
  /* Delay for the block */
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

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

.btn-container {
  transform: translateY(10px);
  opacity: 0;
  animation: slideUp 0.5s forwards 1s;
  /* Delay for the button */
}

/* Add paginaton services */
.service-section-pagination {
  display: flex;
  justify-content: center;
}

.service-section-pagination .page-link {
  color: #131921;
  /* Change color to match your theme */
  border-radius: 50%;
  margin: 0 6px;
}

.service-section-pagination .page-item.active .page-link {
  background-color: #131921;
  color: #fff;
  border-color: #131921;
}

.page-link {
  padding: 1rem 1.5rem;
}

.btn-main-3 {
  background: #ffffff;
  color: #131921;
  border-color: #131921;
}

.btn-main-4 {
  background: #131921;
  color: #ffffff;
  border-color: #131921;
}

.btn-main-4:hover {
  background: #F6921E;
  color: #131921;
  border-color: #F6921E;
}

/* Testimonial Card */

.snip1390 h2 {
  font-size: 30px;
}

figure.snip1390 {
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  /* max-width: 315px; */
  width: 100%;
  color: #131921;
  text-align: center;
  font-size: 16px;
  background-color: #F6921E;
  padding: 30px;
  background-image: linear-gradient(-25deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50px;
}

figure.snip1390 *,
figure.snip1390 *:before,
figure.snip1390 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

figure.snip1390 figcaption {
  width: 100%;
}

figure.snip1390 h2,
figure.snip1390 h4,
figure.snip1390 blockquote {
  margin: 0;
}

figure.snip1390 h2,
figure.snip1390 h4 {
  font-weight: 300;
}

figure.snip1390 h2 {
  color: #ffffff;
}

figure.snip1390 h4 {
  color: #a6a6a6;
}

figure.snip1390 blockquote {
  font-size: 1em;
  padding: 45px 20px 40px 50px;
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: inset -1.4px -1.4px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
}

figure.snip1390 blockquote:before {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 70px;
  opacity: 0.25;
  font-style: normal;
  top: 0px;
  left: 20px;
}

figure.snip1390 .profile {
  width: 100px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
  border: solid 5px #A6A57A;
}

/* BLOG SLIDER */

.card-wrapper {
  max-width: 1100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
}

.card-list .card-item {
  list-style: none;
}

.card-list .card-item .card-link {
  display: block;
  background: #fff;
  padding: 18px;
  user-select: none;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
  cursor: grabbing;
}

.card-list .card-item .card-link:hover {
  border-color: #5372F0;
}

.card-list .card-link .card-image {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-list .card-link .badge {
  color: #5372F0;
  width: fit-content;
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 50px;
  font-weight: 500;
  background: #DDE4FF;
  margin: 16px 0 18px;
}

.card-list .card-link .badge-designer {
  color: #B22485;
  background: #F7DFF5;
}

.card-list .card-link .badge-marketer {
  color: #B25A2B;
  background: #FFE3D2;
}

.card-list .card-link .badge-gamer {
  color: #205C20;
  background: #D6F8D6;
}

.card-list .card-link .badge-editor {
  color: #856404;
  background: #fff3cd;
}

.card-list .card-link .card-title {
  color: #000;
  font-size: 1.19rem;
  font-weight: 600;
}

.card-list .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #5372F0;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #5372F0;
  transform: rotate(-45deg);
  transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
  color: #fff;
  background: #5372F0;
}

.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #5372F0;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.card-wrapper .swiper-slide-button {
  color: #5372F0;
  margin-top: -35px;
}

/* Animation Marquee */

.marquee-container {
  box-sizing: border-box;
}

.marquee-container {
  /* min-height: 100vh; */
  --space: 5px;
}

.marquee {
  --duration: 10s;
  --gap: var(--space);
  display: flex;
  /* overflow: hidden; */
  overflow: auto;
  user-select: none;
  gap: var(--gap);
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  /* animation: scroll var(--duration) linear infinite; */
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee__group img {
  max-width: 170px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Responsive media query code for small screens */
@media (max-width: 768px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }

  .card-wrapper .swiper-slide-button {
    display: none;
  }
}

/* @import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

body {
  font-size: 17px;
  line-height: 30px;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
} */

.creative-testimonial--slider {
  /* background-image: linear-gradient(to bottom,
      #f7f7ff,
      #f4f4fb,
      #f8f7fc,
      #fbfbfe,
      #ffffff); */
  padding: 50px 0px;
}

.creative-testimonial--slider .testimonial-inner {
  /* max-width: 1240px; */
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-inner .testimonial-heading {
  text-align: center;
  max-width: 60%;
  margin: auto;
  font-size: 2.813rem;
  line-height: 3.125rem;
  letter-spacing: -1px;
  margin-top: 0px;
  margin-bottom: 50px;
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 6%;
}

.swiper-slide .swiper-slide--inner {
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
  align-items: center;
  column-gap: 50px;
  position: relative;
  overflow-x: hidden;
}

.swiper-slide--inner .testimonial-detail img {
  height: 35px;
}

.slide-avatar img {
  max-width: 200px;
  border-radius: 50%;
}

.swiper-slide--inner .testimonial-detail p {
  margin: 0px;
  color: #242e45;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 5px;
}

.swiper-slide--inner .testimonial-detail span {
  color: #f6921e;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  line-height: normal;
}

.company-details--row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.company-details--row .company-box {
  flex: 0 0 auto;
  width: 33.33333333%;
  padding: 0px 15px;
}

.company-details--row .company-box .company-box-inner {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px 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);
  background: #fff;
  text-align: center;
  border-radius: 6px;
}

.company-box-inner .company-box-top {
  padding-top: 10%;
  padding-bottom: 10%;
  border-bottom: 1px solid #dee2e6;
}

.company-box-inner .company-box-top img {
  height: 40px;
}

.company-box-inner .company-box-bottom {
  padding: 15px;
}

.company-box-inner .company-box-bottom span {
  font-size: 15px;
  color: #878898;
  line-height: 30px;
}

.company-box-inner .company-box-bottom span strong {
  color: #242e45;
}

/* ======== Sticky Footer ========= */
.sticky-footer {
  position: fixed;
  width: 100%;
  background: #333;
  z-index: 999;
  bottom: 0;
}

.sticky-footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  padding-right: 15px;
}

.creditd a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.social ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0px;
  column-gap: 10px;
  align-items: center;
}

.social ul li a {
  display: flex;
  background: #fff;
  height: 30px;
  width: 30px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}

.social ul li a img {
  max-width: 20px;
}

/*--------------------------------------------------------------
# Start Single Service Details Section CSS
--------------------------------------------------------------*/
.service-details {
  color: #212529;
  background-color: #eff0f3;
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: #ffffff;
  background-color: #F6921E;
}

.service-details .services-list a.active i {
  background-color: #F6921E;
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: #F6921E;
  color: #fff;
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 20px;
  font-weight: 300;
  color: #F6921E;
}

.service-details h3.service-title {
  font-size: 50px;
  font-weight: 700;
  color: #F6921E;
}

.service-img {
  width: 200px;
  background-color: #ffe194;
  border-radius: 10px;
  margin: 30px;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

.sidebar-sticky {
  position: sticky;
  top: 20px;
}

@media (min-width: 1200px) {
  .custom-container {
    max-width: 1440px !important;
  }
}

/*--------------------------------------------------------------
# End Single Service Details Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Waves Animation Section CSS
--------------------------------------------------------------*/

/* .hero_area {
  position: relative;
  height: 100px;
  background-color: #F6921E;
}

.waves {
  position: absolute;
  width: 100%;
  height: 15vh;
  min-height: 100px;
  max-height: 150px;
  bottom: 0;
  left: 0;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/*Shrinking for mobile*/

@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}

*/
/*--------------------------------------------------------------
# End Waves Animation Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Footer Section CSS
--------------------------------------------------------------*/

/* footer .title {
  color: #F6921E;
  margin-bottom: 30px;
  font-size: 20px;
}

footer p {
  margin-bottom: 6px;
}

footer .justify-content-evenly {
  justify-content: space-evenly;
}

footer i.fab {
  font-size: 30px;
} */

/* footer section start */

#footer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

#footer1 {
  background: #ffffff;
  background-image: url(https://arena.km.ua/wp-content/uploads/3538533.jpg);
  padding-bottom: 30px;
}

#footer {
  background: #ffffff;
  background-image: url(../images/cards/v748-toon-111.png);
  padding-top: 30px;
  padding-bottom: 30px;
}

.social-links h2 {
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.social-links img {
  padding-bottom: 25px;
}

.social-icons {
  display: flex;
  color: #777777;
}

.social-icons a {
  font-size: 12px;
  color: #777777;
}

.social-icons a:hover {
  color: #000;
}

#footer .footer-top-spacing {
  margin-top: 30px;
}

.social-icons a i {
  box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  color: #131921;
  font-size: 16px;
  background: #f6921e;
  margin-right: 12px;
}

.useful-link h2 {
  font-size: 20px;
  font-weight: 600;
  color: #131921;
}

.useful-link img {
  padding-bottom: 15px;
}

.use-links {
  line-height: 32px;
}

.use-links li i {
  font-size: 14px;
  padding-right: 8px;
  color: #898989;
}

.use-links li a {
  color: #303030;
  font-size: 15px;
  font-weight: 500;
  color: #777777;
}

.use-links li a:hover {
  color: #000;
}

.address h2 {
  font-size: 20px;
  font-weight: 600;
  color: #131921;
}

.address img {
  padding-bottom: 15px;
}

.address-links li a {
  color: #303030;
  font-size: 15px;
  font-weight: 500;
  color: #777777;
}

.address-links li i {
  font-size: 16px;
  padding-right: 8px;
  color: #F6921E;
}

.address-links li i:nth-child(1) {
  padding-top: 9px;
}

.address-links .address1 {
  font-weight: 500;
  font-size: 15px;
  display: flex;
}

.address-links {
  line-height: 32px;
  color: #777777;
}

.copy-right-sec {
  padding: 1.8rem;
  background: #F6921E;
  color: #fff;
  text-align: center;
}

.copy-right-sec a {
  color: #131921;
  font-weight: 500;
}

#footer li {
  list-style: none;
  padding: 6px 0;
}

.footer-about,
.footer-p {
  padding: 6px 0;
  margin: 0;
}

/* footer section end */

/*--------------------------------------------------------------
# End Footer Section CSS
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Start Privacy Policy Section CSS
--------------------------------------------------------------*/

/* remove the focus from all input fields.*/
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

.termsAndConditionsHeading {
  margin: 15px 0;
  font-size: 36px;
  font-weight: 600;
}

.termsParagraphIntro {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.spangleWelcome {
  font-weight: 500;
}

.serviceLeadingSection {
  width: 80%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.sn {
  font-size: 32px;
  padding-right: 5px;
}

.st {
  font-size: 32px;
}

.spl {
  margin-top: 15px;
  margin-bottom: 15px;

}

.serviceInfoContainer {
  position: relative;
  width: 100%;
}

.serviceLead {
  font-weight: 700;
  margin-left: 15px;
  margin-top: 15px;
  margin-block-end: 5px;

}

.serviceDetails {
  margin-left: 15px;
}

.displayNone {
  display: none;
}

.secionLine {
  height: 40px;
  width: 5px;

  position: absolute;
  top: 7px;
}

/*Font Colours below*/
.lightGreen {
  color: rgb(85, 189, 134);
}

.blue {
  color: #F6921E;
}

.orange {
  color: #ff7730;
}

.purple {
  color: #2a0073
}

/*Set the colours for the lines*/

.lineColorGreen {
  background-image: linear-gradient(to right bottom, rgb(85, 189, 134), rgb(11, 103, 92));
}

.lineColorBlue {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}

.lineColorOrange {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}

.lineColorPurple {
  background-image: linear-gradient(to bottom right, #b25f88, #2a0073)
}

.closeTerms {
  border-bottom: 1px solid black;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: .8s;
  animation-timing-function: ease-out;
  z-index: 1001;
}

@keyframes fadeIn {
  0% {

    opacity: 0;
  }

  100% {

    opacity: 1;
  }
}

/*--------------------------------------------------------------
# End Privacy Policy Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Testimonial Bulk Section CSS
--------------------------------------------------------------*/

.floating {
  animation-name: floating;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 0px;
  margin-top: 0px;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

.base-template__wrapper {
  max-width: 100%;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #F6921Ee0;
}

/**
* Slider Instance
*/

.swiper {
  width: 100%;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  height: auto !important;
}

.horizontal-ticker {
  /* margin: 0 -20px; */
  display: flex;
  flex-direction: column;
  row-gap: 2.85vw;
}

@media screen and (max-width: 767.9px) {
  .horizontal-ticker {
    row-gap: 15px;
  }
}

/**
* Slider Slides
*/

.horizontal-ticker__slide {
  position: relative !important;
  width: 15.625vw !important;
  aspect-ratio: 300 / 205;
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(50px);
}

@media screen and (max-width: 767.9px) {
  .horizontal-ticker__slide {
    width: 150px;
  }
}

.horizontal-ticker__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease-out;
}

.horizontal-ticker__slide img:last-child {
  position: absolute;
  inset: 0;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .horizontal-ticker__slide:hover img:last-child {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# End Testimonial Bulk Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Brand Publishing Section CSS
--------------------------------------------------------------*/

:root {
  --random-duration: 0s;
  --random-start-X: 0px;
  --ramdom-start-Y: 0px;
}

.brand-logos {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  font-family: Futura, Avenir, Verdana;
  background: #4F4F4F;
  color: #DFDFDF
}

.brand-logos {
  padding: 32px 0;
  flex: 1 0 auto;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #F6921E75 0%, #F6921E 100%);
  display: flex
}

#app-info {
  z-index: 1;
  opacity: 0.9;
  padding: 16px;
  height: 240px;
  width: 240px;
  color: #BFBFBF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: Center;
  justify-content: center;
  text-align: Center;
  background: radial-gradient(circle at center, #F6921E75 0%, #F6921E 90%, #00102000 100%);
}

#app-info * {
  margin: 4px
}

#page-background {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background: transparent;
}

.brand-logo {
  width: 150px;
  opacity: 0;
  display: inline;
  position: absolute;
  animation: move 1 ease-in 0s;
  transform-origin: -25% -25%;
}

#img-html5 {
  width: 96px;
}

#img-css3 {
  width: 120px;
}

#img-js {
  width: 72px;
}

#img-svg {
  width: 72px;
}

@keyframes move {
  25% {
    opacity: 0.5
  }

  50% {
    transform: scale(0.75)
  }

  100% {
    top: 50%;
    left: 50%;
    opacity: 0.9;
    transform: scale(0)
  }
}

/*--------------------------------------------------------------
# End Brand Publishing Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Top Header Text Animation CSS
--------------------------------------------------------------*/

#scroll-text {
  text-align: right;

  /* animation properties */
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);

  -moz-animation: my-animation 15s linear infinite;
  -webkit-animation: my-animation 15s linear infinite;
  animation: my-animation 15s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(-100%);
  }

  to {
    -moz-transform: translateX(100%);
  }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(100%);
  }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

/*--------------------------------------------------------------
# End Top Header Text Animation CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start About Time Line CSS
--------------------------------------------------------------*/


.timeline {
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/* Main timeline vertical bar */
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  /* Adjusted to align with dot center */
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f6921e;
}

.timeline-item {
  position: relative;
  padding: 20px;
  margin: 20px 0;
  margin-left: 35px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Circle connector */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  /* Adjusted to center on bar */
  top: 24px;
  width: 12px;
  height: 12px;
  background: #f6921e;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Horizontal connector line */
.timeline-item::after {
  content: '';
  position: absolute;
  left: -17px;
  /* Adjusted to connect from dot edge */
  top: 29px;
  width: 17px;
  height: 2px;
  background: #f6921e;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.timeline-date {
  color: #ffffff;
  background: #040000;
  font-size: 16px;
  border-radius: 6px;
  padding: 1px 10px;
  border: 1px solid #f6921e;
}

.timeline-title {
  color: #f6921e;
  font-size: 1.125rem;
  font-weight: 600;
}

.timeline-content {
  color: #131921;
  line-height: 1.5;
}

.timeline-item {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgb(246 146 30 / 24%));
}

/* .timeline-item:nth-child(1) {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 204, 153, 0.4));
}

.timeline-item:nth-child(2) {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(153, 204, 255, 0.4));
}

.timeline-item:nth-child(3) {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(186, 230, 173, 0.4));
}

.timeline-item:nth-child(4) {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 182, 193, 0.4));
}

.timeline-item:nth-child(5) {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(214, 191, 250, 0.4));
}

.timeline-item:nth-child(6) {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgb(116 233 253 / 40%));
}

.timeline-item:nth-child(7) {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgb(208 220 120 / 66%));
}

.timeline-item:nth-child(8) {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgb(177 188 245 / 87%));
} */

.timeline-item:hover::before {
  background: #131921;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .timeline::before {
    left: 19px;
    /* Adjusted for mobile alignment */
  }

  .timeline-item {
    margin-left: 30px;
  }

  .timeline-item::before {
    left: -24px;
    /* Adjusted for mobile alignment */
  }

  .timeline-item::after {
    left: -12px;
    width: 12px;
  }

  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-date {
    margin-top: 4px;
    font-size: 0.813rem;
  }
}

/*--------------------------------------------------------------
# End About Time Line CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Work Process CSS
--------------------------------------------------------------*/

.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f6921e;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f6921e;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #ffffff !important;
}

.work-porcess-area {
  background: #131921;
}

.work-porcess-area.white {
  background: #FFFFFF;
}

.work-porcess-area .process-info {
  margin-top: 7px;
}

.work-porcess-area .process-info .single-process {
  width: 200px;
  height: 160px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 10px;
  padding-top: 50px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 2px solid #f6921e;
  -webkit-box-shadow: 0 10px 30px 0 rgb(246 146 30 / 27%);
  -o-box-shadow: 0 10px 30px 0 rgb(246 146 30 / 27%);
  -moz-box-shadow: 0 10px 30px 0 rgb(246 146 30 / 27%);
  -ms-box-shadow: 0 10px 30px 0 rgb(246 146 30 / 27%);
  box-shadow: 0 10px 30px 0 rgb(246 146 30 / 27%);
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.work-porcess-area .process-info .single-process:hover {
  background: #f6921e !important;
  /* border: 2px solid #ffffff; */
  -webkit-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4) -o-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4) -moz-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4) -ms-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4) box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4)
}

.work-porcess-area .process-info .single-process:after {
  position: absolute;
  content: "\f101";
  font-family: "fontawesome";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -65px;
  color: #f6921e;
}

.work-porcess-area .process-info .single-process.first {
  background: #FFFFFF;
}

.work-porcess-area .process-info .single-process.first i:before {
  color: #131921;
}

.work-porcess-area .process-info .single-process.first h4 {
  color: #131921;
}

.work-porcess-area .process-info .single-process.thard {
  background: #ffffff;
}

.work-porcess-area .process-info .single-process.thard i:before {
  color: #131921;
}

.work-porcess-area .process-info .single-process.thard h4 {
  color: #131921;
}

.work-porcess-area .process-info .single-process.last:after {
  display: none;
}

.work-porcess-area .process-info .single-process i {
  display: block;
  line-height: 25px;
  margin-bottom: 12px;
}

.work-porcess-area .process-info .single-process i:before {
  font-size: 36px;
  color: #131921;
}

.work-porcess-area .process-info .single-process h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #131921;
}

.work-porcess-area .process-info .single-process {
  transition: all 0.3s ease-in-out;
}

.work-porcess-area .process-info .single-process:hover {
  background-color: #007bff;
  /* Example background color */
  transform: scale(1.05);
  /* Slightly enlarges the element */
}

.work-porcess-area .process-info .single-process:hover h4,
.work-porcess-area .process-info .single-process:hover i:before {
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .work-porcess-area .process-info .single-process::after {
    display: none;
  }

  .work-porcess-area .process-info .single-process {
    margin-top: 30px;
  }

  .work-porcess-area .section-title h2 {
    margin-bottom: 5px;
  }

  .section-header h2 {
    font-size: 30px;
  }

}

/*--------------------------------------------------------------
# End Work Process CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Blog Card Section CSS
--------------------------------------------------------------*/
.one,
.three {
  margin: 30px auto !important;
}

.scroll {
  overflow-y: auto;
  background: #f9fcff;
}

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

/* ---------- True Code ---------- */

.card-container {

  &.two .card::after {
    content: '';
    width: 80px;
    height: 80px;
    background: #fff9d8;
    position: absolute;
    top: -30px;
    border-radius: 35%;
    left: -20px;
  }

  .grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    margin: 1rem auto;
  }

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

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

  .card {
    position: relative;
    flex: 1;
    background: #fff;
    padding: 1rem 1rem 1.5rem;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0);
    border-radius: 1rem;
    min-height: 170px;
    margin: 15px;
    transition: all ease 0.3s;
    overflow: hidden;
    animation: fadeInLeft 1.5s backwards;

    &:nth-child(2) {
      animation-delay: 0.15s;
    }

    &:nth-child(3) {
      animation-delay: 0.2s;
    }

    &:nth-child(4) {
      animation-delay: 0.3s;
    }

    &:hover {
      transform: translateY(-6px);
      -webkit-transform: translateY(-6px);
      background: #f4f4f4;
    }

    img {
      //Google SEO - CLS optimize
      aspect-ratio: 500 / 320;

      width: 100%;
      border-radius: 12px;
      margin-bottom: 15px;
      position: relative;
      max-height: 320px;
      object-fit: cover;
      box-shadow: 0 6px 16px -7px #aaa;
    }

    .card-body {
      color: #676767;
      width: 100%;
      margin-bottom: 10px;
      padding: 0 0.8rem;
      position: relative;

      .icon {
        display: flex;
        width: 100%;
        text-align: left;
        padding: 15px 0;

        i {
          position: relative;
          font-size: 25px;
          transition: 0.5s;
          line-height: 0;
          top: -7px;
          left: -12px;
          z-index: 2;

          &::before {
            background-color: #FFD854;
            background-clip: border-box;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
          }
        }

        h3 {
          margin: -9px 0 0 20px;
        }
      }

      .title-card {
        text-align: left;
        padding-bottom: 10px;
      }

      h3.title-card {
        font-size: 18px;
        font-weight: 600;
      }

      p {
        font-size: 12px;
        line-height: 22px;
        font-weight: 300;
      }
    }

    .custom-card-footer {
      display: flex;
      justify-content: flex-end;
      position: absolute;
      bottom: 0;
      width: calc(100% - 1rem);
      background-color: transparent;

      a {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f6921e;
        color: #fff;
        text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.08);
        font-size: 1rem;
        text-decoration: none;
        width: 56%;
        height: 40px;
        border-top-left-radius: 1rem;
        border-bottom-right-radius: 1rem;

        &:hover {
          filter: brightness(0.98);
        }
  
    }
  }
}
}

@keyframes fadeInLeft {
  0% {
    transform: translate(-100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

/*--------------------------------------------------------------
# End Blog Card Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start About Faq Section CSS
--------------------------------------------------------------*/

.accordion .accordion-item {
  border: 1px solid #f6921e;
  padding: 0 15px;
  margin: 10px 0;
  border-radius: 5px;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #f6921e;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #131921;
  font-size: 16px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #f6921e;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #f6921e;
  border: 1px solid #f6921e;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #131921;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  will-change: opacity, max-height;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 500px;
  /* Adjust based on expected content height */
}

.accordion .accordion-content p {
  color: #777 !important;
  font-size: 1rem;
  margin: 1em 0;
}

/*--------------------------------------------------------------
# End About Faq Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Scroll Top Section CSS
--------------------------------------------------------------*/

button.back-to-top {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  height: 0px;
  width: 0px;
  overflow: hidden;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  color: transparent;
  clear: both;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  right: 50px;
  bottom: 75px;
  font-size: 0px;
  outline: 0 !important;
  z-index: 99;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus,
{
outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
  content: "";
  display: block;
  vertical-align: middle;
  border-bottom: solid 10px #f6921e;
  border-left: solid 10px transparent;
  line-height: 0;
  border-right: solid 10px transparent;
  height: 0;
  margin: 18px auto 0;
  width: 0;
  border-radius: 20px;
  visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
  visibility: visible;
}

button.back-to-top::after {
  border-bottom-color: #fff;
  position: relative;
  top: -24px;
}

button.back-to-top.show {
  display: block;
  background: #fff;
  color: #00ab6c;
  font-size: 25px;
  right: 25px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# End Scroll Top Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Why Choose Us Section CSS
--------------------------------------------------------------*/


.feat a,
.feat a:hover,
.feat a:focus,
.feat a:active {
  text-decoration: none;
  outline: none;
}

.feat a,
.feat a:active,
.feat a:focus {
  color: #333;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: .2s;
  -ms-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
}

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

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

.feat span,
.feat a,
.feat a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.feat .section-head {
  margin-bottom: 40px;
}

.section-head h4 {
  position: relative;
  padding: 0;
  color: #f6921e;
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
}

.section-head h4:before {
  content: '';
  width: 60px;
  height: 3px;
  background: #f6921e;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.section-head h4 span {
  font-weight: 700;
  padding-bottom: 5px;
  color: #131921
}

p.service_text {
  color: #cccccc !important;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.section-head p,
p.awesome_line {
  color: #818181;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.extra-text {
  font-size: 34px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 25px;
  position: relative;
  text-transform: none;
}

.extra-text::before {
  content: '';
  width: 60px;
  height: 3px;
  background: #f6921e;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.extra-text span {
  font-weight: 700;
  color: #f6921e;
}

.item {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 3px solid rgb(246 146 30);
  margin-bottom: 30px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover {
  background: #f6921e;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
  color: #fff;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: #f6921e;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}

.item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.20);
  color: #f6921e
}

.item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
  color: #f6921e
}

.item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
  color: #f6921e
}

.item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
  color: #f6921e
}

.item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
  color: #f6921e
}

.item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: #f6921e
}

.item p {
  font-size: 15px;
  line-height: 26px;
}

.item h6 {
  margin-bottom: 20px;
  color: #2f2f2f;
}

.mission p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.mission i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f6921e;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}

.mission .small-text {
  margin-left: 10px;
  font-size: 13px;
  color: #666;
}

.skills {
  padding-top: 0px;
}

.skills .prog-item {
  margin-bottom: 25px;
}

.skills .prog-item:last-child {
  margin-bottom: 0;
}

.skills .prog-item p {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  position: relative;
}

.skills .prog-item .skills-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #f6921e;
  width: 10%;
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
  content: attr(data-value);
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  padding: 3px 7px;
  border-radius: 30px;
}

/*--------------------------------------------------------------
# End Why Choose Us Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Categories Section CSS
--------------------------------------------------------------*/

@media only screen and (min-width: 320px) and (max-width: 991.98px) {

  .card-img {
    width: 44px;
    height: 44px;
    margin-bottom: 5px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .card-text {
    font-weight: 500;
    text-align: center;
  }

  .category {
    width: 30%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 24px;
    border-radius: 30px !important;
    border-style: solid;
    border-width: 2px;
    box-shadow: 0 8px 15px -10px #f6921e;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 992px) {

  .card-img {
    width: 44px;
    height: 44px;
    margin-bottom: 5px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .card-text {
    font-weight: 500;
    text-align: center;
  }

  .category {
    width: 14%;
    margin-left: 2.6%;
    margin-right: 2.6%;
    margin-bottom: 30px;
    border-radius: 30px !important;
    border-style: solid;
    border-width: 2px;
    box-shadow: 0 8px 15px -10px #f6921e;
    padding-bottom: 30px;
  }

  .category:hover {
    background: #fce0bf;
  }
}

.category-header {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  min-height: 5px;
  max-height: 5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.category-header-1 {
  background-color: #f6921e;
}

.category-1 {
  border-color: #f6921e;
}

/*--------------------------------------------------------------
# End Categories Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Portfolio Slider Section CSS
--------------------------------------------------------------*/

.slider {
  overflow: hidden;
  position: relative;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 100px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  animation: scroll 80s linear infinite;
  display: flex;
  width: calc(150px* 25);
  gap: 1rem;
}

.slider .slide-track:hover {
  animation-play-state: paused;
}

.slider .slide-track img {
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0px 5px 15px rgb(255 255 255 / 44%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 9));
  }
}

/*--------------------------------------------------------------
# End Portfolio Slider Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Single Page Section CSS
--------------------------------------------------------------*/

* {
  box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Add a card effect for articles */
.single-page .card {
  background-color: white;
  padding: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {

  .leftcolumn,
  .rightcolumn {
    width: 100%;
    padding: 0;
  }
}

/*--------------------------------------------------------------
# End Single Page Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start New Banner Page Section CSS
--------------------------------------------------------------*/

.aps-hero-banner-v2 {
  padding: 60px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.aps-content-v2 {
  max-width: 600px;
}

.aps-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.aps-title span {
  color: #f6921e;
}

.aps-text {
  margin: 22px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0 !important;
}

/* LIST */
.aps-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.aps-list li {
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.aps-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f6921e;
}

/* BUTTONS */
.aps-actions {
  display: flex;
  gap: 15px;
}

.aps-btn-v2 {
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.aps-btn-v2.primary {
  background: #f6921e;
  color: #000;
}

.aps-btn-v2.primary:hover {
  background: #ffad42;
}

.aps-btn-v2.outline {
  border: 2px solid #f6921e;
  color: #f6921e;
}

.aps-btn-v2.outline:hover {
  background: #f6921e;
  color: #000;
}

/* ===============================
   IMAGE COLUMN – CLEAN & STABLE
   =============================== */

.aps-image-layout {
  position: relative;
  max-width: 600px;
  height: 420px;
  margin-left: auto;
}

/* Image Card */
.aps-image {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* Inner hover wrapper */
.aps-image-inner {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.aps-image-inner img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* Positioning */
.aps-image.large {
  width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.aps-image.small.top {
  width: 200px;
  top: 15px;
  left: 0;
  z-index: 2;
}

.aps-image.small.bottom {
  width: 200px;
  bottom: 15px;
  right: 0;
  z-index: 1;
}

/* Hover (NO GLITCH) */
.aps-image:hover .aps-image-inner {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
  .aps-hero-banner-v2 {
    text-align: center;
  }

  .aps-actions {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# End New Banner Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Contact Form and Brand Logos Section CSS
--------------------------------------------------------------*/

.aas-lead-section {
  background: #ffffff;
  color: #131921;
}

/* Heading */
.aas-lead-heading p {
  font-size: 22px;
  margin-bottom: 35px;
}

.aas-lead-heading span {
  color: #f6921e;
  font-weight: 700;
}

/* Form Card */
.aas-form-wrapper {
  background: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
  border-radius: 18px;
  padding: 30px;
  /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4); */
}

/* Input Group */
.aas-input-group {
  position: relative;
}

.aas-input-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #f6921e;
  font-size: 14px;
}

.aas-input-group input {
  width: 100%;
  height: 50px;
  padding: 0 15px 0 42px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.aas-input-group input::placeholder {
  color: #cccccc;
}

.aas-input-group input:focus {
  border-color: #f6921e;
}

/* Button */
.aas-submit-btn {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  border: none;
  background: #f6921e;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.aas-submit-btn:hover {
  background: #ffad42;
  transform: translateY(-2px);
}

/* Trust Section */
.aas-trust-wrapper {
  margin-top: 40px;
  text-align: center;
}

.aas-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.aas-trust-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #ffffff;
}

.aas-trust-list img {
  max-height: 32px;
}

.aas-trust-list strong {
  color: #131921;
}

/* ⭐ Per-Brand Stars */
.aas-stars {
  color: #f6921e;
  font-size: 14px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .aas-lead-heading p {
    font-size: 18px;
  }

  .aas-form-wrapper {
    padding: 25px 20px;
  }

  .aas-trust-list {
    gap: 22px;
  }
}

/*--------------------------------------------------------------
# End Contact Form and Brand Logos Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Services Section CSS
--------------------------------------------------------------*/

.services-sec {
  background: #f9f9f9;
}

.services-sec .main-heading {
  font-size: 30px;
  font-weight: 700;
  color: #131921;
  margin-bottom: 10px;
}

.services-sec .main-heading span {
  color: #f6921e;
}

.services-sec .main-pera {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

.service-card {
  /* background: #fdfdfd; */
  padding: 20px 15px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #c5c5c5;
  transition: all 0.3s ease;
}

.service-card img {
  max-width: 200px;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 18px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Read More Button */
.service-card .read-more {
  display: block;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f6921e;
  color: #000;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover .read-more {
  opacity: 1;
  bottom: 15px;
}

/* Buttons */
.btn-main-2,
.btn-main-3 {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-main-2 {
  background: #f6921e;
  color: #000;
}

.btn-main-2:hover {
  background: #ffad42;
}

.btn-main-3 {
  background: transparent;
  border: 2px solid #f6921e;
  color: #f6921e;
}

.btn-main-3:hover {
  background: #f6921e;
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .service-card img {
    max-width: 130px;
  }

  .services-sec .main-heading {
    font-size: 26px;
  }

  .services-sec .main-pera {
    font-size: 14px;
  }
}

@media (max-width: 767px) {

  .col-lg-3,
  .col-md-6 {
    margin-bottom: 20px;
  }

  .service-card img {
    max-width: 120px;
  }

  .service-card h4 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# End Services Section CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start CTA BOOK WRITING SECTION CSS
--------------------------------------------------------------*/

.cta-book-writting {
  background: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
  color: #fff;
  position: relative;
  overflow: visible;
  /* allow images to overlap */
}

/* Left Image - Huge and Overlapping */
.book-left {
  /* max-width: 430px; */
  position: absolute;
  left: -100px;
  bottom: -200px;
  transform: rotate(-10deg);
  z-index: 2;
  transition: all 0.4s ease;
}

.book-left:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Right Image - smaller */
.book-right {
  max-width: 220px;
  transform: rotate(10deg);
  transition: all 0.4s ease;
}

.book-right:hover {
  transform: rotate(0deg) scale(1.05);
}

/* CTA Text */
.cta-text .main-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.cta-text .main-heading span {
  color: #f6921e;
}

.cta-text .main-pera {
  font-size: 16px;
  color: #ddd !important;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.cta-buttons a {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 15px;
}

.btn-get-started {
  background: #f6921e;
  color: #000;
}

.btn-get-started:hover {
  background: #ffad42;
  color: #000;
}

.btn-live-chat {
  background: transparent;
  border: 2px solid #f6921e;
  color: #f6921e;
}

.btn-live-chat:hover {
  background: #f6921e;
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-book-writting {
    padding: 80px 15px;
  }

  .book-left {
    position: relative;
    max-width: 300px;
    left: 0;
    top: 0;
    margin-bottom: 30px;
    transform: rotate(0deg);
  }

  .book-right {
    max-width: 180px;
    margin: 20px auto 0;
    display: block;
    transform: rotate(0deg);
  }

  .cta-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .cta-buttons {
    text-align: center;
  }

  .cta-text .main-heading {
    font-size: 28px;
  }

  .cta-text .main-pera {
    font-size: 15px;
  }
}

@media (max-width: 767px) {

  .book-left,
  .book-right {
    max-width: 250px;
    margin: 20px auto;
  }
}

/*--------------------------------------------------------------
# End CTA BOOK WRITING SECTION CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start BOOK SERVICES SECTION CSS
--------------------------------------------------------------*/

.books-dif {
  background: #f8f9fa;
  /* light neutral background */
}

.books-dif .main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1c3242;
  margin-bottom: 50px;
  text-align: center;
}

.books-dif .main-heading span {
  color: #f6921e;
}

/* Service Cards */
.service-card-2 {
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.service-card-2:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.service-icon img {
  max-width: 100%;
  max-height: 100%;
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: #1c3242;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .books-dif {
    padding: 60px 15px;
  }

  .books-dif .main-heading {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .books-dif .main-heading {
    font-size: 26px;
  }

  .service-card-2 {
    padding: 25px 15px;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .service-title {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# End BOOK SERVICES SECTION CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start CTA BOOK WRITING 2 SECTION CSS
--------------------------------------------------------------*/

.cta-book-writting-2 {
  background: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
  color: #fff;
  position: relative;
  overflow: visible;
  /* allow images to overlap */
}

/* Left Image - Huge and Overlapping */
.cta-book-writting-2 .book-left {
  /* width: 100%; */
  position: absolute;
  left: 0px;
  bottom: -180px;
  transform: rotate(-10deg);
  z-index: 2;
  transition: all 0.4s ease;
  max-width: 250px;
}

.cta-book-writting-2 .book-left:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Right Image - smaller */
.cta-book-writting-2 .book-right {
  max-width: 220px;
  transform: rotate(10deg);
  transition: all 0.4s ease;
}

.cta-book-writting-2 .book-right:hover {
  transform: rotate(0deg) scale(1.05);
}

/* CTA Text */
.cta-book-writting-2 .cta-text .main-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.cta-book-writting-2 .cta-text .main-heading span {
  color: #f6921e;
}

.cta-book-writting-2 .cta-text .main-pera {
  font-size: 16px;
  color: #ddd !important;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.cta-book-writting-2 .cta-buttons a {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 15px;
}

.cta-book-writting-2 .btn-get-started {
  background: #f6921e;
  color: #000;
}

.cta-book-writting-2 .btn-get-started:hover {
  background: #ffad42;
  color: #000;
}

.cta-book-writting-2 .btn-live-chat {
  background: transparent;
  border: 2px solid #f6921e;
  color: #f6921e;
}

.cta-book-writting-2 .btn-live-chat:hover {
  background: #f6921e;
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-book-writting-2 {
    padding: 80px 15px;
  }

  .cta-book-writting-2 .book-left {
    position: relative;
    max-width: 300px;
    left: 0;
    top: 0;
    margin-bottom: 30px;
    transform: rotate(0deg);
  }

  .cta-book-writting-2 .book-right {
    max-width: 180px;
    margin: 20px auto 0;
    display: block;
    transform: rotate(0deg);
  }

  .cta-book-writting-2 .cta-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .cta-book-writting-2 .cta-buttons {
    text-align: center;
  }

  .cta-book-writting-2 .cta-text .main-heading {
    font-size: 28px;
  }

  .cta-book-writting-2 .cta-text .main-pera {
    font-size: 15px;
  }
}

@media (max-width: 767px) {

  .cta-book-writting-2 .book-left,
  .cta-book-writting-2 .book-right {
    max-width: 250px;
    margin: 20px auto;
  }
}

/*--------------------------------------------------------------
# End CTA BOOK WRITING 2 SECTION CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start FOOTER SECTION CSS
--------------------------------------------------------------*/
.footer-top {
  display: flex;
  gap: 100px;
  padding: 20px 20px 0 20px;
  flex-wrap: wrap;
}

/* LEFT */
/* .footer-left {
        flex: 1;
    } */

/* SOCIAL */
.social-stats {
  display: flex;
  gap: 100px;
  margin-bottom: 20px;
}

.stat {
  text-align: center;
}

.stat img {
  width: 42px;
  margin-bottom: 5px;
}

.stat span {
  display: block;
  font-size: 14px;
  color: #555;
}

.stat strong {
  color: #131921;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 50px;
}

.link-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #131921;
}

.link-col a {
  display: block;
  color: #777;
  font-size: 12px;
  margin-bottom: 8px;
  text-decoration: none;
  line-height: 14px;
}

.link-col a:hover {
  color: #146eb4;
}

/* RIGHT */
.footer-right {
  max-width: 360px;
  text-align: left;
}

.footer-right h2 {
  font-size: 26px;
  color: #146eb4;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 25px;
}

.trust img {
  max-width: 150px;
  display: block;
  margin-bottom: 10px;
}

.payments h4 {
  font-size: 14px;
  margin: 15px 0 10px;
}

.payments span {
  color: #ff9800;
}

.payments img {
  max-width: 220px;
}

/* AWARDS */
.footer-awards {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 20px 0;
  flex-wrap: wrap;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-around;
  background: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom p {
  color: #fff !important;
  margin: 0 5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-top {
    flex-direction: column;
  }

  .social-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-right {
    max-width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# End FOOTER SECTION CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start HEADER SECTION CSS
--------------------------------------------------------------*/
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER */
.aps-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  z-index: 999;
  font-family: 'Poppins', sans-serif;
}

.aps-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

/* LOGO */
.aps-logo img {
  max-height: 55px;
}

/* NAV */
.aps-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.aps-nav ul li {
  position: relative;
}

.aps-nav ul li a {
  text-decoration: none;
  color: #131921;
  font-size: 14px;
  text-align: center;
  display: block;
  position: relative;
  padding-bottom: 6px;
}

/* UNDERLINE */
.aps-nav ul li a::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f7941d;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* SUB TEXT */
.aps-nav ul li a strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 1px;
}

/* DROPDOWN */
/* DROPDOWN FIXED FOR VERTICAL STACK */
.has-dropdown {
  position: relative;
  /* ensure dropdown is positioned relative to parent */
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background: #131921;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: absolute;
  gap: 5px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  /* align dropdown to left of parent */
  background: #fff;
  min-width: 220px;
  /* adjust width as needed */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  /* stack items vertically */
  gap: 5px;
  /* space between items */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
  z-index: 999;
}

.dropdown li {
  width: 100%;
}

.dropdown li a {
  padding: 10px 20px;
  text-align: left !important;
  color: #ffffff !important;
  display: block;
  transition: 0.3s ease;
}

.dropdown li a:hover {
  background: #f7941d;
  color: #fff;
  border-radius: 4px;
}


/* MOBILE */
.aps-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.aps-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #111;
}

/* RESPONSIVE */
@media(max-width: 1024px) {
  .aps-nav {
    display: none;
  }

  .aps-menu-toggle {
    display: flex;
  }
}

/*--------------------------------------------------------------
# End HEADER SECTION CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Before Footer SECTION CSS
--------------------------------------------------------------*/

/* Top Footer Section */
.top-footer {
  background: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* Wrapper */
.top-footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Single Item */
.top-footer-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #eef0f4;
}

/* Icon */
.icon-box {
  width: 50px;
  height: 50px;
  background: #f1f3f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Text Content */
.top-footer-item .content-2 span {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-footer-item .content-2 a,
.top-footer-item .content-2 p {
  font-size: 15px;
  color: #111827;
  font-weight: 600;
  margin: 0;
  text-decoration: none;
  line-height: 1.4;
}

.top-footer-item .content-2 a:hover {
  color: #2563eb;
}

/* Responsive */
@media (max-width: 991px) {
  .top-footer-wrapper {
    flex-direction: column;
  }

  .top-footer-item {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .top-footer-item {
    padding: 15px;
  }

  .icon-box {
    width: 44px;
    height: 44px;
  }

  .top-footer-item .content-2 a,
  .top-footer-item .content-2 p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# End Before Footer SECTION CSS
--------------------------------------------------------------*/


