.header-style-three {
  background-color: var(--theme-color-white);
}

.header-style-three .main-box .nav-outer .nav {
  /* background-color: var(--theme-color-light); */
}


.banner-section-three::after {
  background-color: var(--theme-color-white);

}

/* for the navigation menu */
/* default nav item */
html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown,
html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li {
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  gap: 10px;

  margin-right: 10px;
}

/* style for <a> */
html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown a,
html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li a {
  display: inline-flex;
  align-items: center;
  padding: 10px 32px;

  border-radius: 30px;
  font-weight: bold;
  background: transparent;
  color: var(--theme-color-light);
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;

  padding-left: 18px;
  font-size: 20px;

}


.nav .navigation>li .dropdown-btn {
  position: relative;
  margin-left: 10px;

  padding-right: 8px;

  z-index: 3;
  pointer-events: none;
}

/* arrow icon styling */
.nav .dropdown-btn i {
  font-size: 14px;
  transition: 0.3s ease;
}


/* ONLY target the top-level anchor */
/* html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation>li.dropdown:hover>a,
html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation>li:hover>a {
  background:var(--ssc-orange-color);
  color: var(--theme-color-light);
} */

html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li:hover.dropdown div.dropdown-btn {
  color: var(--theme-color-light);
}


/* rotate arrow when dropdown open */
.nav .navigation>li:hover .dropdown-btn i {
  transform: rotate(180deg);
}

/* DROPDOWN MENU PANEL (optional style enhancement) */
.nav .navigation>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--theme-color-light);
  border-radius: 12px;
  padding: 0px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 999;
}

/* makes the dropdown panel rounded like Finovate */
/* This applies the border-radius to the sub-menus */
html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown ul {
  border-radius: 25px;
  /* Adjust the value as needed */
  margin-top: 4px;
}

html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown ul li:last-child {
  border-radius: 0 0 20px 20px;
}

html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown ul li:first-child {
  border-radius: 20px 20px 0 0;
}


.nav .navigation>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown ul li {
  display: block;
  padding: 4px 14px;
}

html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown ul li>a {
  display: block;
  padding: 10px 0px;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.25s ease;
  line-height: 22px;
}

/* DROPDOWN HOVER (green highlight like shown in screenshot) */
html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown ul li:hover,
.sticky-header .main-menu .navigation li.dropdown ul li:hover {
  background:var(--ssc-color1) !important;
  /* greenish like finovate */
  color: var(--theme-color-light);
}

.sticky-header .main-menu .navigation li.dropdown ul li:hover>a {
  color: var(--theme-color-light);
}


html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li:hover>a {
  color: var(--theme-color-light);
}

/* seprate by k */

/* .header-style-three .main-menu .navigation li.dropdown .dropdown-btn{
    top: 13px;
} */

.header-style-three .main-menu .navigation li.dropdown .dropdown-btn {
  right: 7px;
}

/* .header-style-three .main-box .nav-outer .nav {
  padding: 18px 39px;
} */

/* for the sticky menu */

/*  Apply same navigation pill design to sticky menu */
.sticky-header .main-menu .navigation li,
.sticky-header .main-menu .navigation li.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  gap: 10px;
  /* margin-right: 10px; */
}

/* links (text pills) */
.sticky-header .main-menu .navigation li a {
  display: inline-flex;
  align-items: center;
  padding: 10px 32px;
  border-radius: 30px;
  font-weight: bold;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
  font-size: 18px;
}

/* arrow button */
.sticky-header .main-menu .navigation li .dropdown-btn {
  position: relative;
  margin-left: 10px;
  padding-right: 8px;
  pointer-events: none;
}

/* arrow rotation */
.sticky-header .main-menu .navigation li:hover .dropdown-btn i {
  transform: rotate(180deg);
}

/* pill hover (sticky) */
/* .sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.dropdown:hover>a,
.header-style-three .sticky-header .main-menu .navigation>li:hover>a {
    background:var(--ssc-orange-color);

  color: var(--theme-color-light);
} */

/* dropdown panel */
.sticky-header .main-menu .navigation>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--theme-color-light);
  border-radius: 25px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 999;
}

/* show dropdown */
.sticky-header .main-menu .navigation>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* dropdown items */
.sticky-header .main-menu .navigation li.dropdown ul li {
  display: block;
  padding: 4px 4px;
}

.sticky-header .main-menu .navigation li.dropdown ul li a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  border-radius: 8px;
  color:var(--ssc-color1);
  transition: 0.25s ease;
  line-height: 22px;
}

/* hover item highlight */
.sticky-header .main-menu .navigation li.dropdown ul li:hover {
  color: var(--theme-color-light);
}

.sticky-header .main-menu .navigation>li {
  margin-left: 0;
}

/* new  */

/* .sticky-header .main-menu .navigation li {
  margin-right: 41px;
} */

/* .sticky-header .main-menu .navigation li.dropdown {
  margin-right: 11px;
} */

