@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #c0bb91;
  position: relative;
}
img {
  width: 100%;
}
img.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
ul {
  list-style: none;
}
li {
}
a {
  text-decoration: none;
}
/* Entire scrollbar track */
::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

/* Track (the background of the scrollbar) */
::-webkit-scrollbar-track {
  background: #f4f4f4; /* Light background for the track */
  border-radius: 10px; /* Rounded track edges */
  border: 1px solid #ccc; /* Optional border for a better look */
}

/* Handle (the draggable part of the scrollbar) */
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #ff7e5f,
    #feb47b
  ); /* Gradient color for handle */
  border-radius: 10px; /* Rounded handle edges */
  border: 2px solid #f4f4f4; /* Optional border to separate the handle from the track */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #feb47b,
    #ff7e5f
  ); /* Reverse gradient on hover */
  border: 2px solid #ddd; /* Lighter border on hover */
}

/* Handle on active (when clicked) */
::-webkit-scrollbar-thumb:active {
  background-color: #ff7e5f; /* Solid color for active state */
}

/* Horizontal scrollbar (optional for cross-axis scrolling) */
::-webkit-scrollbar-horizontal {
  height: 12px; /* Height for the horizontal scrollbar */
}

/* Horizontal track */
::-webkit-scrollbar-track:horizontal {
  background: #f4f4f4;
  border-radius: 10px;
}

