.protest-riot-regular {
  font-family: "Protest Riot", sans-serif;
  font-weight: 400;
  font-style: normal;
}

main#main h4,
h3 {
  font-family: "Protest Riot", sans-serif;
  /*
    background: linear-gradient(4deg, #96c13f 0%, #26a0e0 50%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
*/
}

main#main h1 {
  font-family: "Protest Riot", sans-serif;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  text-align: center;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px var(--shadow-light);
  animation: titleFadeInUp .9s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes titleFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.headingline hr {
  width: 80px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  height: 4px;
  display: block;
  margin: 0 auto 0.75rem auto;
  border: none;
  border-radius: 2px;
  animation: lineExpand 1.5s ease-out 0.3s forwards;
  transform: scaleX(0);
  transform-origin: center;
}

@keyframes lineExpand {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

ol {
  list-style: none;
  counter-reset: list;
  padding: 0 1rem;
}

.col-lg-12.showcase li {
  --stop: calc(100% / var(--length) * var(--i));
  --l: 62%;
  --l2: 88%;
  --h: calc((var(--i) - 1) * (180 / var(--length)));
  --c1: hsl(var(--h), 71%, var(--l));
  --c2: hsl(var(--h), 71%, var(--l2));

  position: relative;
  counter-increment: list;
  max-width: 45rem;
  margin: 2rem auto;
  padding: 2rem 1rem 1rem;
  box-shadow: none;
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: white;
}

li::before {
  content: '';
  display: block;
  width: 100%;
  height: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--c1) var(--stop), var(--c2) var(--stop));
}

h3 {
  display: block;
  margin: 0 0 1rem;
  color: rgb(70 70 70);
}

h3::before {
  display: none;
}

.counter {
  background-color: #eaecf0;
  text-align: center;
}

.employees,
.customer,
.design,
.order {
  margin-top: 70px;
  margin-bottom: 70px;
}

.counter-count {
  color: #000;
  font-size: 1rem;
  border: 2px solid #49b753;
  border-radius: 0%;
  position: relative;
  text-align: center;
  line-height: 30px;
  width: 80px;
  height: 30px;
  display: inline-block;
}

.employee-p,
.customer-p,
.order-p,
.design-p {
  font-size: 1.5rem;
  color: #000000;
  line-height: 34px;
}

body {
  font-family: 'Myriad Pro', 'Inter', 'Lato', sans-serif;
  color: var(--text-primary);
  background: linear-gradient(135deg, #fafbfc 0%, #f1f3f4 100%);
  line-height: 1.6;
  font-weight: 400;
}

.span {
  font-size: 1.5rem;
  color: #0786c2;
}

.span-start.span-start {
  font-size: 1.5625rem;
  text-transform: uppercase;
  color: #f9831e;
  font-weight: 600;
  font-family: arial;
  line-height: 1;
}

.img-fluid,
img {
  max-width: 100%;
  height: auto;
  z-index: 1;
  position: inherit;
}

main#main {
  background: linear-gradient(135deg, #fafbfc 0%, #f1f3f4 100%);
  min-height: auto;
  padding: 1rem 0;
  position: relative;
}

.infocus {
  padding: 1rem 0;
  min-height: auto;
}

img.img-fluid.sirpic {
  margin-top: 0px;
}

p span.image {
  width: 33%;
  float: left;
  position: relative;
  padding: 10px 10px 10px 0px;
}

p span.image img {
  max-width: 100%;
  height: auto;
}

.image {
  display: block;
}

.embed-responsive {
  z-index: 1;
}


.span-bold-blue {
  font-weight: 700;
  color: #008ed1;
  font-size: 1.125rem;
}


.quotes {
  margin-top: -48px;
  fill: #008ed1;
  width: 86px;
}

a {
  color: #4eb478;
}

a:hover {
  color: #72c393;
  text-decoration: none;
}


.wrap {
  margin: auto;
  background: #fff;
  box-shadow: none;
  width: 100%;
  max-width: 800px;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: auto;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #4eb478;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #6bc08e;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-dark) 100%);
  padding: 20px 2rem;
  border-top: 4px solid var(--primary-green);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

/* Ensure logo on left and hamburger on right within header row */
.header .d-flex {
  justify-content: space-between;
  width: 100%;
}

.header .logo {
  font-size: 1.75rem;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}


.header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
  width: auto !important; /* prevent stretching */
  height: auto; /* keep aspect ratio */
  object-fit: contain;
}

.logo-head {
  padding: 1rem 0;
  border-top: 3px solid #008ed1;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 8px 6px;
  transition: all 0.3s ease;
  font-family: 'Myriad Pro', 'Inter', sans-serif;
  font-size: 10pt;
  font-weight: 500;
  border-radius: 6px;
  margin: 0 2px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-menu a.active {
  font-weight: 600;
  color: #008ed1;
}

.nav-menu a:hover {
  text-decoration: none;
  background: none;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: none;
}

/* Hide the desktop nav on small screens to avoid overlap; show hamburger */
@media (max-width: 991.98px) {
  .nav-menu.d-lg-block { display: none !important; }
  .mobile-nav-toggle { display: block !important; }
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: none;
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: none;
  color: #444444;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #4eb478;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: relative;
  z-index: 10001; /* ensure clickable above overlays */
  border: 0;
  background: none; /* remove background */
  font-size: 1.5rem;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 0; /* remove radius */
  background: none; /* ensure no background */
  display: none; /* hidden on desktop; shown in media query */
  margin-left: auto; /* push to the right on mobile */
}

.mobile-nav-toggle i {
  color: #ffffff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  background: none; /* no hover background */
}

.mobile-nav-toggle:hover i {
  color: #ffffff;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  z-index: 9999;
  overflow-y: auto;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-dark) 100%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  box-shadow: none;
  padding: 80px 0 20px 0;
}

/* Close button inside mobile nav */
.mobile-nav .mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.15);
  border: 0;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav .mobile-nav-close i { font-size: 1.25rem; }

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 1rem;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform: translateX(5px);
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(5px);
}