.sticky-header .main-menu .navigation li a {
  padding: 14px 20px;
}

html body div.page-wrapper header.main-header.header-style-three div.auto-container div.sticky-header.fixed-header.animated.slideInDown div.auto-container div.inner-container div.nav-outer nav.main-menu div.navbar-collapse.show.collapse.clearfix ul.navigation.clearfix li.dropdown div.dropdown-btn {
  right: 45px;
  top: 1px;
}

html body div.page-wrapper header.main-header.header-style-three div.auto-container div.sticky-header.fixed-header.animated.slideInDown div.auto-container div.inner-container div.nav-outer nav.main-menu div.navbar-collapse.show.collapse.clearfix ul.navigation.clearfix li.dropdown a {
  padding-left: 18px;
  /*equal space before text */
}

.header-style-three .sticky-header .main-menu .navigation li:hover.dropdown .dropdown-btn {
  color: var(--theme-color-light);
}

html body div.page-wrapper header.main-header.header-style-three div.auto-container div.sticky-header.fixed-header.animated.slideInDown div.auto-container div.inner-container div.nav-outer nav.main-menu div.navbar-collapse.show.collapse.clearfix ul.navigation.clearfix li.dropdown ul {
  border-radius: 25px;
  margin-top: 11px;
}

html body div.page-wrapper header.main-header.header-style-three div.auto-container div.sticky-header.fixed-header.animated.slideInDown div.auto-container div.inner-container div.nav-outer nav.main-menu div.navbar-collapse.show.collapse.clearfix ul.navigation.clearfix li.dropdown ul li:first-child {
  border-radius: 20px 20px 0 0;
}

html body div.page-wrapper header.main-header.header-style-three div.auto-container div.sticky-header.fixed-header.animated.slideInDown div.auto-container div.inner-container div.nav-outer nav.main-menu div.navbar-collapse.show.collapse.clearfix ul.navigation.clearfix li.dropdown ul li:last-child {
  border-radius: 0 0 20px 20px;
}

/* for the mobile menu  */

.mobile-menu .navigation li.dropdown .dropdown-btn::after {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation li.dropdown .dropdown-btn,
.mobile-menu .navigation li>a {
  color: var(--theme-color-black);
}

.mobile-menu .navigation li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* .header-style-three .main-box {
  padding: 10px 12px;
} */

.contact-list-one li .icon {
  color: var(--theme-color-black);
}

.contact-list-one li a {
  color: var(--theme-color-black);
}

.contact-list-one li a {
  color: var(--theme-color-black);
}

.contact-info-box {
  color: var(--theme-color-black);
}

.mobile-menu .menu-box {
  background-color: var(--theme-color-light);
}

.mobile-menu .close-btn {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--theme-color-black);
}

.header-style-three .sticky-header.fixed-header {
  height: 101px;
}

/* for the service section */

/* .page-wrapper section.service-section-two.pt-120.pb-120 div.container div.outer-box div.row.g-0 div.col-md-6.col-xl-4.wow.fadeInUp.animated div.service-block-two div.inner-box div.content-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%; 
  padding: 24px;
} */

html body div.page-wrapper section.service-section-two.pt-120.pb-120 div.container div.outer-box div.row.g-0 div.col-md-6.col-xl-4.wow.fadeInUp.animated div.service-block-two div.inner-box div.content-box h4.title {
  margin-bottom: 12px;
  /* spacing between heading and subheading */
}

/* html body div.page-wrapper section.service-section-two.pt-120.pb-120 div.container div.outer-box div.row.g-0 div.col-md-6.col-xl-4.wow.fadeInUp.animated div.service-block-two div.inner-box div.content-box p.text {
  margin-top: 0;
} */

html body div.page-wrapper section.service-section-two.pt-120.pb-120 div.container div.outer-box div.row.g-0 div.col-md-6.col-xl-4.wow.fadeInUp.animated div.service-block-two div.inner-box.border-0 div.content-box a.btn-two-rounded {
  margin-top: 21px;
}

.sticky-header .logo img {
  max-height: 100%;
}

/* for color combination  */

.main-footer {
  position: relative;
  background-color: var(--ssc-bgcolor);
}

.main-footer .widget-content .text {
  color: var(--ssc-title-color);
  font-weight: 600;
}

.footer-cta {
  background-color: var(--ssc-orange-color);
  
}

html body div.page-wrapper footer.main-footer.footer-style-three.pt-100 div.container div.footer-cta div.sec-title h2.title.wow.splt-txt.words.chars.splitting.animated {
  color: var(--ssc-bgcolor);
}

.main-footer .widget-title {
  color: var(--ssc-light-color);
}

.user-links li a {
  color: var(--ssc-light-color) !important;
}

.footer-cta .text {
  color: var(--ssc-bgcolor);
}

.footer-cta .btn-wrp .cta-btn {
  background-color: var(--ssc-bgcolor);
}