/* Horizontal handle */
::-webkit-scrollbar-thumb:horizontal {
  background: linear-gradient(180deg, #ff7e5f, #feb47b);
  border-radius: 10px;
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  display: none;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #c0bb91;
  z-index: 1000;
  transition: 0.4s;
}
.nav-close {
  text-align: right;
}
.nav-close i {
  font-size: 43px;
  display: block;
  margin-right: 12px;
  margin-top: 12px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  align-items: center;
}
.mobile-menu ul li {
}
.mobile-menu ul li a {
  font-size: 19px;
  font-weight: 400;
  color: black;
  transition: 0.3s;
}
.mobile-menu li a:hover {
  color: red;
}
/* header section */
.header-section {
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  background-color: #c0bb91;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;

  z-index: 999;
}
.nav .logo {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.nav .logo h3 {
  font-size: 19px;
  font-weight: 400;
}
.nav .logo img {
  width: 50px;
  height: 50px;
}
.nav .menu {
  display: flex;
  column-gap: 50px;
}
.nav .menu li {
}
.nav .menu li a {
  font-size: 19px;
  font-weight: 400;
  color: black;
  transition: 0.3s;
}
.nav .menu li a:hover {
  color: red;
}
.nav .profile {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.nav .profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.nav .profile h3 {
  font-size: 21px;
  font-weight: 400;
}
.toggle-nav {
  display: none;
}
.toggle-nav i {
  color: black;
  font-size: 40px;
  display: block;
}
/* header section responsive */
@media (max-width: 1000px) {
  .nav .menu {
    display: flex;
    column-gap: 34px;
  }
  .nav .menu li a {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .mobile-menu {
    display: block;
  }
  .nav .menu {
    display: none;
  }
  .logo h3 {
    display: none;
  }
  .toggle-nav {
    display: block;
  }
}
@media (max-width: 500px) {
  .nav {
    padding: 5px 5px;
  }
}

/* hero section */
.hero-section {
  margin-top: 80px;
  position: relative;
  padding: 0 12px;
}
.hero-section h1 {
  font-size: 214px;
  font-weight: 400;
  text-align: center;
}
.hero-p {
  font-size: 20px;
  width: 358px;
  position: absolute;
  right: 0;
  line-height: 27px;
  font-weight: 500;
  text-align: right;
  margin-right: 21px;
}

/* hero-slider */
.speaker-section {
  background-color: black;
  margin-top: 120px;
}
.speaker-section-top {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  top: -200px;
}
.largeimage-left {
  color: white;
  display: flex;
  flex-direction: column;
  text-align: right;
  row-gap: 12px;
}
.reviews {
  color: yellow;
  display: flex;
  justify-content: flex-end;
  column-gap: 7px;
}
.reviews i {
  display: block;
  font-size: 17px;
}
.reviews-desc {
  font-size: 20px;
  width: 300px;
  line-height: 24px;
  margin-left: auto;
  font-weight: 300;
}
.largeimage img {
  width: 100%;
}
.largeimage-right {
  color: white;
  display: flex;
  flex-direction: column;
  text-align: left;
  row-gap: 12px;
}
.details-icons {
  display: flex;
  column-gap: 7px;
}
.details-icons i {
  display: block;
  font-size: 17px;
  color: orange;
}
.details-desc {
  font-size: 20px;
  width: 300px;
  line-height: 24px;
  margin-right: auto;
  font-weight: 300;
}
.speaker-section-bottom {
  margin-top: -138px;
  margin-bottom: 30px;
}
.thumbnail-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail-container {
  display: flex;
  width: 240px;
  gap: 10px;
  position: relative;
}

.thumbnail {
  width: 30%;
  height: 30%;
  cursor: pointer;
  transition: transform 0.3s;
}
.hidden {
  display: none;
}

.thumbnail.active {
  transform: scale(1.1); /* Scale up the current image */
}

.arrow {
  cursor: pointer;
  font-size: 30px;
  color: #333;
  user-select: none;
  padding: 0 10px;
  color: orange;
}

.left-arrow {
  margin-right: 10px;
}

.right-arrow {
  margin-left: 10px;
}

/* try section */
.try-section {
  background-color: orange;
  padding: 12px 0;
  display: flex;

  overflow: hidden; /* Hide the overflowing elements */
  position: relative;
}

.try-section .scroll-wrapper {
  display: flex;
  animation: scroll-left 20s linear infinite;
}

.try {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.try img {
  width: 50px;
  height: 50px;
}

.try h3 {
  font-size: 58px;
  font-weight: 500;
}

/* Animation to scroll the section left to right */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* hero section responsive */
@media (max-width: 1200px) {
  .hero-section h1 {
    font-size: 159px;
  }
  .try h3 {
    font-size: 38px;
  }
}
@media (max-width: 1015px) {
  .hero-section h1 {
    font-size: 120px;
  }
  .speaker-section-top {
    top: 0;
  }
  .speaker-section-bottom {
    margin-top: 0;
  }
  .hero-p {
    font-size: 18px;
    width: initial;
    position: static;
    text-align: center;
    margin-right: 0;
  }
  .reviews-desc,
  .details-desc {
    font-size: 14px;
    width: 100%;
  }
  .speaker-section-top {
    grid-template-columns: 1fr 296px 1fr;
  }
  .try h3 {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 86px;
  }
  .speaker-section-top {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .largeimage img {
    max-width: 300px;
  }
  .largeimage-left,
  .largeimage-right {
    display: none;
  }
  .try {
    column-gap: 0px;
  }
  .try img {
    width: 30px;
    height: 30px;
  }
  .try h3 {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .hero-section h1 {
    margin-bottom: 16px;
  }
  .try-section {
    display: none;
  }
}
/* who-we-are-section */
.who-we-are-section {
  padding: 60px 12px 400px 12px;
  display: flex;
  column-gap: 70px;
}
.w-w-a-left {
  display: flex;
  flex-direction: column;
  row-gap: 180px;
}
.w-left-top {
  display: flex;
  flex-direction: column;
  row-gap: 26px;
}
.w-left-top h1 {
  text-align: right;
  font-size: 105px;
  font-weight: 500;
  width: 600px;
  line-height: 83px;
}
.w-left-top p {
  font-size: 20px;
  width: 479px;

  margin-left: auto;
  font-weight: 400;
  text-align: right;
  line-height: 26px;
}
.w-left-bottom {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
  align-items: flex-end;
}
.w-left-bottom h1 {
  text-align: right;
  font-size: 105px;
  font-weight: 500;
  width: 600px;
  line-height: 83px;
}
.orange-ball {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: orange;
}
.w-left-bottom p {
  font-size: 20px;
  width: 479px;
  margin-left: auto;
  font-weight: 400;
  text-align: right;
  line-height: 26px;
}
.w-w-a-right {
}
.w-right-top {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}
.w-right-top p {
  font-size: 20px;
  width: 479px;
  font-weight: 400;
  text-align: left;
  line-height: 26px;
}
.w-right-top img {
}
.w-right-bottom {
  margin-top: 24px;
}
.w-right-bottom ul {
  display: flex;
  flex-direction: column;
}
.w-right-bottom ul li {
  border-bottom: 1px solid #cfcccc;
  padding: 12px 14px;
  transition: 0.3s;
}
.w-right-bottom ul li:hover {
  background-color: black;
}
.w-right-bottom ul li:hover a {
  color: white;
}
.w-right-bottom ul li:last-child {
  border-bottom: none;
}

.w-right-bottom ul li a {
  font-size: 37px;
  color: black;
  font-weight: 600;
}

/* who we are responsive */
@media (max-width: 1170px) {
  .w-left-top h1 {
    font-size: 73px;
    width: 100%;
  }
  .w-left-top p {
    font-size: 17px;
    width: 100%;
  }
  .w-right-top p {
    font-size: 17px;
    width: 100%;
  }
  .w-left-bottom h1 {
    font-size: 73px;
    width: 100%;
  }
  .w-left-bottom p {
    font-size: 17px;
    width: 100%;
  }
  .w-right-bottom ul li a {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .who-we-are-section {
    padding: 60px 12px 60px 12px;
  }
}
@media (max-width: 768px) {
  .who-we-are-section {
    padding: 20px;

    flex-direction: column;
  }
  .orange-ball {
    display: none;
  }
  .w-left-top {
    row-gap: 0px;
  }
  .w-left-top h1 {
    font-size: 59px;

    text-align: left;
  }
  .w-left-top p {
    font-size: 15px;

    text-align: left;
  }
  .w-left-bottom {
    row-gap: 0px;
  }
  .w-left-bottom h1 {
    font-size: 59px;

    text-align: left;
  }
  .w-left-bottom p {
    font-size: 15px;

    text-align: left;
  }
  .w-w-a-left {
    row-gap: 52px;
  }
  .w-right-top p {
    order: 1;
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .w-left-top h1 {
    font-size: 42px;
    text-align: center;
  }
  .w-left-top p {
    text-align: center;
  }
  .w-left-bottom h1 {
    font-size: 42px;
    text-align: center;
  }
  .w-left-bottom p {
    text-align: center;
  }
  .w-right-top p {
    order: 1;
    font-size: 15px;
    text-align: center;
  }
}
/* our tech */
.our-tech-section {
  padding: 0 12px;
  margin-bottom: 30px;
}
.our-tech-inner {
  text-align: center;
  background-color: black;
  padding: 30px 0;
}
.o-t-i-top-img {
  width: 700px;
  margin-top: -400px;
}
.our-tech-content {
  display: flex;
  column-gap: 60px;
  margin-top: 90px;
}
.our-tech-left {
  color: white;
  display: flex;
  flex-direction: column;
  row-gap: 36px;
  align-items: flex-end;
}
.our-tech-left h1 {
  text-align: right;
  font-size: 105px;
  font-weight: 500;
  width: 600px;
  line-height: 83px;
}
.our-tech-left p {
  font-size: 20px;
  width: 479px;
  margin-left: auto;
  font-weight: 400;
  text-align: right;
  line-height: 26px;
}
.our-tech-right {
  color: white;
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}
.our-tech-right p {
  font-size: 20px;
  width: 479px;

  font-weight: 400;
  text-align: left;
  line-height: 26px;
}
.o-t-i-bottom-img {
  width: 700px;

  position: relative;
  z-index: 4;
}
.subscribe {
  text-align: center;
  font-size: 105px;
  color: white;
  font-weight: 500;
  position: relative;
  z-index: 3;
  top: -90px;
}

/* footer */
.footer {
  color: white !important;
  display: flex;
  padding: 0 40px;
  justify-content: space-between;
}
.footer a {
  opacity: 0.8;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 40px;
}
.contact-info h3 {
  font-size: 23px;
  font-weight: 300;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}
.contact-info ul li {
  font-size: 23px;
  opacity: 0.8;
}
.social-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 40px;
}
.social-media h3 {
  font-size: 23px;
  font-weight: 300;
}
.social-media ul {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  align-items: flex-start;
}
.social-media ul li {
}
.social-media ul li a {
  font-size: 23px;
  color: white;
}
.company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 40px;
}
.company h3 {
  font-size: 23px;
  font-weight: 300;
}
.company ul {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  align-items: flex-start;
}
.company ul li {
}
.company ul li a {
  font-size: 23px;
  color: white;
}
.terms {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 40px;
}
.terms h3 {
  font-size: 23px;
  font-weight: 300;
}
.terms ul {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  align-items: flex-start;
}
.terms ul li {
}
.terms ul li a {
  font-size: 23px;
  color: white;
}

/* our tech & footer responsive */
@media (max-width: 1170px) {
  .our-tech-left h1 {
    font-size: 73px;
    width: 100%;
  }
  .our-tech-left p {
    font-size: 17px;
    width: 100%;
    /* padding-left: 10px; */
  }
  .our-tech-right p {
    font-size: 17px;
    width: 100%;
  }
  .subscribe {
    font-size: 73px;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .o-t-i-top-img {
    margin-top: 0;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer > div {
    width: 50%;
    margin-bottom: 20px;
    row-gap: 15px;
  }
  .contact-info h3 {
    font-size: 19px;
  }
  .contact-info ul li {
    font-size: 16px;
  }
  .social-media h3 {
    font-size: 19px;
  }
  .social-media ul li a {
    font-size: 16px;
  }
  .company h3 {
    font-size: 19px;
  }
  .company ul li a {
    font-size: 16px;
  }
  .terms h3 {
    font-size: 19px;
  }
  .terms ul li a {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .o-t-i-top-img {
    width: 100%;
  }
  .our-tech-content {
    margin-top: 42px;
    flex-direction: column;
    row-gap: 6px;
    margin-bottom: 24px;
  }
  .our-tech-left {
    row-gap: 18px;
  }
  .our-tech-left h1 {
    text-align: left;
    padding-left: 10px;
  }
  .our-tech-left p {
    text-align: left;
    padding-left: 10px;
    font-size: 15px;
  }
  .our-tech-right p {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }
  .o-t-i-bottom-img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .footer > div {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 500px) {
  .our-tech-left h1 {
    font-size: 42px;
    text-align: center;
  }
  .our-tech-left {
    row-gap: 2px;
  }
  .our-tech-left p {
    text-align: center;
  }
  .our-tech-right p {
    text-align: center;
  }
  .subscribe {
    font-size: 42px;

    top: -75px;
  }
}

/* Footer Section Styles (for non-homepage templates) */
.our-tech-section.footer-section {
  padding-top: 60px;
}
.our-tech-section.footer-section .our-tech-inner {
  padding-top: 0;
}
.our-tech-section.footer-section .subscribe {
  position: relative;
  top: 0;
  margin-bottom: 40px;
}
.our-tech-section.footer-section .footer {
  margin-top: 0;
}
.our-tech-section.footer-section .copyright {
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.our-tech-section.footer-section .copyright p {
  color: #fff;
  font-size: 14px;
}

/* WordPress Admin Bar Spacing */
body.admin-bar .nav {
  top: 32px;
}
body.admin-bar .mobile-menu {
  top: 32px;
}
body.admin-bar .hero-section {
  padding-top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
  body.admin-bar .mobile-menu {
    top: 46px;
  }
  body.admin-bar .hero-section {
    padding-top: 46px;
  }
}

/* Single Page & Post Styles */
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  min-height: 60vh;
  background-color: #fff;
}
.site-main .page-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #c0bb91;
}
.site-main .entry-title {
  font-size: 48px;
  font-weight: 600;
  color: #1e1e2f;
  line-height: 1.2;
}
.site-main .page-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.site-main .page-content,
.site-main .post-content {
  color: #333;
}
.site-main .page-content h1,
.site-main .page-content h2,
.site-main .page-content h3,
.site-main .page-content h4,
.site-main .page-content h5,
.site-main .page-content h6 {
  margin: 30px 0 15px;
  color: #1e1e2f;
  font-weight: 600;
}
.site-main .page-content p {
  margin-bottom: 20px;
}
.site-main .page-content a {
  color: #c0bb91;
  text-decoration: underline;
}
.site-main .page-content a:hover {
  color: #1e1e2f;
}
.site-main .page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.site-main .page-content ul,
.site-main .page-content ol {
  margin: 20px 0 20px 40px;
  list-style: disc;
}
.site-main .page-content ol {
  list-style: decimal;
}
.site-main .page-content li {
  margin-bottom: 10px;
}
.site-main .page-content blockquote {
  margin: 30px 0;
  padding: 20px 30px;
  border-left: 4px solid #c0bb91;
  background: #f9f9f9;
  font-style: italic;
}
.site-main .post-tags {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.site-main .post-tags .tag-links a {
  display: inline-block;
  background: #c0bb91;
  color: #1e1e2f;
  padding: 5px 12px;
  border-radius: 4px;
  margin-right: 8px;
  font-size: 14px;
  text-decoration: none;
}
.site-main .post-tags .tag-links a:hover {
  background: #1e1e2f;
  color: #fff;
}

/* Footer Section Styles for Pages */
.footer-section {
  margin-top: 0;
}

/* Post Content Image Containment */
.post-content img,
.page-content img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 20px auto;
}
.post-content figure,
.page-content figure {
  max-width: 100%;
  margin: 20px 0;
}
.post-content .wp-block-image,
.page-content .wp-block-image {
  margin: 20px 0;
}
.post-content .wp-block-image img,
.page-content .wp-block-image img {
  border-radius: 8px;
}

/* Comments Area Override */
.comments-area {
  position: relative;
  z-index: 1;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .site-main {
    padding: 100px 20px 40px;
  }
  .site-main .entry-title {
    font-size: 32px;
  }
  .site-main .page-content {
    font-size: 16px;
  }
}

/* Page Section Styles - matching home template */
.page-section {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 40vh;
}
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}
.page-section .page-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #c0bb91;
}
.page-section .page-title {
  font-size: 52px;
  font-weight: 600;
  color: #1e1e2f;
  line-height: 1.2;
  text-transform: capitalize;
}
.page-section .page-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.page-section .page-content h1,
.page-section .page-content h2,
.page-section .page-content h3,
.page-section .page-content h4,
.page-section .page-content h5,
.page-section .page-content h6 {
  margin: 30px 0 15px;
  color: #1e1e2f;
  font-weight: 600;
}
.page-section .page-content h2 {
  font-size: 36px;
}
.page-section .page-content h3 {
  font-size: 28px;
}
.page-section .page-content p {
  margin-bottom: 20px;
}
.page-section .page-content a {
  color: #1e1e2f;
  text-decoration: underline;
  text-decoration-color: #c0bb91;
  text-underline-offset: 3px;
}
.page-section .page-content a:hover {
  color: #c0bb91;
}
.page-section .page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.page-section .page-content ul,
.page-section .page-content ol {
  margin: 20px 0 20px 40px;
  list-style: disc;
}
.page-section .page-content ol {
  list-style: decimal;
}
.page-section .page-content li {
  margin-bottom: 10px;
}
.page-section .page-content blockquote {
  margin: 30px 0;
  padding: 25px 35px;
  border-left: 5px solid #c0bb91;
  background: #f9f9f9;
  font-style: italic;
  font-size: 20px;
}

/* Post Specific Styles */
.post-section .post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.post-section .post-content p {
  margin-bottom: 20px;
  color: #333;
}
.post-section .post-meta {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}
.post-section .post-meta span {
  margin-right: 20px;
}
.post-section .post-meta a {
  color: #1e1e2f;
  text-decoration: none;
}
.post-section .post-meta a:hover {
  color: #c0bb91;
}
.post-section .post-thumbnail {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
}
.post-section .post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.post-section .post-tags {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.post-section .post-tags .tag-links a {
  display: inline-block;
  background: #c0bb91;
  color: #1e1e2f;
  padding: 8px 16px;
  border-radius: 25px;
  margin: 5px 8px 5px 0;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.post-section .post-tags .tag-links a:hover {
  background: #1e1e2f;
  color: #fff;
}
.post-section .post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #eee;
}
.post-section .post-navigation a {
  color: #1e1e2f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.post-section .post-navigation a:hover {
  color: #c0bb91;
}
.post-section .nav-previous,
.post-section .nav-next {
  max-width: 45%;
}

/* Comments Section */
.comments-area {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #c0bb91;
}
.comments-area .comments-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: #1e1e2f;
}
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list .comment {
  margin-bottom: 30px;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 10px;
}
.comment-author {
  font-weight: 600;
  color: #1e1e2f;
}
.comment-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
}
.comment-content p {
  margin: 0;
  color: #333;
}
.comment-reply-link {
  display: inline-block;
  margin-top: 10px;
  color: #c0bb91;
  font-weight: 500;
  text-decoration: none;
}
.comment-reply-link:hover {
  color: #1e1e2f;
}
.comment-respond {
  margin-top: 40px;
}
.comment-respond .comment-reply-title {
  font-size: 24px;
  color: #1e1e2f;
  margin-bottom: 20px;
}
.comment-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #c0bb91;
}
.comment-form .submit {
  background: #1e1e2f;
  color: #fff;
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.comment-form .submit:hover {
  background: #c0bb91;
  color: #1e1e2f;
}

@media screen and (max-width: 768px) {
  .page-section {
    padding-top: 30px;
  }
  .page-container {
    padding: 30px 20px;
  }
  .page-section .page-title {
    font-size: 32px;
  }
  .page-section .page-content {
    font-size: 16px;
  }
  .post-section .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  .post-section .nav-previous,
  .post-section .nav-next {
    max-width: 100%;
  }
}

/* Page Hero Section - matching homepage style */
.page-hero {
  margin-top: 80px;
  position: relative;
  padding: 80px 12px 60px;
  background-color: #c0bb91;
}
.page-hero h1 {
  font-size: 120px;
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero .hero-p {
  font-size: 18px;
  max-width: 400px;
  position: relative;
  right: auto;
  margin: 0 auto 40px;
  line-height: 27px;
  font-weight: 500;
  text-align: center;
}
.page-hero .post-meta-hero {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: #333;
}
.page-hero .post-meta-hero i {
  margin-right: 6px;
  color: #c0bb91;
}
.page-hero-image {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.page-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Post Hero Specific */
.post-hero .hero-p {
  max-width: 500px;
}

@media screen and (max-width: 992px) {
  .page-hero h1 {
    font-size: 80px;
  }
}

@media screen and (max-width: 768px) {
  .page-hero {
    margin-top: 70px;
    padding-bottom: 40px;
  }
  .page-hero h1 {
    font-size: 48px;
  }
  .page-hero .hero-p {
    font-size: 16px;
    max-width: 100%;
    padding: 0 20px;
  }
  .page-hero .post-meta-hero {
    flex-direction: column;
    gap: 10px;
  }
  .page-hero-image {
    margin: 0 20px;
  }
}

/* Archive Page Styles */
.archive-section {
  background-color: #fff;
  padding: 60px 0;
}
.archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.archive-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.archive-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.archive-thumbnail {
  display: block;
  height: 220px;
  overflow: hidden;
}
.archive-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.archive-item:hover .archive-thumbnail img {
  transform: scale(1.05);
}
.archive-no-thumb {
  background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-no-thumb i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.3);
}
.archive-item-content {
  padding: 25px;
}
.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}
.archive-meta i {
  margin-right: 5px;
  color: #c0bb91;
}
.archive-meta a {
  color: #888;
  text-decoration: none;
}
.archive-meta a:hover {
  color: #c0bb91;
}
.archive-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.archive-title a {
  color: #1e1e2f;
  text-decoration: none;
  transition: color 0.3s ease;
}
.archive-title a:hover {
  color: #c0bb91;
}
.archive-excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.archive-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e1e2f;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.archive-read-more:hover {
  color: #c0bb91;
}
.archive-read-more i {
  transition: transform 0.3s ease;
}
.archive-read-more:hover i {
  transform: translateX(5px);
}

/* Archive Pagination */
.archive-pagination {
  margin-top: 50px;
  text-align: center;
}
.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 15px;
  background: #f5f5f5;
  color: #1e1e2f;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: #1e1e2f;
  color: #fff;
}
.archive-pagination .page-numbers.current {
  background: #c0bb91;
  color: #1e1e2f;
}
.archive-pagination .prev,
.archive-pagination .next {
  padding: 0 20px;
}

/* No Posts Found */
.archive-no-posts {
  text-align: center;
  padding: 80px 20px;
}
.archive-no-posts i {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 20px;
}
.archive-no-posts h2 {
  font-size: 28px;
  color: #1e1e2f;
  margin-bottom: 15px;
}
.archive-no-posts p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}
.archive-no-posts .search-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.archive-no-posts .search-field {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 16px;
}
.archive-no-posts .search-field:focus {
  outline: none;
  border-color: #c0bb91;
}
.archive-no-posts .search-submit {
  padding: 12px 25px;
  background: #1e1e2f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.archive-no-posts .search-submit:hover {
  background: #c0bb91;
  color: #1e1e2f;
}

@media screen and (max-width: 992px) {
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .archive-container {
    padding: 0 20px;
  }
  .archive-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .archive-thumbnail {
    height: 200px;
  }
  .archive-item-content {
    padding: 20px;
  }
  .archive-title {
    font-size: 18px;
  }
}

/* Portfolio Single Page Styles */
.portfolio-hero {
  background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 40px;
}
.portfolio-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.portfolio-hero .portfolio-categories {
  color: #c0bb91;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.portfolio-section {
  background-color: #f8f8f8;
  padding: 120px 0 60px;
}
.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
/* Two Column Grid Layout */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.portfolio-media-col {
  position: sticky;
  top: 100px;
}
.portfolio-info-col {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.portfolio-info-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}
.portfolio-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e1e2f;
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.portfolio-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c0bb91 0%, #a8a378 100%);
  color: #1e1e2f;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.portfolio-featured-image {
  margin-bottom: 25px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.portfolio-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.portfolio-embed {
  margin-bottom: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
  padding: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.portfolio-embed iframe,
.portfolio-embed audio,
.portfolio-embed video {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 10px;
}
.portfolio-embed-audio {
  background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
  padding: 30px;
}
.portfolio-embed-audio iframe {
  min-height: 152px;
}
.portfolio-embed-video iframe {
  aspect-ratio: 16/9;
  height: auto;
}
.portfolio-actions {
  margin: 30px 0;
}
.portfolio-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #c0bb91 0%, #a8a378 100%);
  color: #1e1e2f;
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(192, 187, 145, 0.4);
}
.portfolio-buy-btn:hover {
  background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
  color: #c0bb91;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30, 30, 47, 0.4);
}
.portfolio-buy-btn i {
  font-size: 22px;
}
.portfolio-content {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}
.portfolio-content p {
  margin-bottom: 15px;
  color: #555;
}
.portfolio-content h2,
.portfolio-content h3,
.portfolio-content h4 {
  color: #1e1e2f;
  margin: 20px 0 10px;
  font-weight: 600;
}
.portfolio-content a {
  color: #c0bb91;
  text-decoration: underline;
}
.portfolio-content a:hover {
  color: #1e1e2f;
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 20px 0;
  border-top: 1px solid #f0f0f0;
}
.portfolio-tags .tag-label {
  color: #888;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 5px;
}
.portfolio-tag {
  display: inline-block;
  background: #f5f5f5;
  color: #1e1e2f;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.portfolio-tag:hover {
  background: #c0bb91;
  color: #1e1e2f;
  border-color: #c0bb91;
}
.portfolio-meta-info {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}
.portfolio-meta-info .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 14px;
}
.portfolio-meta-info .meta-item i {
  color: #c0bb91;
  font-size: 16px;
}
.portfolio-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 2px solid #eee;
}
.portfolio-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e1e2f;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.portfolio-navigation a:hover {
  background: #c0bb91;
  color: #1e1e2f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.portfolio-navigation .nav-previous,
.portfolio-navigation .nav-next {
  max-width: 45%;
}
.portfolio-navigation .nav-next {
  text-align: right;
}

@media screen and (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .portfolio-media-col {
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-hero {
    padding: 100px 20px 30px;
    min-height: 150px;
  }
  .portfolio-hero h1 {
    font-size: 28px;
  }
  .portfolio-hero .portfolio-categories {
    font-size: 12px;
  }
  .portfolio-container {
    padding: 0 20px;
  }
  .portfolio-info-col {
    padding: 25px;
  }
  .portfolio-title {
    font-size: 24px;
  }
  .portfolio-embed {
    padding: 15px;
  }
  .portfolio-embed-audio {
    padding: 20px;
  }
  .portfolio-buy-btn {
    padding: 15px 25px;
    font-size: 16px;
  }
  .portfolio-navigation {
    flex-direction: column;
    gap: 15px;
  }
  .portfolio-navigation .nav-previous,
  .portfolio-navigation .nav-next {
    max-width: 100%;
    width: 100%;
  }
  .portfolio-navigation a {
    width: 100%;
    justify-content: center;
  }
}

/* Service Single Page Styles */
.service-section {
  background-color: #f8f8f8;
  padding: 120px 0 60px;
}
.service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.service-info-col {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.service-media-col {
  position: sticky;
  top: 100px;
}
.service-info-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}
.service-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e1e2f;
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.service-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c0bb91 0%, #a8a378 100%);
  color: #1e1e2f;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.service-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
  border-radius: 10px;
}
.service-price .price-label {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}
.service-price .price-value {
  color: #c0bb91;
  font-size: 24px;
  font-weight: 700;
}
.service-featured-image {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.service-content {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}
.service-content p {
  margin-bottom: 15px;
  color: #555;
}
.service-content h2,
.service-content h3,
.service-content h4 {
  color: #1e1e2f;
  margin: 20px 0 10px;
  font-weight: 600;
}
.service-content a {
  color: #c0bb91;
  text-decoration: underline;
}
.service-content a:hover {
  color: #1e1e2f;
}
.service-actions {
  margin: 30px 0;
}
.service-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #c0bb91 0%, #a8a378 100%);
  color: #1e1e2f;
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(192, 187, 145, 0.4);
}
.service-buy-btn:hover {
  background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
  color: #c0bb91;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30, 30, 47, 0.4);
}
.service-buy-btn i {
  font-size: 22px;
}
.service-meta-info {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}
.service-meta-info .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 14px;
}
.service-meta-info .meta-item i {
  color: #c0bb91;
  font-size: 16px;
}
/* Service Embeds - Multiple */
.service-embeds-wrapper {
  background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.embeds-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(192, 187, 145, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.embeds-title i {
  color: #c0bb91;
  font-size: 24px;
}
.service-embed-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.service-embed-item:last-child {
  margin-bottom: 0;
}
.embed-item-title {
  color: #c0bb91;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px 0;
}
.embed-content iframe,
.embed-content audio,
.embed-content video {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
.service-embed-audio .embed-content iframe {
  min-height: 152px;
}
.service-embed-video .embed-content iframe {
  aspect-ratio: 16/9;
  height: auto;
}
.service-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 2px solid #eee;
}
.service-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e1e2f;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.service-navigation a:hover {
  background: #c0bb91;
  color: #1e1e2f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.service-navigation .nav-previous,
.service-navigation .nav-next {
  max-width: 45%;
}
.service-navigation .nav-next {
  text-align: right;
}

@media screen and (max-width: 992px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-media-col {
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .service-section {
    padding: 100px 0 40px;
  }
  .service-container {
    padding: 0 20px;
  }
  .service-info-col {
    padding: 25px;
  }
  .service-title {
    font-size: 24px;
  }
  .service-price .price-value {
    font-size: 20px;
  }
  .service-embeds-wrapper {
    padding: 20px;
  }
  .service-embed-item {
    padding: 15px;
  }
  .service-buy-btn {
    padding: 15px 25px;
    font-size: 16px;
  }
  .service-navigation {
    flex-direction: column;
    gap: 15px;
  }
  .service-navigation .nav-previous,
  .service-navigation .nav-next {
    max-width: 100%;
    width: 100%;
  }
  .service-navigation a {
    width: 100%;
    justify-content: center;
  }
}


