/**
/* Author: Rivertree Technologies / @olukmark
/* 
**/
:root {
  --starface-sandy-brown: #ffb567;
  --starface-brown: #ffaa0e;
  --bg-offwhite: #e1ecf9;
  --starface-grey: #4a5769;
  --starface-navy: #00344f;
  --starface-purple: #b1d3e4;
  --starface-light-blue: #66B2FF;
  --starface-light-grey: #f7f8fb;
  --starface-primary: #0065a3;

  --text-dark: #333;
  --text-light: #777;
  --card-bg: #ffffff;
  --hover-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}


/* color scheme */
.bg-starface-primary {
  background-color: var(--starface-primary);
}

.bg-sandy-brown {
  background-color: var(--starface-sandy-brown);
}

.bg-brown {
  background: var(--starface-brown);
}

.bg-offwhite {
  background: var(--bg-offwhite);
}

.bg-purple {
  background: var(--starface-purple);
}

/* Typography */
.text-primary {
  color: var(--starface-primary);
}

.white-text {
  color: #fff
}

.grey-text {
  color: var(--starface-grey);
}

.navy-text {
  color: var(--starface-navy);
}

h3>a {
  color: var(--starface-navy);
}

a {
  color: var(--starface-light-blue);
  text-decoration: none;
}

/* Base */
html {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--starface-primary) #f1f1f1;
}

html {
  scrollbar-color: #667eea #f1f1f1;
  /* scrollbar-color: thumb-color track-color */
}

body {
  font-weight: 400;
  font-size: 1rem;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  background-color: var(--starface-light-grey);
  min-width: 320px;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.border-2 {
  border-width: 2px;
}

.text-black {
  color: #000 !important;
}

.bg-black {
  background: #000 !important;
}

.color-black-opacity-5 {
  color: rgba(0, 0, 0, 0.5);
}

.color-white-opacity-5 {
  color: rgba(255, 255, 255, 0.5);
}

body:after {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu {
  position: relative;
}

.offcanvas-menu:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.2);
}

.btn {
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 10px 15px;
}

.btn:hover,
.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn.btn-primary {
  background: #6f42c1;
  border-color: #6f42c1;
  color: #fff;
}

.btn.btn-primary:hover {
  background: #6f42c1;
  border-color: #6f42c1;
  color: #fff;
}

.btn.btn-primary.btn-black--hover:hover {
  background: #666666;
  color: #fff;
}

.btn.btn-white {
  border-color: #fff;
  color: #6f42c1;
  background: #fff;
}

.btn.btn-white:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn.btn-outline-white {
  border-color: #fff;
  color: #fff;
}

.btn.btn-outline-white:hover {
  background: #fff;
  color: #6f42c1;
}

.btn-animate {
  transform: translate(40px, 40px);
}

.line-height-1 {
  line-height: 1 !important;
}

.bg-black {
  background: #000;
}