.main-footer .footer-widget.about-widget .input-feild button {
  background-color: var(--ssc-orange-color);
  
}

html body div.page-wrapper footer.main-footer.footer-style-three.pt-100 div.container div.widgets-section div.row.g-5.g-xl-0 div.col-lg-4.footer-column div.footer-widget.about-widget div.widget-content div.input-feild button i.fa-regular.fa-arrow-up-right {
  color: var(--theme-color-light);
}

.user-links li a::before {
  background-color: var(--theme-color1);
  ;
}

.input-feild button i.fa-regular.fa-arrow-up-right,
.footer-bottom button.goTop-btn i.fa-solid.fa-angles-up {
  color: var(--theme-color-light);
}

.footer-bottom .goTop-btn {
  background-color: var(--ssc-orange-color);
  
}

.footer-bottom .copyright-text a:hover,
.footer-bottom .copyright-text a {
  color: var(--theme-color-black);
  font-weight: bold;
}

.footer-bottom .copyright-text {
  color: var(--ssc-light-color);
}

.footer-bottom .footer-nav li a,
.footer-bottom .footer-nav li a:hover {
  color: var(--ssc-light-color);
}

.header-style-three .outer-box .info-box .call-info i,
.btn-one-rounded,
.sec-title .sub-title,
.case-block-three .content .sub-title,
.pricing-tab .nav .nav-item .nav-link.active,
.pricing-block.active .inner-box .tag,
.testimonial-section-three .image-column .inner-column .image .title {
  background-color:var(--ssc-orange-color);
  
  color: var(--theme-color-light);
}
.header-style-three .header-top::after {
  border-radius: 24px;
}

.header-style-three .header-top::after {
  width: 23%;
   right: -60px;
}
.funfact-section .outer-box{
  background-color:var(--ssc-orange-color);
}


.btn-one-rounded:hover {
  color: var(--theme-color-light);
}

.funfact-block .inner-box .content-box .sub-title,
.funfact-block .inner-box .content-box .title {
  color: var(--theme-color-gray2);
  font-size: 22px;
}

/* .funfact-section .outer-box,
.service-block-two .inner-box:hover,
.service-block-two .inner-box .icon {
  background-color: var(--theme-color1);
  ;
} */

.service-block-two .inner-box:hover .content-box h4.title,
.service-block-two .inner-box:hover .text,
.case-block-three .icon i {
  color: var(--theme-color-light);
}

.objective-section .content-column .inner-column .progress .bar .bar-inner,
.case-block-three .icon,
.testimonial-section-three .image-column .inner-column .image .icon {
  background-color:var(--ssc-orange-color);
}

.team-block-three .inner-box .content-box .title a:hover,
.blog-block-three .inner-box .content-box .info li a:hover,
.header-style-three .header-top .top-left .info-list span {
  color: var(--ssc-orange-color) !important;
}

html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li a {
  padding: 11px 20px;
}

html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown ul li a {
  border-radius: 20px;
}

html body div.page-wrapper section.team-section-three.pb-120 div.container div.sec-title.mb-50 {
  margin-top: 120px;
}

.testimonial-section-three .sec-wrp {
  background-color:var(--ssc-color1);
}
.preloader::after {
  background-image: url(../images/logos/loader1.png);
}

.objective-block .title {
  border-left: 2.25px solid var(--theme-color1);
  ;
}

.footer-bottom {
  border-top: 1px solid var(--theme-color-black);
}

/* for the sliding logo  */

.brand-block img {
  width: 100% !important;
  height: 100%;
  max-height: 150px;
  /* adjusting  as i needed */
  object-fit: contain;
  object-position: center;
  /* optional spacing around images */
}

.brand-block {
  width: 200px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
}

a:focus {
  color: var(--theme-color-light);
}

.team-block-three .inner-box .image-box {
  background-color:var(--ssc-orange-color);
  
}
.header-style-three .sticky-header .main-menu {
  padding: 18px 39px;
}

.mobile-menu .navigation li:hover>a {
  color: var(--theme-color-black);
}

/* for the story timeline  */

.company-timeline {
  margin-top: 30px;
  text-align: center;
  color: var(--theme-color-light);
  width: 100%;
  /* margin-left: 100px; */
}

/* Headings */
.timeline-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--theme-color-white);
  /* margin-left: 180px; */
}

.timeline-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Timeline container */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  /* increased spacing between years */
  margin-top: 20px;
  flex-wrap: nowrap;
  max-width: 1200px;
  /* controls total width */
  /* margin-left: 115px;
  margin-right: auto; */
  margin-left: -180px;
}
/* Each year */
.timeline-item {
  position: relative;
  text-align: center;
  flex: 1;
  min-width: 213px;
}

.timeline-item .year {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--theme-color-light);
  /* match banner bg */
  z-index: 2;
}