/* Ensure class-based activation works reliably on all pages */
.mobile-nav-active .mobile-nav {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-overly {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.mobile-nav-active .mobile-nav-overly {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #ffffff;
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 220px !important;
  background: url("../../images/newsletter_imges/newsletter_header.jpg");
  background-size: cover;
  position: relative;
  background-position: center;
}

#hero:before {
  content: "";
  background: url("../../images/newsletter_imges/infocus.jpg");
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 100;
  background-size: cover;

}

#hero1:before {
  content: "";
  background: url("../../images/newsletter_imges/infocus.jpg");
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 100;
  background-size: cover
}

#hero2:before {
  content: "";
  background: url("../../images/newsletter_imges/infocus.jpg");
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 100;
  background-size: cover;

}

#hero3:before {
  content: "";
  background: url("../../images/newsletter_imges/infocus.jpg");
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 100;
  background-size: cover
}

#hero4:before {
  content: "";
  background: url("../../images/newsletter_imges/infocus.jpg");
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 100;
  background-size: cover
}

#hero5:before {
  content: "";
  background: url("../../images/newsletter_imges/infocus.jpg");
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 100;
  background-size: cover
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
  width: 90%;
  margin: auto;
}

.custom-list li {
  margin-bottom: 1rem;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 3.25rem;
  line-height: 56px;
  color: #ffffff;
  font-family: 'Protest Riot', sans-serif;
}

#hero1 h1 {
  margin: 0 0 20px 0;
  font-size: 3.25rem;
  line-height: 56px;
  color: #ffffff;
  font-family: 'Protest Riot', sans-serif;
}

#hero2 h1 {
  margin: 0 0 20px 0;
  font-size: 3.25rem;
  line-height: 56px;
  color: #ffffff;
  font-family: 'Protest Riot', sans-serif;
}

#hero3 h1 {
  margin: 0 0 20px 0;
  font-size: 3.25rem;
  line-height: 56px;
  color: #ffffff;
  font-family: 'Protest Riot', sans-serif;
}

#hero4 h1 {
  margin: 0 0 20px 0;
  font-size: 3.25rem;
  line-height: 56px;
  color: #ffffff;
  font-family: 'Protest Riot', sans-serif;
}

#hero5 h1 {
  margin: 0 0 20px 0;
  font-size: 3.25rem;
  line-height: 56px;
  color: #ffffff;
  font-family: 'Protest Riot', sans-serif;
}

#hero h2 {
  color: #ffffff;
  margin-bottom: 0px;
  font-size: 1.125rem;
}