.form-control {
  height: 43px;
  border-radius: 4px;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.form-control:active,
.form-control:focus {
  border-color: #6f42c1;
}

.form-control:hover,
.form-control:active,
.form-control:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

main {
  background-image: url("https://newsreach.in/wp-content/uploads/2024/07/Highlight.png");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.site-section {
  padding: 2.5em 0;
}

@media (min-width: 768px) {
  .site-section {
    padding: 8em 0;
  }
}

.site-section.site-section-sm {
  padding: 4em 0;
}

.site-section-heading {
  padding-bottom: 20px;
  margin-bottom: 0px;
  position: relative;
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .site-section-heading {
    font-size: 3rem;
  }
}

.site-footer {
  padding: 2em 0;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 2em 0;
  }
}

.site-footer .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.site-footer p {
  color: #fff
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5 {
  color: #fff;
}

.site-footer a {
  font-weight: 700;
}

.site-footer a:hover {
  color: black;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer .footer-heading {
  font-size: 16px;
  color: #000;
}

.bg-text-line {
  display: inline;
  background: #000;
  -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
  box-shadow: 20px 0 0 #000, -20px 0 0 #000;
}

.text-black-opacity-05 {
  color: rgba(0, 0, 0, 0.5);
}

.text-black-opacity-05 {
  color: rgba(0, 0, 0, 0.5);
}

.hover-bg-enlarge {
  overflow: hidden;
  position: relative;
}

@media (max-width: 991.98px) {
  .hover-bg-enlarge {
    height: auto !important;
  }
}

.hover-bg-enlarge>div {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .8s all ease-in-out;
  -o-transition: .8s all ease-in-out;
  transition: .8s all ease-in-out;
}

.hover-bg-enlarge:hover>div,
.hover-bg-enlarge:focus>div,
.hover-bg-enlarge:active>div {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

@media (max-width: 991.98px) {
  .hover-bg-enlarge .bg-image-md-height {
    height: 300px !important;
  }
}

.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bg-image.overlay {
  position: relative;
}

.bg-image.overlay:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.bg-image>.container {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .img-md-fluid {
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {

  .display-1,
  .display-3 {
    font-size: 3rem;
  }
}

.play-single-big {
  width: 90px;
  height: 90px;
  display: inline-block;
  border: 2px solid #fff;
  color: #fff !important;
  border-radius: 50%;
  position: relative;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.play-single-big>span {
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-40%, -50%);
  -ms-transform: translate(-40%, -50%);
  transform: translate(-40%, -50%);
}

.play-single-big:hover {
  width: 120px;
  height: 120px;
}

.overlap-to-top {
  margin-top: -150px;
}

.ul-check {
  margin-bottom: 50px;
}

.ul-check li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.ul-check li:before {
  left: 0;
  font-size: 20px;
  top: -.3rem;
  font-family: "icomoon";
  content: "\e5ca";
  position: absolute;
}

.ul-check.white li:before {
  color: #fff;
}

.ul-check.success li:before {
  color: #a8df65;
}

.ul-check.primary li:before {
  color: #6f42c1;
}

.ul-check li.remove {
  text-decoration: line-through;
  color: #dee2e6;
}

.ul-check li.remove:before {
  color: #dee2e6;
}

.select-wrap,
.wrap-icon {
  position: relative;
}

.select-wrap .icon,
.wrap-icon .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
}

.select-wrap select,
.wrap-icon select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

/* Navbar */
.site-logo {
  font-size: 20px;
  font-weight: bold;
}

.site-logo img {
  height: 50px;
}

header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: absolute;
  top: 0;
  width: 100%;
}

.site-navbar .site-logo {
  position: relative;
  left: 0;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active {
  color: #6f42c1;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li {
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li.active>a {
  font-weight: 700;
}

.site-navbar .site-navigation .site-menu>li>a {
  padding: 20px 20px;
  color: #fff;
  display: inline-block;
  text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu>li>a:hover {
  color: #6f42c1;
}

.site-navbar .site-navigation .site-menu>li.social>a {
  top: 15px;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #efefef;
  border-radius: 50%;
}

.site-navbar .site-navigation .site-menu>li.social>a span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-navbar .site-navigation .site-menu>li.social>a:hover {
  color: #6f42c1;
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children>a {
  position: relative;
  padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #6f42c1;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #000;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active {
  color: #6f42c1 !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 210px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
  padding: 9px 20px;
  display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
  background: #eff1f3;
  color: #000;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
  content: "\e315";
  right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
  left: 100%;
  top: 0;
}

.site-navbar .site-navigation .site-menu .has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children:focus>a,
.site-navbar .site-navigation .site-menu .has-children:active>a {
  color: #6f42c1;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: #6f42c1;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li .active {
  color: #6f42c1;
}

.site-mobile-menu .site-nav-wrap .social {
  display: inline-block;
}

.site-mobile-menu .site-nav-wrap .social:hover {
  color: #6f42c1;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap>li.social {
  float: none !important;
  width: auto !important;
}

.site-mobile-menu .site-nav-wrap>li>a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
  font-size: 16px;
  padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li:first-child a {
  padding-left: 15px !important;
}

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper .site-navbar .site-menu-toggle {
  color: #000;
}

.sticky-wrapper .site-navbar .site-logo a {
  color: #000;
}

.sticky-wrapper .site-navbar .site-menu>li>a {
  color: #fff !important;
}

.sticky-wrapper .site-navbar .site-menu>li>a:hover,
.sticky-wrapper .site-navbar .site-menu>li>a.active {
  color: #00344f !important;
}

.sticky-wrapper.is-sticky .site-navbar {
  background: #fff;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
}

.sticky-wrapper.is-sticky .site-navbar .site-menu-toggle {
  color: #000;
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #000;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a {
  color: #000 !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a.active {
  color: #00344f !important;
}


/* Blocks */
.hero-v1 {
  padding: 8rem 0 8rem 0;
  background: rgba(111, 66, 193, 0.1);
  overflow: hidden;
}

.hero-v1 .heading {
  font-weight: 900;
  color: #6f42c1;
  font-size: 40px;
}

@media (max-width: 991.98px) {
  .hero-v1 .heading {
    font-size: 30px;
  }
}

.hero-v1 .subheading {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(111, 66, 193, 0.5);
  letter-spacing: .1rem;
  font-weight: 900;
}

.hero-v1 .illustration {
  position: relative;
  margin-top: -100px;
  position: absolute;
}

.hero-v1 .illustration-2 {
  position: relative;
  margin-top: -200px;
  position: absolute;
}

.hero-v1 {
  background-image: url("../images/banner.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.custom-shape-divider-bottom-1630920106 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1630920106 svg {
  position: relative;
  display: block;
  width: calc(179% + 1.3px);
  height: 169px;
}

.custom-shape-divider-bottom-1630920106 .shape-fill {
  fill: #f7f8fb
}

.slide-item,
.cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-item.overlay,
.cover.overlay {
  position: relative;
}

.slide-item.overlay:before,
.cover.overlay:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
}

.slide-item>.container,
.cover>.container {
  position: relative;
  z-index: 2;
}

.slide-item,
.slide-item>.container>.row,
.cover,
.cover>.container>.row {
  height: 100vh;
  min-width: 760px;
}

.slide-item .heading,
.cover .heading {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.slide-pagination {
  position: relative;
  z-index: 2;
}

.slide-pagination .pagination-item {
  padding: 30px;
  background: #f8f9fa;
}

.slide-pagination .pagination-item.active {
  background: #fff;
  position: relative;
}

.slide-pagination .pagination-item.active:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  margin-top: -3px;
  background: #6f42c1;
}

.slide-pagination .pagination-item>.icon-wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90px;
  flex: 0 0 90px;
}

.slide-pagination .pagination-item>.icon-wrap img {
  width: 90px;
}

.slide-pagination .pagination-item>div .subheading {
  font-size: 12px;
}

.slide-pagination .pagination-item>div .heading {
  font-size: 16px;
  font-weight: bold;
}

.site-section {
  padding: 50px 0;
}

.services-section {
  width: 100%;
  max-width: 1200px;
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading {
  font-size: 2.8rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, #3498db, #2c3e50);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.service-card:hover::before {
  height: 100%;
  opacity: 0.97;
}

.service-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(44, 62, 80, 0.1);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
  transition: all 0.4s ease;
  z-index: 2;
}

.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.2);
}

.service-title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin: 15px 0 20px;
  transition: all 0.4s ease;
  z-index: 2;
}

.service-card:hover .service-title {
  color: white;
  transform: translateY(-10px);
}

.service-more {
  display: inline-flex;
  align-items: center;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 2;
}

.service-card:hover .service-more {
  opacity: 1;
  transform: translateY(0);
  color: white;
}

.service-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-more:hover i {
  transform: translateX(5px);
}

.service-icon {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  z-index: 2;
}

.service-card:hover .service-icon {
  color: #ffffff;
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .section-heading {
    font-size: 2.2rem;
  }

  .service-card {
    height: 250px;
    padding: 30px 20px;
  }
}

.card__arrow {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.gradient-card {
  position: relative;
  padding: 1px;
  border-radius: 20px;
  overflow: hidden;
  transition: .4s ease-out;
  background: linear-gradient(332deg, #ffffff, #f5f5f5 90%);
}

.counter-wrap {
  text-align: center;
}

.counter-wrap .counter {
  font-size: 60px;
  color: #fff;
}

.counter-wrap span {
  color: rgba(255, 255, 255, 0.5);
}

.custom-media {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.custom-media .text {
  background: #6f42c1;
  padding: 20px;
}

.custom-media .text h3 {
  color: #fff;
  font-size: 20px;
}

.custom-media .img-bg {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 250px;
  width: 100%;
}

.feature h3 {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

.feature .img-wrap {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  background: #fff;
}

.feature .img-wrap img {
  position: absolute;
  width: 36px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.testimonial {
  background: #fff;
  padding: 20px;
  border: 1px solid #f8f9fa;
}

.testimonial img {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 30px;
  margin-top: -50px;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
}

.testimonial blockquote {
  font-size: 18px;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: italic;
}

.testimonial blockquote .quote {
  color: #000;
}

.testimonial blockquote .author {
  color: #aaa;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
}

/*PRELOADING------------ */
#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loader {
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* covid */
.data {
  text-align: center;
}

.data .icon {
  position: relative;
}

.data .icon span {
  font-size: 2rem;
}

.data .icon:before {
  display: none;
  content: "";
  position: absolute;
  width: 50px;
  left: 0px;
  top: -40px;
  height: 50px;
  background: rgba(111, 66, 193, 0.1);
  z-index: -1;
  border-radius: 50%;
}

.data .number {
  font-size: 2rem;
  color: #000;
  font-weight: 900;
}

.data .label {
  color: #aaa;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .1rem;
  font-weight: 700;
}

.list-check li {
  padding-left: 30px;
  position: relative;
}

.list-check li:before {
  color: #6f42c1;
  top: .2rem;
  font-family: 'icomoon';
  content: '\e86c';
  position: absolute;
  left: 0;
}

.stats .heading-wrap {
  background: #6f42c1;
  position: relative;
  border-bottom-right-radius: 50%;
}

@media (max-width: 991.98px) {
  .stats .heading-wrap {
    height: 100px !important;
    margin-bottom: 30px;
  }
}

.stats .heading {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.section-heading {
  font-size: 30px;
  font-weight: 900;
  color: var(--starface-primary);
}

@media (max-width: 991.98px) {
  .section-heading {
    font-size: 24px;
  }
}

.img-play-vid {
  position: relative;
}

.img-play-vid .absolute-block {
  position: absolute;
  bottom: 0;
  right: 0;
}

.img-play-vid .absolute-block .text {
  margin-top: -40px;
  color: #fff;
  margin-right: 80px;
  position: relative;
}

.img-play-vid .btn-play {
  display: inline-block;
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #6f42c1;
  color: #fff;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
}

.img-play-vid .btn-play span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.feature-v1 h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 0;
  color: #6f42c1;
}

.feature-v1 span {
  color: #aaa;
}

.feature-v1 .icon-wrap {
  font-size: 2.5rem;
}

.feature-v1 .icon-wrap span {
  color: #6f42c1;
}

.bg-primary-light {
  background: rgba(111, 66, 193, 0.05);
}

.media-v1 {
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #fff;
}

.media-v1 .icon-wrap {
  height: 140px;
  width: 100%;
  background: #6f42c1;
  color: #6f42c1;
  text-align: center;
  position: relative;
}

.media-v1 .icon-wrap span {
  position: absolute;
  font-size: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.media-v1.bg-1 .icon-wrap {
  background: rgba(111, 66, 193, 0.2);
}

.media-v1.bg-2 .icon-wrap {
  background: #47eef4;
}

.media-v1.bg-3 .icon-wrap {
  background: #e84a5f;
}

.media-v1.bg-4 .icon-wrap {
  background: #a8df65;
}

.media-v1 .body {
  padding: 30px;
}

.media-v1 .body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--starface-navy);
}

.media-v1 .body p {
  color: #aaa;
  font-size: 14px;
}

.media-v1 .body *:last-child {
  margin-bottom: 0;
}

.post-entry {
  text-align: center;
}

.post-entry .thumb {
  display: block;
  position: relative;
  margin-bottom: 20px;
}

.post-entry .thumb .date {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -5px;
  background: #6f42c1;
  padding: 5px 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05rem;
  color: #fff;
}

.post-entry .post-meta {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.post-entry .post-meta,
.post-entry .post-meta a {
  color: #ccc;
}

.post-entry .post-meta a {
  margin: 0px 10px;
  display: inline-block;
}

.post-entry .post-meta a:hover {
  color: #aaa;
}

.post-entry .post-meta [class*='icon-'] {
  color: #ccc;
}

.post-entry h3 {
  font-size: 18px;
  font-weight: 700;
}

.do h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.do .check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.do .check li:before {
  color: #1a1a1a;
  position: absolute;
  content: '';
  display: block;
  width: .6rem;
  height: .6rem;
  border-radius: 9999px;
  background-color: #747c87;
  left: 0;
  top: .50rem;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.dont h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.dont .cross li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.dont .cross li:before {
  position: absolute;
  left: 0;
  top: 0;
  color: #e84a5f;
  font-family: 'icomoon';
  content: "\e5cd";
}

.prog-card {
  padding: 30px;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}

.prog-card .img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  margin-right: 20px;
}

.prog-card .img img {
  max-width: 100%;
  margin-bottom: 0;
}

.prog-card .text {
  padding-top: 10px;
}

.prog-card .text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #6f42c1;
}

.prog-card .text p {
  line-height: 1.5;
  font-size: 15px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .prog-card {
    display: flex;
    flex-direction: column;
  }
}

.note {
  padding: 20px;
  border-radius: 4px;
}

.note strong {
  color: #6f42c1;
}

.team {
  text-align: center;
}

.team img {
  margin-bottom: 30px;
  width: 170px;
  border-radius: 40%;
}

.team h3 {
  font-size: 18px;
  font-weight: 700;
  color: #6f42c1;
}

.side-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 40px;
  display: block;
  color: #000;
}

.quick-contact .d-flex {
  margin-bottom: 10px;
}

.quick-contact [class*="icon-"] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: rgba(111, 66, 193, 0.05);
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  margin-right: 20px;
  color: #6f42c1;
}

.custom-pagination a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  background: #6f42c1;
  color: #fff;
}

.custom-pagination a.active {
  background: rgba(111, 66, 193, 0.05);
  color: #6f42c1;
}

/* Blog */
.sidebar-box {
  margin-bottom: 30px;
  padding: 25px;
  font-size: 15px;
  width: 100%;
  float: left;
  background: #fff;
}

.sidebar-box *:last-child {
  margin-bottom: 0;
}

.sidebar-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.categories li,
.sidelink li {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #dee2e6;
  list-style: none;
}

.categories li:last-child,
.sidelink li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.categories li a,
.sidelink li a {
  display: block;
}

.categories li a span,
.sidelink li a span {
  position: absolute;
  right: 0;
  top: 0;
  color: #ccc;
}

.categories li.active a,
.sidelink li.active a {
  color: #000;
  font-style: italic;
}

.comment-form-wrap {
  clear: both;
}

.comment-list {
  padding: 0;
  margin: 0;
}

.comment-list .children {
  padding: 50px 0 0 40px;
  margin: 0;
  float: left;
  width: 100%;
}

.comment-list li {
  padding: 0;
  margin: 0 0 30px 0;
  float: left;
  width: 100%;
  clear: both;
  list-style: none;
}

.comment-list li .vcard {
  width: 80px;
  float: left;
}

.comment-list li .vcard img {
  width: 50px;
  border-radius: 50%;
}

.comment-list li .comment-body {
  float: right;
  width: calc(100% - 80px);
}

.comment-list li .comment-body h3 {
  font-size: 20px;
}

.comment-list li .comment-body .meta {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .1em;
  color: #ccc;
}

.comment-list li .comment-body .reply {
  padding: 5px 10px;
  background: #e6e6e6;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
}

.comment-list li .comment-body .reply:hover {
  color: #000;
  background: #e3e3e3;
}

.search-form {
  background: #f7f7f7;
  padding: 10px;
}

.search-form .form-group {
  position: relative;
}

.search-form .form-group input {
  padding-right: 50px;
}

.search-form .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post-meta {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.post-meta a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

figure figcaption {
  margin-top: .5rem;
  font-style: italic;
  font-size: .8rem;
}

.card-title {
  font-size: 1.4rem;
  color: #000;
}

/* Parallax */
.contact-parallax {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/contact.jpg");
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Social links */
.social-link {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.social-link:hover,
.social-link:focus {
  background: #ddd;
  text-decoration: none;
  color: #555;
}

.hero-image {
  background: linear-gradient(180deg, rgba(0, 50, 77, 0) 0%, rgb(0, 52, 79) 100%), url("../images/banner.png");
  background-blend-mode: multiply;
  background-color: #cccccc;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 50, 77, 0) 0%, rgb(0, 52, 79) 100%), url("https://i.ibb.co/MD89HmZX/workers.jpg");
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  background-color: #cccccc;
  position: relative;

}

/* Spacing */


@media screen and (max-width: 768px) {
  .mt-sm-5 {
    margin-top: 80px;
  }
}

/* Donate */

.donate__form-wrapper {
  width: 100%;
  max-width: 35rem;
}

.decoration__wrapper--small.decoration__wrapper--bl {
  margin: 0 0 1.1875rem 0;
  -webkit-transform: translateX(0.9895rem);
  transform: translateX(0.9895rem);
}

.decoration__wrapper--bl {
  margin: 0 0 2.25rem 0;
  -webkit-transform: translateX(1.875rem);
  transform: translateX(1.875rem);
}

.decoration__wrapper {
  width: calc(100% - 1.875rem);
  position: relative;
}

.donate__form {
  padding: 2.875rem 2.875rem 3.75rem;
}

.position-relative {
  position: relative;
}

.donation-form {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.progress-bar {
  font-size: 0;
  margin-bottom: 20px;
}

.progress-bar__step--active {
  background: #0083ca;
}

.progress-bar__step {
  height: 5px;
  display: inline-block;
  width: 24%;
  background: #c0d7f1;
}

.form-header {
  margin-bottom: 40px;
}

.form-header__page {
  background: #001f2e;
  display: inline-block;
  color: #fff;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  vertical-align: middle;
  margin-right: 10px;
}

.form-header__title {
  font-size: 24px;
  font-weight: 800;
  display: inline-block;
  vertical-align: middle;
  color: #001f2e;
}

.payment-frequency {
  font-size: 0;
  margin-bottom: 20px;
}

.donation-form a {
  color: #0083ca;
}

.payment-frequency__selection--active {
  background: #0083ca;
  border-color: #0083ca;
  color: #fff !important;
}

.payment-frequency__selection {
  display: inline-block;
  width: 50%;
  font-size: 18px;
  border: 2px solid #001f2e;
  border-top-color: rgb(0, 31, 46);
  border-right-color: rgb(0, 31, 46);
  border-bottom-color: rgb(0, 31, 46);
  border-left-color: rgb(0, 31, 46);
  border-radius: 3px 0 0 3px;
  background: #fff;
  color: #001f2e;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
}

.payment-frequency__selection+.payment-frequency__selection:not(.payment-frequency__selection--full) {
  border-radius: 0 3px 3px 0;
  border-left: 0;
}

.donation-form a {
  color: #0083ca;
}

.payment-frequency__selection {
  display: inline-block;
  width: 50%;
  font-size: 18px;
  border: 2px solid #001f2e;
  border-left-color: rgb(0, 31, 46);
  border-left-style: solid;
  border-left-width: 2px;
  border-radius: 3px 0 0 3px;
  background: #fff;
  color: #001f2e;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
}

.payment-frequency__selection .emoji {
  width: .9em !important;
  height: .9em !important;
}

img.wp-smiley,
img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}

img {
  border-style: none;
}

html :where(img) {
  height: auto;
  max-width: 100%;
}

.choose-amount {
  font-size: 0;
}

.donation-form a {
  color: #0083ca;
}

.choose-amount__option {
  padding: 15px 10px;
}

.choose-amount__option {
  border: 2px solid #001f2e;
  border-radius: 3px;
  padding: 15px 25px;
  display: inline-block;
  font-weight: bold;
  width: calc(25% - 6px);
  text-decoration: none;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  color: #001f2e;
  font-weight: 700;
}

.choose-amount__option {
  margin-left: 8px;
}

.donation-form a {
  color: #0083ca;
}

.choose-amount__option {
  padding: 15px 10px;
}

.choose-amount__option--active {
  background: #0083ca;
  border-color: #0083ca;
  color: #fff !important;
}

.choose-amount__option {
  border: 2px solid #001f2e;
  border-top-color: rgb(0, 31, 46);
  border-right-color: rgb(0, 31, 46);
  border-bottom-color: rgb(0, 31, 46);
  border-left-color: rgb(0, 31, 46);
  border-radius: 3px;
  padding: 15px 25px;
  display: inline-block;
  font-weight: bold;
  width: calc(25% - 6px);
  text-decoration: none;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  color: #001f2e;
  font-weight: 700;
}

.choose-amount__custom {
  margin-top: 20px;
}

.donation-form .text-input.small {
  font-size: 13px;
  font-weight: normal;
}

.donation-form .text-input {
  font-size: 16px;
  color: #00344f;
  font-weight: 700;
  margin-bottom: 15px;
}

.donation-form label {
  width: 100%;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
  vertical-align: top;
}

input[type="text"],
.donation-form label input[type="number"],
.donation-form .stripe-input {
  margin-top: 5px;
}

.donation-form input[type="text"],
.donation-form input[type="number"],
.donation-form .stripe-input {
  height: 48px;
  padding: 0 10px;
  font-size: 16px;
  width: 100%;
  background: #f7fafe;
  border: 1px solid #c6d0dd;
  border-radius: 3px;
  vertical-align: top;
}

form input,
form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input,
textarea,
select {
  border: 1px solid #c4d0de;
  background-color: #f6faff;
  color: #0083ca;
  outline-offset: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  padding: 1.125rem 1.1875rem 1.1875rem;
  line-height: 1.375;
  border-radius: 4px;
  width: 100%;
}

button,
input {
  overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  margin-top: 0px;
}

button {}

.button-small {
  padding-top: .375rem;
  padding-bottom: .375rem;
  font-size: 1rem;
  padding: .5rem 1.375rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.5;
}

.fund-selection {
  position: relative;
}

.fund-selection {
  margin-top: 20px;
  color: #757c86;
  font-size: 13px;
}

.login-option {
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: right;
}

.login-option__login {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
  color: #4a5769;
}

.login-option__skip {
  display: inline-block;
}

.donation-form .donate-button,
.donation-form .paypal-button {
  font-size: 1rem;
  padding: .8125rem 1.625rem;
}

/* icons */
.icon img {
  height: 50px;
  width: 50px;
}

.card__icon--small .card__icon-image {
  width: 57.5%;
  height: 54.1667%;
}

.card__icon--shadow {
  -webkit-box-shadow: 0 16px 14px 0 rgba(0, 0, 0, 0.42);
  box-shadow: 0 16px 14px 0 rgba(0, 0, 0, 0.42);
}

.card__icon--small {
  width: 7.5rem;
  height: 7.5rem;
}

.card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  z-index: 2;
}

.rounded-full {
  border-radius: 9999px;
}

.background-color--white {
  background: #fff;
}

.card-content {
  width: calc(100% - 0.75rem);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media (min-width: 37.5625em) {
  .padding-bottom-xl\@s {
    padding-bottom: 7rem;
  }
}

.card__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 4.3125rem;
  height: 4.3125rem;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(1rem, 50%);
  transform: translate(1rem, 50%);
  z-index: 1;
  border: 8px solid #fff;
}

.rounded-full {
  border-radius: 9999px;
}

.card__arrow-icon {
  width: 1.9375rem;
  height: 1.1875rem;
}

@media (min-width: 48em) {
  .card-content:hover {
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
    -webkit-transition: all .3s;
    transition: all .3s;
  }
}

@media (min-width: 37.5625em) {
  .padding-bottom-xl\@s {
    padding-bottom: 7rem;
  }
}

.card__content {
  width: calc(100% - 0.75rem);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

body
/* Newsletter form */

.footer-form {
  padding: 3.1875rem 4.9375rem 4.3125rem 3.375rem;
  -webkit-transform: translateY(-5.875rem);
  transform: translateY(-5.875rem);
}

.bg-navy {
  background: #00344f;
}

.columns:not([class*="overflow-"]) {
  overflow: hidden;
}

.flex-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -2rem !important;
}

.signup__field {
  border: 0;
  background-color: transparent !important;
  color: #fff;
  padding: 1rem 0;
  border-radius: 0;
  width: calc(100% - 5.875rem);
}

form input,
form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}


.signup__field {
  border: 0;
  background-color: transparent !important;
  color: #fff;
  padding: 1rem 0;
  border-radius: 0;
  width: calc(100% - 5.875rem);
  border-bottom: 4px solid #fff;
}

.signup__submit:hover,
.signup__submit:focus {
  background-color: #f9ba00;
}

form input,
form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input,
textarea,
select {
  border: 1px solid #c4d0de;
  background-color: #f6faff;
  color: #0083ca;
  outline-offset: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  padding: 1.125rem 1.1875rem 1.1875rem;
  line-height: 1.375;
  border-radius: 4px;
  width: 100%;
}

button,
input {
  overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

.signup__submit {
  position: absolute;
  right: 0;
  top: 70%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0;
  background-color: #ffc20e;
  background-image: url("../fonts/svg-icons/arrow--right--navy.svg");
  background-position: center center;
  background-size: 1.25rem .75rem;
  background-repeat: no-repeat;
  color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  padding: 0;
  line-height: 0;
  border-radius: 30px;
  width: 4.875rem;
  height: 2rem;
  overflow: hidden;
  white-space: nowrap;
}

.signup__wrapper {
  border-top: 4px solid transparent;
  position: relative;
}

/*Turn off display on device */

@media (max-width: 768px) {
  .display-none {
    display: none;
  }
}


.a-hover:hover {
  box-shadow: 0 0 0 5px var(--starface-navy);
}

section.page-title.parallax {
  height: 450px;
}

section.page-title.header-parallax {
  height: 450px;
}

section.page-title {
  height: 350px;
  padding: 0;
}

section.parallax {
  padding: 0;
  background-color: transparent;
  border: 0;
}


.about-header-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/starface-03.jpg");
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.our-services-parallax {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("");
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-parallax {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("images/contact.jpg");
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-parallax {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("images/parallax-phone-2.jpg");
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://i.ibb.co/23Ln9hgR/mohammad-rahmani-Y5yxdx2a4-PI-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* For parallax effect */
  z-index: -1;
  color: white;
}

/* Optional: Add overlay color on top of background image */
.parallax-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(76, 83, 103, 0.5);
  z-index: 1;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 750px) {
  .parallax {
    background-attachment: scroll;
  }
}

section {
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.centrize {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  position: relative;
}

.v-center {
  display: table-cell;
  vertical-align: middle;
}

section.page-title .title {
  margin: 0;
}

.title.center {
  text-align: center;
}

.title {
  margin-top: 25px;
  margin-bottom: 25px;
  position: relative;
  z-index: 10;
}

section.page-title .title h1.upper {
  font-size: 55px;
  letter-spacing: 10px;
}

section.page-title .title h1 {
  font-size: 64px;
  margin-bottom: 20px;
  font-weight: 700;
}

.upper {
  text-transform: uppercase;
  color: #fff;
}

.dot::before {
  content: ".";
  color: #fa9d1c;
  font-size: 46px;
}

/* carousel */
.MultiCarousel {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  position: relative;
}

.MultiCarousel .MultiCarousel-inner {
  transition: 1s ease all;
  float: left;
}

.MultiCarousel .MultiCarousel-inner .item {
  float: left;
}

.MultiCarousel .MultiCarousel-inner .item>div {
  text-align: center;
  margin: 10px;
  background: #f1f1f1;
  color: #666;
}

.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 20px);
}

.MultiCarousel .leftLst {
  left: 0;
}

.MultiCarousel .rightLst {
  right: 0;
}

.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
  pointer-events: none;
  background: #ccc;
}

.pad15 {
  height: 300px;
}

.pad15>img {
  height: inherit;
  width: 100%;
}


/* video */

.video-selected {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.video-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  margin-bottom: 10px;
}

.video-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-thumbnails {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.video-thumb {
  min-height: 200px;
  height: auto;
}

.video-thumb img {
  background-color: #d8d9da;
  width: 100%;
  height: 100px;
}

.video-thumb iframe {
  display: none;
}

.video-thumb,
.video-selected {
  padding: 5px;
}

.video-thumb p {
  margin: 0;
  font-size: 12px;
}

.video-thumb p.name {
  margin-top: 5px;
  font-weight: bold;
}

.active {
  box-shadow: 0 0 2px #898989;
}

.d-none {
  display: none
}

.bg-img {
  /*background-image: url("../images/Page123.jpg");*/
  background-size: cover;
  background-position: center center;
  height: 828.52px;
  transform: translate(0px, -0.25px);
}

@media only screen and (max-width: 768px) {
  .float-l {
    float: left;
  }
}

@media only screen and (min-width: 768px) {
  .display-none-md {
    display: none;
  }
}


.left-section {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-section {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-heading {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.description {
  font-size: 1.1rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.office-section {
  margin-bottom: 3rem;
}

.office-label {
  color: #ff6b35;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.office-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.office-address {
  color: #a0a0a0;
  line-height: 1.6;
}

.countries {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-methods {
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info h4 {
  font-size: 0.9rem;
  color: #a0a0a0;
  margin-bottom: 0.25rem;
}

.contact-info p {
  font-size: 1.1rem;
  font-weight: 500;
}

.form-tabs {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.tab {
  padding: 1rem 0;
  margin-right: 3rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab.active {
  color: #ff6b35;
  border-bottom-color: #ff6b35;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group label .required {
  color: #ff6b35;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid #333;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a0a0a0;
  margin-bottom: 2rem;
  cursor: pointer;
}

.submit-btn {
  background: #ff6b35;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: #e55a2b;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    padding: 40px 30px;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .countries {
    flex-wrap: wrap;
  }
}

.portfolio-item>div>img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
  height: 100px;
  width: 100px;
}

.portfolio-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.portfolio-item>div>img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.about-section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

.story-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #34495e;
}


.stat-item {
  text-align: center;
  margin-bottom: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.values-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.value-item {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 20px;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.value-description {
  color: #7f8c8d;
  line-height: 1.6;
}

.team-section {
  padding: 80px 0;
}

.team-member {
  text-align: center;
  margin-bottom: 50px;
}

.member-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.member-role {
  color: #667eea;
  font-weight: 500;
  margin-bottom: 15px;
}

.member-bio {
  color: #7f8c8d;
  line-height: 1.6;
}

.cta-section {
  background: var(--starface-primary);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-button {
  background: #667eea;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #5a6fd8;
  color: white;
  transform: translateY(-2px);
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--starface-primary) 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.process-step {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.process-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.tech-stack {
  background: #f8f9fa;
  padding: 3rem 0;
}

.tech-category {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-item {
  display: inline-block;
  background: #e9ecef;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


.cta-button {
  background: white;
  color: #667eea;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: #f8f9fa;
  color: #667eea;
  transform: translateY(-2px);
  text-decoration: none;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.section-padding {
  padding: 5rem 0;
}




.section-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--starface-sandy-brown), var(--starface-brown));
  border-radius: 3px;
}

.stats .text-center p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 40px;
}

.data {
  padding: 30px 20px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.data::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3a7bd5, #00d2ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.data:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.data:hover::before {
  transform: scaleX(1);
}

.icon {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.icon i {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease;
}

.data:hover .icon i {
  transform: scale(1.1) rotate(5deg);
}

.number {
  font-weight: 800;
  margin-bottom: 10px;
  color: #1e293b;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.number.animated {
  opacity: 1;
  transform: translateY(0);
}

.label {
  color: #64748b;
  font-weight: 500;
  position: relative;
  padding-bottom: 8px;
}

.label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.data:hover .label::after {
  width: 60px;
}

/* Animation for counters */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.number.animated {
  animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .section-heading {
    font-size: 2.2rem;
  }

  .data {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .site-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .stats .text-center p {
    font-size: 1rem;
  }
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-content {
  padding: 30px;
  position: relative;
}

.section-title {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}


.card:hover .section-title::after {
  width: 100px;
}



.story-content {
  position: relative;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 0;
  transition: all 0.4s ease;
}

.card:hover .story-content p {
  color: #475569;
}

.icon-container {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  opacity: 0.1;
  z-index: 0;
}

.mission-icon {
  color: #FF6B6B;
}

.vision-icon {
  color: #4ECDC4;
}

.icon-container i {
  font-size: 6rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(15deg);
  transition: all 0.5s ease;
}

.card:hover .icon-container i {
  transform: rotate(0deg) scale(1.1);
  opacity: 0.15;
}

/* Animation for text */
.story-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.story-content.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Decorative elements */
.decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 4px solid rgba(78, 205, 196, 0.2);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
  z-index: 0;
  animation: pulse 8s infinite ease-in-out;
}

.decoration-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 107, 107, 0.2);
  border-radius: 50%;
  top: -20px;
  right: -20px;
  z-index: 0;
  animation: pulse 6s infinite ease-in-out alternate-reverse;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .story-content p {
    font-size: 1rem;
  }

  .icon-container {
    width: 60px;
    height: 60px;
  }

  .icon-container i {
    font-size: 4rem;
  }
}

@media (max-width: 576px) {
  .card-content {
    padding: 20px;
  }

  .section-heading {
    font-size: 1.6rem;
  }
}

.services-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.services-container {
  width: 100%;
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #e0e0e0;
}

.service-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}


.service-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.service-arrow i {
  font-size: 18px;
  color: #666;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
  background: #333;
  transform: scale(1.1);
  opacity: 1;
}

.service-card:hover .service-arrow i {
  color: white;
  transform: rotate(45deg) translate(2px, -2px);
}

/* Hover overlay effect */
.service-card::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
  opacity: 0;
}

.service-card:hover::before {
  top: 0;
  opacity: 0.03;
}


@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .service-card {
    padding: 30px 25px;
    min-height: 180px;
  }

  .service-title {
    font-size: 1.2rem;
  }
}

.stats-section {
  padding: 80px 20px;

  min-height: 100vh;
  display: flex;
  align-items: center;
}


.stats-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.stats-header h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.stats-header p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .stats-header h2 {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 60px 16px;
  }

  .stats-header h2 {
    font-size: 2rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Animation for counters */
.counter {
  display: inline-block;
}

.rt-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.rt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Custom styles for DrumNCode-inspired layout */
.services-section {
  padding: 80px 0;
}

.service-item {
  padding: 3rem 0;
  border-bottom: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  background-color: #f8f9fa;
  padding-left: 1.5rem;
}

.service-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--starface-primary);
}


.service-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.why-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.why-item {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.why-header {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.why-header:hover {
  background-color: #f8f9fa;
}

.why-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.why-content.active {
  max-height: 200px;
}

.stats-section {
  padding: 80px 0;
}

.stat-item {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--starface-primary);
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
}

.tech-stack {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.tech-category {
  background: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tech-item {
  display: inline-block;
  margin: 0.25rem;
}



.btn-cta {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
}


/* --- Updated Transparent Navbar Styling --- */

/* Make the navbar wrapper take minimal height if needed, or just style the nav */
/* .site-navbar-wrapper { } */

/* Style the nav element as the main navbar component */
.site-navbar.navbar {
  /* --- Visual Styles --- */
  background-color: transparent !important;
  /* Keep desktop transparency */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* Add bottom border - adjust color/opacity as needed */
  padding: 0.5rem 0;
  /* Add some vertical padding inside the navbar */

  /* --- Layout & Positioning --- */
  z-index: 1030;
  /* Ensure it's on top */

  /* --- Centering Links (Desktop) --- */
  /* Requires flexbox on the container holding the links */
}

/* Style the logo image */
.site-navbar .navbar-brand img {
  height: 40px;
  /* Adjust logo height as needed */
  width: auto;
  /* Maintain aspect ratio */
}


/* Style the main navigation list */
.site-navbar .navbar-nav.site-menu {
  display: flex;
  /* justify-content: center; */
  /* This centers the items within the list itself */
  margin: 0 auto;
  /* Can also help center the list block if navbar-collapse is flex */
  padding-left: 0;
  /* Remove default padding */
  margin-bottom: 0;
  list-style: none;
  /* Ensure no list bullets */
}

/* Style the individual list items and links */
.site-navbar .navbar-nav .nav-item {
  margin: 0;
  /* Reset default margins */
}

.site-navbar .navbar-nav .nav-link {
  color: white !important;
  /* White text */
  padding: 0.75rem 1rem;
  /* Adjust padding for spacing/link size */
  font-weight: 500;
  /* Slightly bolder font */
  position: relative;
  transition: color 0.2s ease-in-out;
  white-space: nowrap;
  /* Prevent link text from wrapping */
}

/* Remove default focus outline */
.site-navbar .navbar-nav .nav-link:focus {
  outline: 2px dashed rgba(255, 255, 255, 0.5);
  /* More visible focus for a11y on dark bg */
  outline-offset: 2px;
  /* box-shadow: none; */
  /* Keep default outline or adjust as needed */
}

/* Hover effect for links */
.site-navbar .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75) !important;
  /* Lighter white on hover */
}

/* --- Mobile Menu Specific Styles --- */

/* When the navbar collapses (mobile view) */
@media (max-width: 1199.98px) {

  /* Bootstrap xl breakpoint */
  /* Make the entire collapsible part white */
  .site-navbar .navbar-collapse {
    background-color: white !important;
    /* Force white background */
    padding: 1rem 0;
    /* Add padding inside the mobile menu */
    margin-top: 0.5rem;
    /* Add space below navbar-toggler when menu opens */
    border-radius: 0 0 5px 5px;
    /* Optional: slight rounding on bottom corners */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    /* Optional: subtle shadow for depth */
  }

  /* Adjust link styling for mobile */
  .site-navbar .navbar-nav .nav-link {
    color: #212529 !important;
    /* Change text color to dark for contrast on white */
    padding: 0.75rem 1.5rem;
    /* Potentially adjust padding for mobile touch targets */
    text-align: center;
    /* Center text within links */
    border-bottom: 1px solid #e9ecef;
    /* Add bottom border to each link */
  }

  /* Remove border-bottom from the last link */
  .site-navbar .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  /* Hover effect for mobile links (dark text gets darker or has background) */
  .site-navbar .navbar-nav .nav-link:hover {
    color: #000 !important;
    /* Darker text on hover */
    background-color: #f8f9fa;
    /* Optional: Light background on hover */
  }

  /* Focus state for mobile (ensure it's visible on white) */
  .site-navbar .navbar-nav .nav-link:focus {
    outline: 2px dashed #0d6efd;
    /* Use primary color or a contrasting color */
    outline-offset: -2px;
    /* Adjust offset for better visibility inside padding */
  }

  /* Center the entire nav list on mobile */
  .site-navbar .navbar-nav.site-menu {
    justify-content: center;
    /* Center items in the list */
    flex-direction: column;
    /* Stack items vertically on mobile within the centered list */
    width: 100%;
    /* Ensure list takes full width for centering children */
  }

  .site-navbar .navbar-nav .nav-item {
    width: 100%;
    /* Make list items full width */
    text-align: center;
    /* Ensure text aligns center within full-width item */
  }

}

/* Style the mobile toggle button */
.site-navbar .navbar-toggler {
  color: white;
  /* Icon color */
  border-color: rgba(255, 255, 255, 0.3) !important;
  /* Subtle border */
  padding: 0.25rem 0.5rem;
  /* Adjust padding */
}

/* Style the mobile toggle icon bars (White icon) */
.site-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- CTA Button Styling for Contact Link (Desktop) --- */

/* Target the specific nav item and its link */
.site-navbar .navbar-nav .nav-item.nav-item-cta .nav-link {
  /* Button-like appearance */
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  /* Semi-transparent white background */
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  /* Adjusted padding */
  margin-left: 1rem;
  /* --- Updated Border Style --- */
  border: 2px solid rgba(255, 255, 255, 0.5);
  /* Slightly more opaque white border, 2px width */
  /* border-radius: 30px; */
  /* Removed rounded corners */
  border-radius: 0;
  /* Explicitly set square border */
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

/* --- Updated Hover Effect --- */
.site-navbar .navbar-nav .nav-item.nav-item-cta .nav-link:hover {
  /* --- Use your primary color for background --- */
  background-color: #2563eb !important;
  /* Your site's primary color (starface-primary) */
  color: white !important;
  /* Keep the border but potentially adjust color if needed */
  border-color: #2563eb;
  /* Match border to new background or keep white */
  /* transform: translateY(-2px); */
  /* Optional: Remove lift effect */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  /* Optional: Remove shadow */
  /* Or, update shadow to match primary color */
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
  /* Shadow using primary color */
}

/* Focus state for accessibility */
.site-navbar .navbar-nav .nav-item.nav-item-cta .nav-link:focus {
  /* Consider updating focus color to match primary if it fits the aesthetic */
  outline: 2px dashed rgba(255, 255, 255, 0.8);
  /* Kept white for contrast on transparent bg */
  outline-offset: 2px;
  /* Or use primary color for focus */
  /* outline: 2px dashed #2563eb; */
  /* outline-offset: 2px; */
}


/* --- Revert CTA Styling on Mobile (This part remains the same) --- */

@media (max-width: 1199.98px) {

  .site-navbar .navbar-nav .nav-item.nav-item-cta {
    text-align: center;
    width: 100%;
  }

  .site-navbar .navbar-nav .nav-item.nav-item-cta .nav-link {
    background-color: transparent !important;
    color: #212529 !important;
    padding: 0.75rem 1.5rem !important;
    margin-left: 0;
    border: none !important;
    border-radius: 0;
    font-weight: 500;
    display: block;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transform: none !important;
    box-shadow: none !important;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #e9ecef !important;
  }


  .site-navbar .navbar-nav .nav-item.nav-item-cta:last-child .nav-link {
    border-bottom: none !important;
  }


  .site-navbar .navbar-nav .nav-item.nav-item-cta .nav-link:hover {
    background-color: #f8f9fa !important;
    color: #000 !important;
    transform: none !important;
    box-shadow: none !important;
  }


  .site-navbar .navbar-nav .nav-item.nav-item-cta .nav-link:focus {
    outline: 2px dashed #0d6efd;
    outline-offset: -2px;
  }
}

/* Style the additional logo text */
.site-navbar .navbar-brand .logo-text {
  color: white;
  /* Match the link color or set a specific color */
  font-size: 1.25rem;
  /* Adjust size as needed, relative to your logo */
  font-weight: 700;
  /* Make it bold, adjust if needed */
  letter-spacing: -0.05em;
  /* Optional: Slightly tighter letter spacing */
  white-space: nowrap;
  /* Prevent line breaks */
  /* margin-left: 0.5rem; */
  /* Alternative way to add space if not using me-2 on img */
}

.team-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--card-bg);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.team-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
  height: 100%;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-img-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team-card:hover .team-img-container:before {
  opacity: 1;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.team-role:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.team-desc {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--starface-primary);
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(78, 84, 200, 0.4);
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-img-container {
    border-radius: 12px 12px 0 0;
    height: 200px;
  }

  .card-body {
    padding: 1.25rem;
  }
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-content h3 {
  color: #34495e;
  line-height: 1.6;
}

.text-muted {
  color: #6c757d !important;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Image placeholder for demo */
.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }

  .text-muted {
    font-size: 1rem;
  }
}

/* Main Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.left-section {
  padding: 2rem;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.description {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.office-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.office-section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.office-label {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.office-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.office-address {
  color: var(--secondary-color);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: var(--starface-primary);
  border-radius: 12px;
  margin-right: 1rem;
}

.contact-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: var(--secondary-color);
  margin: 0;
  font-weight: 500;
}

.contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
}

/* Right Section - Form */
.right-section {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.form-tabs {
  display: flex;
  background: var(--light-color);
}

.tab {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}


.tab:not(.active):hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
}

.contact-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  display: block;
}

.required {
  color: var(--danger-color);
}

.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-control.is-invalid {
  border-color: var(--danger-color);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.file-upload {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 2px dashed #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.file-upload:hover {
  border-color: var(--primary-color);
  background: rgba(37, 99, 235, 0.05);
  color: var(--primary-color);
}

.submit-btn {
  background: var(--gradient);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 3rem;
  position: relative;
}

.faq-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.accordion-button {
  background: white;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-color);
  padding: 1.5rem;
  border-radius: 12px;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Alert Messages */
.alert {
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .main-heading {
    font-size: 2rem;
  }

  .form-tabs {
    flex-direction: column;
  }

  .tab {
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .tab.active {
    border-left-color: var(--primary-dark);
  }
}

.process-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Connector line */
.process-wrapper::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

/* Step */
.process-step {
  flex: 1;
  min-width: 220px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease both;
}

.process-step:nth-child(1) {
  animation-delay: 0.2s;
}

.process-step:nth-child(2) {
  animation-delay: 0.4s;
}

.process-step:nth-child(3) {
  animation-delay: 0.6s;
}

.process-step:nth-child(4) {
  animation-delay: 0.8s;
}

/* Number circle */
.process-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: var(--starface-primary, #315098);
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.process-step:hover .process-circle {
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: stack vertically */
@media (max-width: 768px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .process-wrapper::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .process-step {
    text-align: center;
  }
}

/* Main Content */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  padding: 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.office-info {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.office-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.office-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.office-address {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}



.contact-info-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  color: var(--text-secondary);
  margin: 0;
}

.image-section {
  flex: 1;
  background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Screenshot%202025-09-02%20225817.jpg-usAPlNQaBhwndPstU1KXV2LHRmht9U.jpeg');
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.form-section {
  flex: 1;
  padding: 60px 40px;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-size: 32px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
}

.form-subtitle {
  font-size: 16px;
  color: #718096;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group.small {
  flex: 0.6;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  color: #2d3748;
  background: #f7fafc;
  transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

input::placeholder {
  color: #a0aec0;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    margin: 20px;
  }

  .image-section {
    min-height: 200px;
  }

  .form-section {
    padding: 40px 24px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 24px;
  }

  .form-title {
    font-size: 28px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--bg-white);
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-container {
    padding: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .faq-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .form-container {
    padding: 1.5rem;
  }
}


.spm-home-page-banner {
  position: relative;
  overflow: hidden;
  padding-bottom: 220px;
  background-color: #602fcc;
  border-radius: 24px;
  color: white;
  display: flex;
  min-height: 400px;
}

/* Shape divider creates the angled cut effect */
.gb-shape-divider {
  position: relative;
  width: 50%;
  z-index: 2;
}

.gb-shape-divider--bottom-right {
  --gb-shape-divider-bottom-right: 60px;
}

.gb-shape-divider::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: #602fcc;
  /* This creates the diagonal cut on the bottom right */
  clip-path: polygon(0% 0%,
      100% 0%,
      calc(100% - 60px) 100%,
      0% 100%);
}

.spm-home-page-banner__text {
  position: relative;
  z-index: 3;
  padding: 40px 40px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spm-home-page-banner__price {
  font-size: 3rem;
  line-height: 3.125rem;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -0.013rem;
  color: white;
}

.spm-home-page-banner__image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.spm-home-page-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.gb-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
  color: white;
}

.gb-button--brand-inverted {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.gb-button--brand-inverted:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gb-icon-svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* Mobile First - Default styles are for mobile */
@media (max-width: 767px) {
  .spm-home-page-banner {
    flex-direction: column;
    padding-bottom: 0;
    min-height: auto;
    display: block;
  }

  .gb-shape-divider {
    width: 100%;
    position: relative;
  }

  .gb-shape-divider::before {
    display: none;
    /* No shape divider on mobile */
  }

  .spm-home-page-banner__text {
    width: 100%;
    padding: 40px 24px 24px;
    position: relative;
    z-index: 1;
  }

  .spm-home-page-banner__image {
    position: relative;
    width: 100%;
    height: 250px;
    display: block;
  }

  .spm-home-page-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
  }

  .spm-home-page-banner__price {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }

  .h3 {
    font-size: 1.5rem;
  }

  .gb-subtitle {
    font-size: 1rem;
  }
}

/* Tablet styles */
@media (min-width: 768px) {
  .spm-home-page-banner {
    min-height: 470px;
    padding-bottom: 0;
    display: flex;
    flex-direction: row;
  }

  .gb-shape-divider {
    width: 50%;
    position: relative;
  }

  .spm-home-page-banner__text {
    padding: 48px 32px 48px 48px;
    min-height: 470px;
    width: 100%;
  }

  .spm-home-page-banner__image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
  }

  .spm-home-page-banner__image img {
    border-radius: 0;
    object-position: center left;
  }

  .gb-shape-divider::before {
    display: block;
    /* More pronounced diagonal cut on larger screens */
    clip-path: polygon(0% 0%,
        100% 0%,
        calc(100% - 60px) 100%,
        0% 100%);
  }
}

/* Desktop styles */
@media (min-width: 1200px) {
  .spm-home-page-banner {
    min-height: 530px;
  }

  .spm-home-page-banner__text {
    padding: 64px 48px 64px 64px;
  }

  .gb-shape-divider::before {
    clip-path: polygon(0% 0%,
        100% 0%,
        calc(100% - 100px) 100%,
        0% 100%);
  }
}

/* Large desktop styles */
@media (min-width: 1440px) {
  .spm-home-page-banner {
    min-height: 640px;
  }

  .gb-shape-divider::before {
    clip-path: polygon(0% 0%,
        100% 0%,
        calc(100% - 120px) 100%,
        0% 100%);
  }
}

/* Large price text on bigger screens */
@media (min-width: 980px) {
  .spm-home-page-banner__price {
    font-size: 4.5rem;
    line-height: 4.625rem;
    letter-spacing: -0.025rem;
  }
}

/* Add some visual depth with subtle shadows */
.spm-home-page-banner__text {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ensure the shape divider creates the proper angled edge */
.gb-shape-divider {
  background: #602fcc;
}

/* The image should have a subtle overlay to blend with the design */
.spm-home-page-banner__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(96, 47, 204, 0.1) 0%, transparent 100%);
  z-index: 1;
}