/* Event text below */
.timeline-item .event {
  margin-top: 25px;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 220px;
  /* increased width for longer text */
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
  color: var(--ssc-timeline);
  font-weight: 600;
}


.timeline::before {
  animation: lineDraw 1.5s ease-out forwards;
}

@keyframes lineDraw {
  from {
    width: 0;
  }

  to {
    width: 90%;
  }
}

/* for banner  */

.banner-section-three .bg-image::after {
  background: linear-gradient(99.2deg, #093429 32.71%, rgba(9, 52, 41, 0.916807) 40.78%, rgba(9, 52, 41, 0.797132) 44.58%, rgba(9, 52, 41, 0.7) 100%, rgba(9, 52, 41, 0.95) 0%);
}

html body div.page-wrapper section.banner-section-three div.container {
  margin-top: -101px;
}


.service-section-two {
  background-color: var(--theme-color-white);
}

/* .funfact-section::after {
  background-color: var(--theme-color-white);
} */

.about-section-three {
  background-color: var(--theme-color-gray2);
  padding-bottom: 201px !important;
}

.about-section {
  position: relative;
  /* enables overlay positioning reference */
  /* background: #f9f9f9; */
  /* example */
  padding: 100px 0;
  /* adjust as needed */
  z-index: 1;
}


.funfact-section .funfact-box {
  /* background: white; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 40px;
}


/* Ensures all cards stretch equally */
.col-md-6.col-xl-3 {
  display: flex;
}

/* make column flex so all cards are same height */
.col-md-6.col-xl-3 {
  display: flex;
}

/* card container */
html body div.page-wrapper section.service-section-two.pt-120.pb-120 div.container div.outer-box div.row.g-0 div.col-md-6.col-xl-3.wow.fadeInUp.animated div.service-block-two div.inner-box div.content-box {
  padding: 30px 25px;

}

.banner-section-three .bg-image {
  height: 87%;
}

html body div.page-wrapper section.service-section-two.pt-120.pb-120 {
  padding-top: 0 !important;
}

/* for blue theme  */

/* .banner-section-three.blue-theme .bg-image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(4, 4, 4, 0) 0%, rgba(0, 32, 64, 1) 90%),
      linear-gradient(to right, #002040 0%, #002040 30%, #002040 5%, #002e5d1a 100%);  z-index: 1;
} */

html body div.page-wrapper section.banner-section-three.blue-theme div.container div.row.g-0.align-items-end div.col-xl-8.content-column div.inner-column div.btn-wrp a.btn-one-rounded{
  background-color:var(--ssc-orange-color);
}






/* create small line segment after each year except the last one */
.company-timeline .timeline-item::after {
content: "";
  position: absolute;
  top: 16px;
  left: 67%;
  width: 104%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  z-index: 0;
}

/* remove the line after the last year */
.company-timeline .timeline-item:last-child::after {
  display: none;
}

/* before starting  */
.timeline::before {
    content: "";
    position: absolute;
    top: 16px;
    left: -740px;
    width: 80px;  /* length of start line */
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    z-index: 0;
}

/* after ending */

.timeline::after {
    content: "";
    position: absolute;
    top: 16px;
right: -800px;
  width: 660px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    z-index: 0;
}



.timeline-item:hover {
  color: var(--ssc-timeline-hover); 
}


.timeline-item:hover .year,
.timeline-item:hover .event {
  color: var(--ssc-timeline-hover);
}


.services-section {
  background-color: var(--theme-color-light);
  padding: 80px 0;
}

.services-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 0 20px;
}

/* LEFT CONTENT */
.services-section .left-content {
  flex: 1;
  text-align: left;
}

.services-section .left-content h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.services-section .left-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  /* color: #1f2937; */
  margin-bottom: 10px;
}

.services-section .left-content p {
  font-size: 19px;
  line-height: 1.6;
  max-width: 728px;
}

/* RIGHT CONTENT (4 small boxes in 2x2 grid) */
.services-section .right-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.services-section .service-box {
  /* background-color: #f9fafb; */
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.services-section .service-box:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* ICONS */
.services-section .service-box svg {
  width: 40px;
  height: 40px;
  /* color: #3b82f6; */
  margin-bottom: 12px;
}

/* TEXT INSIDE BOXES */
.services-section .service-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.services-section .service-box p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- RESPONSIVE --- */
@media (min-width: 768px) {
  .services-section .container {
    flex-direction: row;
    align-items: center; /* vertically center left & right side */
  }
}

@media (max-width: 767px) {
  .services-section .right-content {
    grid-template-columns: 1fr;
    align-self: center;
  }
  
}

/* new layout of service  */
.service-block-two .inner-box .icon svg{
  margin-top: -131px;
}

.service-block-two div.inner-box div.content-box{
  margin-top: 50px;
}

.service-block-two .inner-box {
  height: auto;
  border-radius: 14px;
  padding:  60px 0px!important;
}
.service-block-two .inner-box .content-box .title{
  font-size: 26px;
  color: var(--theme-color-light);
}

.service-block-two .inner-box .content-box .text{
  font-size: 20px;
  /* color: #e8e3e3; */
}

.inner-box .icon svg path {
  transition: fill 0.3s ease;
}

.service-block-two .inner-box:hover .icon svg path {
  fill: var(--ssc-timeline-hover); 
}

/* html body div.page-wrapper section.services-section.bg-white.py-16{
  margin-top: -151px;
} */

/* for the background */


.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
width: 46%;
  height: 50%;
  background: #76D7EA;

  z-index: 0;
}