#hero7 h2 {
  color: #ffffff;
  margin-bottom: 0px;
  font-size: 1.125rem;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  border: 2px solid #4eb478;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #4eb478;
  border: 2px solid #4eb478;
}




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.section-bg {
  background-color: #fafdfb;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #4eb478;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #f4f4f4;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 3.25rem;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}




/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding-left: 30px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 2.125rem;
}

.about .content p {
  margin-bottom: 0;
}

.about .content .icon-box {
  margin-top: 25px;
}

.about .content .icon-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.about .content .icon-box i {
  font-size: 3rem;
  float: left;
  color: #4eb478;
}

.about .content .icon-box p {
  font-size: 0.9375rem;
  color: #848484;
  margin-left: 60px;
}

.about .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}




@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

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

  .about .image {
    text-align: center;
  }

  .about .image img {
    max-width: 80%;
  }

  .container {
    max-width: 100%;
  }

  .logo {
    text-align: left;
    padding-left: 15px;
    display: block; /* ensure logo container shows */
  }

  .sticky-wrapper {
    display: block; /* keep header visible on mobile */
  }

  section {
    padding: 0;
  }

  .wrap {
    width: 100%;
    max-width: 100%;
  }

  .nav-menu {
    display: none; /* hide desktop nav on mobile, but keep logo + toggle visible */
  }

  .header {
    padding: 15px 1rem;
    position: relative;
  }

  .header .logo img {
    max-height: 40px;
    width: auto !important;
    height: auto;
  }

  .mobile-nav-toggle {
    display: block !important; /* force show hamburger on tablet/mobile */
  }
}

@media (max-width: 768px) {
  /* Prevent image stretching on mobile by overriding inline heights */
  .content-section img,
  img.img-fluid,
  img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  #hero h1 {
    font-size: 1.75rem;
    line-height: 20px;
  }

  #hero h2 {
    font-size: 1rem;
    line-height: 20px;
    margin-bottom: 0px;
  }

  .content-section {
    padding: 0.6rem;
    margin: 0;
    border-radius: 15px;
  }

  .content-section p {
    font-size: 1rem;
    line-height: 1.6;
  }

  main#main h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .infocus {
    padding: 0.8rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .wrap {
    border-radius: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .header {
    padding: 12px 1rem;
  }

  .header .logo img {
    max-height: 35px;
    width: auto !important;
    height: auto;
  }

  .mobile-nav {
    width: 100%;
    right: -100%;
  }
}


@media (max-width: 575px) {
  .section-title h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 2.375rem;
  }

  section {
    padding: 30px 0;
  }

  .mobile-nav-toggle i {
    font-size: 2rem;
  }

  .content-section {
    padding: 0.5rem;
    margin: 0;
  }

  main#main h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .infocus {
    padding: 0.6rem 0;
  }

  .header {
    padding: 10px 0.5rem;
  }

  .header .logo img {
    max-height: 30px;
  }

  .mobile-nav {
    width: 100%;
    padding: 60px 0 20px 0;
  }

  .mobile-nav a {
    padding: 10px 18px;
    font-size: 0.9375rem;
  }

  #footer {
    padding: 0.8rem 0;
    margin-top: 0.8rem;
  }

  #footer p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
}






@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f4f4f4;
  padding: 15px 0;
  text-align: center;
}

.clients img {
  width: 50%;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  -webkit-filter: none;
  filter: none;
}

@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .card {
  border-radius: 5px;
  overflow: hidden;
  border: 0;
  background: #f7f7f7;
  position: relative;
  transition: 0.3s;
}

.features .card-body {
  padding-top: 20px;
  position: relative;
}

.features .card-body i {
  font-size: 7.5rem;
  color: #e7e7e7;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.features .card-title {
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.features .card-title a {
  color: #444444;
  transition: 0.3s;
}

.features .card-text {
  position: relative;
  z-index: 2;
  color: #5e5e5e;
}

.features .card:hover {
  box-shadow: none;
  background: #fff;
}

.features .card:hover .card-title a {
  color: #4eb478;
}

@media (max-width: 1024px) {
  .features {
    background-attachment: scroll;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.6), rgba(0, 0, 0, 0.8)), url("../img/cta-bg.html") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 5px;
  transition: 0.3s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #4eb478;
  border: 2px solid #4eb478;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}

.services .icon-box {
  margin-bottom: 20px;
  padding: 30px 15px;
  border-radius: 6px;
  background: #fff;
}

.services .icon-box i {
  float: left;
  color: #4eb478;
  font-size: 2.5rem;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.125rem;
}

.services .icon-box h4 a {
  color: #444444;
  transition: 0.3s;
}

.services .icon-box .icon-box:hover h4 a {
  color: #4eb478;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #4eb478;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 1.75rem;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #4eb478;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.html") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 0.875rem;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.625rem;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #4eb478 !important;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0 0 0;
}

.team .member {
  text-align: center;
  background: #343a40;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 1.125rem;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 0.8125rem;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #4eb478;
}

.team .member .social i {
  font-size: 1.125rem;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: none;
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 1.75rem;
}

.pricing h4 {
  font-size: 2.875rem;
  color: #4eb478;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 1.125rem;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #4eb478;
  font-size: 1.125rem;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 5px;
  color: #444444;
  transition: none;
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
  font-weight: 500;
  border: 2px solid #dddddd;
}

.pricing .get-started-btn:hover {
  color: #4eb478;
  border-color: #4eb478;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
  background: #4eb478;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: #fff;
}

.pricing .featured .get-started-btn {
  border-color: #fff;
  color: #fff;
}

.pricing .featured .get-started-btn:hover {
  color: #4eb478;
  background: #fff;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  background: #f3faf6;
  padding: 60px 0;
}

.faq .section-title span {
  color: #f1f1f1;
}

.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  left: 20px;
  color: #a8dabc;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #4eb478;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  box-shadow: none;
  padding: 20px;
}

.contact .info-box i {
  font-size: 2rem;
  color: #4eb478;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #cbe9d8;
  float: left;
}

.contact .info-box h3 {
  font-size: 1.25rem;
  color: #777777;
  font-weight: 700;
  margin: 10px 0 10px 68px;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 0.875rem;
  margin: 0 0 0 68px;
}

.contact .php-email-form {
  box-shadow: none;
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 0.8125rem;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 0.875rem;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #4eb478;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #4eb478;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #45a36c;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f7f7f7;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #5e5e5e;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #4eb478 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: none;
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 0.9375rem;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }

  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Modern Content Styling
--------------------------------------------------------------*/
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Professional Color Palette Variables */
:root {
  --primary-blue: #00aeef;
  --primary-green: #8dc63f;
  --primary-orange: #fbb040;
  --primary-black: #1a1a1a;
  --primary-white: #ffffff;
  --blue-light: #4bc8f0;
  --blue-dark: #0099d4;
  --green-light: #a8d85a;
  --green-dark: #7bb02a;
  --orange-light: #fcc366;
  --orange-dark: #e69a1a;
  --gray-light: #f8f9fa;
  --gray-medium: #e9ecef;
  --gray-dark: #2c3e50;
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --text-muted: #868e96;
  --border-light: #e9ecef;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --shadow-dark: rgba(0, 0, 0, 0.16);
}

/* Professional Heading Styles - Fallback Colors Only */
h2 {
  font-family: "Protest Riot", sans-serif;
  color: var(--primary-blue);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h3, h4, h5, h6 {
  font-family: "Protest Riot", sans-serif;
  color: var(--text-primary);
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* Force inline color styles to work */
h1[style*="color!"], h2[style*="color!"], h3[style*="color!"], h4[style*="color!"], h5[style*="color!"], h6[style*="color!"] {
  color: unset !important;
}

/* Allow any inline color to override */
h1[style], h2[style], h3[style], h4[style], h5[style], h6[style] {
  color: unset !important;
}

/* Allow inline font-weight to override default font-weight */
h1[style*="font-weight"], h2[style*="font-weight"], h3[style*="font-weight"], h4[style*="font-weight"], h5[style*="font-weight"], h6[style*="font-weight"] {
  font-weight: unset !important;
}

/* Force inline colors on nested elements */
h1 strong[style*="color!"], h2 strong[style*="color!"], h3 strong[style*="color!"], h4 strong[style*="color!"], h5 strong[style*="color!"], h6 strong[style*="color!"] {
  color: unset !important;
}

h1 span[style*="color!"], h2 span[style*="color!"], h3 span[style*="color!"], h4 span[style*="color!"], h5 span[style*="color!"], h6 span[style*="color!"] {
  color: unset !important;
}

/* Ultimate override - Allow all attributes with !important inline styles */
[style*="!important"] {
  color: inherit !important;
  font-weight: inherit !important;
  background-color: inherit !important;
  border-color: inherit !important;
}

h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  margin-top: 0.1rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  margin-top: 0.1rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  margin-top: 0.1rem;
}

h5 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  margin-top: 0.1rem;
}