.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
width: 54%;
  height: 50%;
  background: #f5fbff; 

  z-index: 0;
}

.mb-200.mt-15{
  margin-bottom: 20px !important;
}

.services-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 767.98px) {
  .testimonial-block-three .info img {
    width: 200px;
  }
}

html body div.tm-color-switcher{
  display: none !important;
}

/* product, saas block  */


.ssc-contracts-section {
    width: 100%;
    background: var(--theme-color-light);
    padding: 50px 0;
}

.ssc-contracts-header h2 {
    color: var(--theme-color-light);
  font-size: 30px;
  font-weight: 600;
  margin-top: 14px;
}

.ssc-contracts-header h2 span {
    font-weight: 700;
    color: var(--theme-color-light);
}

/* PRODUCT GRID */
.ssc-products-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* CARD BASE */
.ssc-product-card {
    flex: 1;
    padding: 40px 30px;
    
    text-align: center;
}

/* LEFT DARK CARD */
.dark-card {
    position: relative;
    /* background: #0d1a24; 
    color: white; */
    overflow: hidden;
   
}

/* Image inside card (acts like background) */
.dark-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35; 
}

/* Content on top */
.dark-card-content {
    position: relative;
    z-index: 2;
}

.dark-card-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}


/* RIGHT CARD STYLE */
.light-card {
    background: var(--theme-color-light);
    /* border: 1px solid #e7e7e7; */
    color: var(--theme-color-black)000;
}

.ssc-product-card h3 {
    font-size: 30px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--theme-color-light);
}

/* BUTTON */
.ssc-btn {
    display: inline-block;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
    margin-top: 15px;
}

.btn-orange {
    background:var(--ssc-orange-color); 
    /* color: white; */
}

.btn-orange:hover {
    background:var(--ssc-orange-color);
}

/* PRODUCT IMAGE */
.product-img {
width: 100%;
  max-width: 380px;
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .ssc-products-wrapper {
        flex-direction: column;
    }
}

html body div.page-wrapper section.ssc-contracts-section div.ssc-products-wrapper div.ssc-product-card.light-card h3{
  color: var(--theme-color-black);
}

/* for the timeline hover content  */

.story-description-box {
    margin-top: 25px;
    padding: 22px 25px;
    background: var(--theme-color-light);
  border-radius: 10px;
  color: var(--ssc-color1);
    font-size: 20px;
    line-height: 1.6;
    width: 1536px;
    /* margin-left: 160px;
    margin-right: auto; */
    text-align: center;

    height: auto;

    overflow: hidden;
    max-height: 0;

    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        max-height 0.45s ease;
    pointer-events: none;
   margin-left: -435px;
}

.story-description-box.show {
    opacity: 1;
    transform: translateY(0);

    max-height: 300px;

    pointer-events: auto;
}


.banner-section-three{
  padding: 200px 0;
}

strong{
  font-weight: bold;
  font-size: 21px;
}

.title a {
    /* position: relative; */
    z-index: 999;
    pointer-events: auto;
}


/* after removing objective left part */

.objective-section .sec-title .flex-content {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 15px;
}

.objective-section .content-column .inner-column .nav.nav-tabs .nav-item .nav-link{
  padding: 8px 233px;
}

.objective-section .content-column .inner-column .nav.nav-tabs .nav-item .nav-link.active{
  padding: 8px 242px;
}

.objective-section .content-column .inner-column .content ul li {
  font-size: 20px;
}
/* after seprating section */

html body div.page-wrapper section.ssc-products-section{
  padding: 50px 0;
    margin-top: -50px;
}
html body div.page-wrapper section.ssc-products-section div.ssc-products-wrapper div.ssc-product-card.light-card h3{
  color: var(--theme-color-black);
}

/* menu color  */

.header-style-three .sticky-header .mobile-nav-toggler{
  color: var(--ssc-color1);
}



/* ===============================
   HERO VIDEO BANNER
=================================*/
.hero-banner {
  position: relative;
  width: 100%;
  height: 1150px;
  overflow: hidden;
}

/* Video styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.45); */
  background: rgba(0, 20, 60, 0.65);
  z-index: 2;
}

/* Content */
.home-hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  color: var(--theme-color-light);
}

.home-hero-content h1 {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ssc-bgcolor);
}

.home-hero-content p {
  font-size: 23px;
  margin-bottom: 30px;
  color: var(--ssc-light1);
}

.hero-btn {
  /* background: #1fa8e5; */
  padding: 14px 32px;
  border-radius: 6px;
  color: var(--theme-color-light);
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  /* background: #0d8ac1; */
}

/* Responsive */
@media(max-width: 768px) {
  .hero-banner {
    height: 700px;
  }
  .home-hero-content h1 {
    font-size: 36px;
  }
  .home-hero-content p {
    font-size: 16px;
  }
}


/* for the new menu */

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  box-shadow: none;
}

/* html body div.page-wrapper header.main-header.header-style-three div.header-top{
  display: none;
} */

html body div.page-wrapper header.main-header.header-style-three div.main-box div.logo-box div.logo{
  width: 500px;
}

.header-top .top-right {
  padding-left: 82%;
}

.header-style-three .header-top .top-right .top-social-icon li a:hover {
  color: var(--theme-color-light);
}

/* .logo-box {
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.logo-box img {
  display: block;
} */

/* .logo-box {
  background: rgba(255,255,255,0.85);
  padding: 10px 22px;
  border-radius: 40px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
} */

/* .logo-box {
  background: rgba(0,0,0,0.45);
  padding: 10px 16px;
  border-radius: 10px;
}
.logo-box img {
  filter: brightness(1.1);
} */

/* .main-header {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0)
  );
} */

.main-header .main-box .nav-outer{
  /* margin-left: 196px; */
  margin-right: -191px;
  margin-top: -100px;
}

html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown ul li a{
  color: var(--theme-color-black);
  font-weight: 500;
}

html body div.page-wrapper header.main-header.header-style-three div.main-box div.nav-outer nav.nav.main-menu ul.navigation li.dropdown ul li a:hover{
  color: var(--theme-color-light);
}
.header-style-three .main-menu .navigation li.dropdown .dropdown-btn{
  display: none;
}

.header-style-three .mobile-nav-toggler{
  color: var(--ssc-navbar);
}

/* for new menu  */

/* ================================
   MAIN MENU HOVER + ACTIVE STYLE
==================================*/

/* Default menu style */
.main-menu .navigation > li > a {
    position: relative;
    padding: 10px 16px;
    color: var(--theme-color-light);               /* default text color on banner */
    font-weight: 500;
    transition: 0.3s ease;
}

/* HOVER — Text Color Change */
.main-menu .navigation > li:hover > a {
    /* color: #1FA8E5;           */
}

/* ACTIVE — Underline Effect */
.main-menu .navigation > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;                 /* underline location */
    width: 0;
    height: 2px;
    background: var(--ssc-line);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* On hover OR active menu item */
.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li.current > a::after,
.main-menu .navigation > li.active > a::after {
    width: 60%;                   /* underline width */
}

/* ACTIVE text color */
.main-menu .navigation > li.current > a,
.main-menu .navigation > li.active > a {
    /* color: #1FA8E5; */
}

/* Sticky header menu color */
.sticky-header .main-menu .navigation > li > a {
    color: var(--theme-color-black);                  /* dark text on sticky */
}

.sticky-header .main-menu .navigation > li:hover > a,
.sticky-header .main-menu .navigation > li.current > a {
    /* color: #1FA8E5; */
}

.sticky-header .main-menu .navigation > li > a::after {
    background:var(--ssc-line);
}

.sticky-header .logo{
  width: 370px;
}
/*.main-menu .navbar-collapse{
  margin-right: -100px;
}*/

html body div.page-wrapper header.main-header.header-style-three div.auto-container div.sticky-header.fixed-header.animated.slideInDown div.auto-container div.inner-container div.nav-outer nav.main-menu div.navbar-collapse.show.collapse.clearfix ul.navigation.clearfix li.dropdown ul li a{
  font-weight: 500;
}

/* why section (in home page it services ) */

/* MAIN SECTION */
.ssc-workwithus {
    position: relative;
    padding: 100px 0;
    color: var(--theme-color-light);
    text-align: center;
    overflow: hidden;
}

/* BACKGROUND IMAGE FROM HTML */
.ssc-work-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* DARK OVERLAY */
.ssc-workwithus::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}

/* HEADER */
.ssc-work-header h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--theme-color-light);
}

.ssc-work-header p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
    color: var(--ssc-bgcolor);
}

/* GRID OF CARDS */
.ssc-work-cards {
    display: grid;
    grid-template-columns: repeat(4, 400px); /* controlled size */
    gap: 30px;
    justify-content: center;
}

.ssc-card {
    width: 350px;
  height: 350px;
    perspective: 1000px;
}


/* CARD INNER */
.ssc-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
    border-radius: 16px;
    margin-left: 20px;
}

/* HOVER EFFECT */
.ssc-card:hover .ssc-card-inner {
    transform: rotateY(180deg);
}