h6 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  margin-top: 0.1rem;
}

.content-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 0.8rem;
  margin: 0;
  box-shadow: none;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.content-section p {
  font-family: 'Myriad Pro', 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 400;
}

.content-section strong {
  color: var(--primary-blue);
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-section img {
  border-radius: 20px;
  box-shadow: none;
  margin: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section img:hover {
}

.content-section:hover {
}

.stats-highlight:hover {
}

.stats-highlight {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  color: var(--primary-white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin: 2rem 0;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.stats-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.stats-highlight:hover::before {
  left: 100%;
}

.stats-highlight strong {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--primary-white);
  font-size: 0.875rem;
  background: linear-gradient(135deg, var(--gray-dark) 0%, var(--primary-black) 100%);
  padding: 1rem 0;
  box-shadow: none;
  margin-top: 1rem;
  text-align: center;
}

#footer p {
  margin: 0;
  padding: 0.3rem 0;
  font-family: 'Myriad Pro', 'Inter', sans-serif;
  color: #cccccc;
}

#footer a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--blue-light);
  text-decoration: underline;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #111111;
  text-align: center;
  font-size: 0.9375rem;
  color: #fff;
}

#footer .footer-newsletter h4 {
  font-size: 1.5rem;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  box-shadow: none;
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 1rem;
  padding: 0 20px 3px 20px;
  background: #4eb478;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: none;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #45a36c;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1b1b1b;
  color: #fff;
}

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

#footer .footer-top .footer-contact h4 {
  font-size: 1.375rem;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 0.875rem;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #b7b7b7;
}

#footer .footer-top h4 {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer p {
  margin-bottom: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #4eb478;
  font-size: 1.125rem;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #4eb478;
}

#footer .footer-top .social-links a {
  font-size: 1.125rem;
  display: inline-block;
  background: #373737;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #4eb478;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 0.8125rem;
}

/* Video Player Styles */
.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: #000;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  outline: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(0, 174, 239, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.4);
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(0, 174, 239, 1);
  box-shadow: 0 6px 25px rgba(0, 174, 239, 0.6);
}

.play-button i {
  font-size: 2rem;
  color: white;
  margin-left: 4px; /* Slight offset to center the play icon */
}

/* Responsive Video Styles */
@media (max-width: 768px) {
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 1.5rem;
  }
  
  .video-container {
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .play-button i {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Mobile Content Section
--------------------------------------------------------------*/
.mobile-content-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, #fafbfc 0%, #f1f3f4 100%);
  margin-top: 1rem;
}

.mobile-story-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
  transition: left 0.6s ease;
}

.mobile-story-card:hover::before {
  left: 100%;
}

.mobile-story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.story-header {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.story-header h4 {
  font-family: 'Protest Riot', sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}

.story-content {
  position: relative;
  z-index: 2;
}

.story-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2c3e50;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* Mobile-specific responsive adjustments for content */
@media (max-width: 480px) {
  .mobile-content-section {
    padding: 1.5rem 0;
  }
  
  .mobile-story-card {
    padding: 1.5rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
  }
  
  .story-header {
    margin-bottom: 1.25rem;
  }
  
  .story-header h4 {
    font-size: 1.3rem;
  }
  
  .story-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

@media (max-width: 360px) {
  .mobile-story-card {
    padding: 1.25rem 1rem;
    margin-bottom: 1.25rem;
  }
  
  .story-header h4 {
    font-size: 1.2rem;
  }
  
  .story-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# Highlight Card for Spotlight
--------------------------------------------------------------*/
.highlight-card {
  background: linear-gradient(135deg, #00aeef 0%, #8dc63f 100%) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 12px 40px rgba(0, 174, 239, 0.3) !important;
}

.highlight-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
}

.highlight-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 50px rgba(0, 174, 239, 0.4) !important;
}

.highlight-card .story-header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.highlight-card .story-header h4 {
  color: #000000 !important;
  font-weight: 600 !important;
}

.highlight-card .story-content p {
  color: white !important;
  font-weight: 400 !important;
}