/* FRONT + BACK OF CARD */
.ssc-card-front,
.ssc-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    padding: 25px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* FRONT STYLE */
.ssc-card-front {
    background: var(--theme-color-light);
    color: var(--theme-color-black);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ICON */
.ssc-card-front i {
    font-size: 50px;
      color: var(--ssc-color1);
    margin-bottom: 12px;
}

/* BACK SIDE */
.ssc-card-back {
    background: var(--ssc-color1);
    color: var(--theme-color-light);
    transform: rotateY(180deg);
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.ssc-card-back p{
    color: var(--theme-color-light);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ssc-work-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .ssc-work-cards {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

.btn-two-rounded{
  min-width: 0;
}

/* on existing service card make new  */

/* WRAPPER */
.service-card {
    /* width: 350px; */
    height: 321px;
    perspective: 1000px;
}

/* INNER FLIPPER */
.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .7s ease;
}

/* HOVER FLIP */
.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

/* SIDES */
.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* FRONT */
.service-card-front {
    background: var(--ssc-color1);
    color: var(--theme-color-light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card-front svg {
    width: 70px;
    margin-bottom: 15px;
}

.service-card-front .title {
    font-size: 20px;
    margin-top: 10px;
    color: var(--theme-color-light);
}

/* BACK */
.service-card-back {
    background: var(--ssc-color1);
    color: var(--theme-color-light);
    transform: rotateY(180deg);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card-back p {
    color: var(--theme-color-light);
    margin-bottom: 20px;
}




/* extra  */

.home-hero-content{
  top: 15% !important;
}

.hero-section img{
  height: 500px !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-card {
        width: 374px;
        height: 300px;
    }
    /*.home-hero-content{
  top: 25% !important;
}*/
}
/* new block of product & SSAS  */

/* === SECTION WRAPPER === */
.neon-products-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

/* === BACKGROUND IMAGE IN HTML === */
.neon-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* === CONTENT CONTAINER ABOVE BG === */
.neon-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px;
}

/* === GENERAL BOX STYLE === */
.neon-box {
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    backdrop-filter: blur(4px);
    overflow: hidden;
}

/* === CIRCUIT OVERLAY LAYER === */
.circuit-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    opacity: 0.95;
    z-index: 1;
}

/* === TEXT + ARROW === */
.neon-box h3,
.neon-box .arrow {
    position: relative;
    z-index: 5;
    font-size: 24px;
}

/* === ORANGE VERSION === */
.orange-box {
    background: rgba(255, 120, 10, 0.08);
    border: 3px solid rgba(255, 136, 0, 0.9);
    box-shadow:
        0 0 20px rgba(255, 120, 10, 0.8),
        inset 0 0 20px rgba(255, 120, 10, 0.6);
}
.orange-box h3,
.orange-box .arrow {
    /* color: #ff8c1a; */
}
.orange-box .circuit-layer {
    background-image: url("../images/bg/borderc1.png");
}

/* === BLUE VERSION === */
.blue-box {
    background: rgba(0, 153, 255, 0.06);
    border: 3px solid rgba(0, 170, 255, 0.9);
    box-shadow:
        0 0 20px rgba(0, 153, 255, 0.9),
        inset 0 0 20px rgba(0, 153, 255, 0.7);
}
.blue-box h3,
.blue-box .arrow {
    /* color: #00aaff; */
}
.blue-box .circuit-layer {
    background-image: url("../images/bg/borderc2.png");
}

/* === ARROW STYLE === */
.arrow {
    display: block;
    margin-top: 10px;
    font-size: 32px;
}


.neon-orange {
    font-size: 40px;
    font-weight: 800;
    color: var(--theme-color-light);
    letter-spacing: 2px;

    /* MAIN GLOW */
    text-shadow:
        0 0 6px #ff8a33,
        0 0 10px #ff6a00,
        0 0 20px #ff6a00,
        0 0 40px #ff4500;


    /* BACKLIGHT */
    background: radial-gradient(circle, rgba(255,90,0,0.35) 0%, rgba(0,0,0,0) 70%);
    padding: 91px 30px;
    border-radius: 10px;
    display: inline-block;
}

.neon-blue {
    font-size: 40px;
    font-weight: 800;
    color: var(--theme-color-light);
    letter-spacing: 2px;

    /* MAIN GLOW */
    text-shadow:
        0 0 6px #4dc3ff,
        0 0 10px #0095ff,
        0 0 20px #0095ff,
        0 0 40px #0066ff;


    /* BACKLIGHT */
    background: radial-gradient(circle, rgba(0,120,255,0.25) 0%, rgba(0,0,0,0) 70%);
    padding: 113px 50px;
    border-radius: 10px;
    display: inline-block;
}

.title-row {
    display: flex;
    align-items: center;         /* space between text and arrow */
}

/* OPTIONAL: Bigger arrow styling */
.title-row .arrow {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    margin-left: -41px;
  margin-top: -19px;
}

html body div.page-wrapper section.neon-products-section img.neon-bg{
  margin-top: -50px;
}

.home-hero-content h2 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-corner {
  position: absolute;
  top: -42px;
  left: 0;
  width: 600px;
  height: 180px;
  z-index: 50;
  pointer-events: none;
}

.hero-corner .corner-shape {
  width: 100%;
  height: auto;
  display: block;
}

    .hero-corner .corner-logo {
        position: absolute;
        top: 0px;
        left: 20px;
        width: 400px;
        height: auto;
    }

html body div.page-wrapper section.ssc-workwithus.mb-50{
  margin-top: -50px;
}

/* new changes  */

.services-section .container{
  max-width: 1600px;
}

html body div.page-wrapper section.team-section-three.pb-120 div.container-fluid.px-5{
  margin-top: 20px;
}

/* objective section  */

/* col-4, col-8 layout  */
.objective-section .tab-pane .content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* left image */
.objective-section .tab-pane .content .image {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/* right content  */
.objective-section .tab-pane .content ul {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}

/* Image control */
.objective-section .tab-pane .content .image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

/* Text improvement */
.objective-section .tab-pane .content ul li {
  font-size: 18px;
  line-height: 1.8;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .objective-section .tab-pane .content {
    flex-direction: column;
  }

  .objective-section .tab-pane .content .image,
  .objective-section .tab-pane .content ul {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.tab-pane.fade.show.active div.content div.tab-text p{
  font-size: 20px;
}

html body div.page-wrapper footer.main-footer.footer-style-three.pt-100 div.container div.widgets-section div.row.g-5.g-xl-0 div.col-lg-8 div.row.g-4.g-xl-0 div.col-sm-6.col-xl-3.footer-column div.footer-widget.links-widget.contact-widget div.widget-content ul.user-links li a{
  color: var(--ssc-light-color);
}

/* for hero section  */

  /* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Banner Image */
.hero-section img {
    width: 100%;
    height: 400px;           
    object-fit: cover;       
    display: block;
}

/* Overlay */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 60, 0.65); 
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Text Over Image */
.hero-content {
    position: absolute;
    top: 60% !important;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    /* color: white; */
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    color: var(--ssc-bgcolor);
    line-height: 50px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-top: 10px;
    color: var(--ssc-bgcolor);
}

/* timeline  */

.story-description-box strong {
  color: inherit;
  font-weight: 700;
}

.corner-shape {
  pointer-events: none;
}


.hero-corner {
  position: relative;
}

.corner-link {
  display: block;
}

.corner-shape {
  display: block;
  cursor: pointer;
  pointer-events: auto;
}

.corner-logo {
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 5;
}

.header-style-three .main-box {
  padding: 0;
}

/* for product redirct button  */

.ssc-contracts-header-section {
    background-color: var(--ssc-btn-text); /* adjust if needed */
    padding: 30px 40px;
}

.ssc-contracts-header {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ssc-contracts-header h2 {
    color: var(--theme-color-light);
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    line-height: 40px;
}

.ssc-btn {
    background-color: var(--theme-color-light);
    color: var(--ssc-btn-text);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ssc-btn:hover {
    background-color: var(--theme-color-light);
  color: var(--ssc-btn-text);
}

/* for cta  */

.funfact-block .inner-box .content-box .title {
  font-size: 40px;
}

/* preloader  */

.preloader::before {
  top: 60%;
}

.preloader::after {
  height: 400px;
  width: 500px;
  margin-left: -260px;
  top: 215px;
}

/* for arrow down in index banner */

.scroll-down {
  text-align: center;
}

.scroll-down a {
  display: inline-block;
  font-size: 30px;
  color: var(--theme-color-light); 
  animation: scrollBounce 1.6s infinite;
}

.scroll-down a:hover {
  color:var(--ssc-orange-color); 
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}


/* Top half background */
.funfact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  background-color: var(--ssc-bgcolor);
  z-index: -1;
}



.funfact-section::after {
  background-color: var(--ssc-bgcolor);
}

/* for social media icon position  */


/* news date alignment  */

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meta-row .post-date {
  margin: 0;
  font-size: 18px;
}

.content h4.title a:hover, 
.content h4.title a:focus{
  color: var(--headings-color);
}

.meta-row span.sub-title{
    font-size: 19px !important;
    color: var(--theme-color6) !important;
}

.content h4.title{
  margin: 8px 0;
}

.user-links {
    width: 245px;
}

@media (min-width: 992px) and (max-width: 1366px) {

.swiper.testimonial-slider-three.swiper-initialized.swiper-horizontal {
        width: 652px;
    }

    .testimonial-slider-three .swiper-slide {
        width: 100% !important;
        flex-shrink: 0;
    }

    .col-xl-7 {
        min-width: 0;
    }
}

.text-message {
    color: red;
}
.text-end {
    display: flex;
}