/* @import url("https://fonts.googleapis.com/css2?family=Ojuju+Prime:wght@400;700&family=Heebo:wght@400;500;700;900&display=swap"); */

/* Project Navigation Styles */

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav-links .btn {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 120px;
}

.nav-links .btn:hover {
  background-color: #ffca2c;
  border-color: #ffca2c;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-links .btn:active {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #000;
}

.nav-links .btn:focus {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.nav-links .btn.active {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #000;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@font-face {
  font-family: 'bdgitalona-contras-thin';
  src: url('../fonts/bdgitalona-contras-thin.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'toraja_2';
  src: url('../fonts/toraja_2.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --primaryColor: #fffb00;
  --primaryDarkColor: #1b1131;
  --primaryHoverColor: #ffe600;
  --secondaryColor: #f9b000;
  --baseColor: #ddd8c7;
  --cardColor: #ac9f77;
  --titleFont: "bdgitalona-contras-thin", monospace;
  --baseFont: "toraja_2", serif;
  --regular: 400;
  --medium: 500;
  --bold: 700;
  --black: 900;
  --lightBg: #0e0c0c;
}

body {
  font-family: var(--baseFont);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--titleFont);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--baseFont);
  color: #ffffff;
  background-color: #000000;
  margin: 0;
  padding: 0;
}

body.home {
  background-image: url('../images/background_home.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.code-page {
  background-image: url('../images/background_code.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

body.art-page {
  background-image: url('../images/background_art.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.discussion-page {
  background-image: url('../images/background_discussion.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header, footer {
  background-color: #111111;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #333333;
  position: relative;
  z-index: 100;
  font-size: large;
  font-family: var(--titleFont);
}

nav {
  margin: 20px 0;
  text-align: center;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #1e90ff;
}

main {
  display: flex;
  justify-content: center;
  padding: 20px;
}

article {
  max-width: 800px;
  padding: 20px;
  background-color: #111111;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

aside {
  width: 200px;
  margin-left: 20px;
  background-color: #111111;
  padding: 20px;
}

footer {
  border-top: 1px solid #333333;
}

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

img {
  max-width: 100%;
}

section {
  position: relative;
}

.portfolioCol {
  padding-bottom: 35px;
}
a {
  color: inherit;
}

a:hover {
  color: var(--primaryHoverColor);
}

a,
.btn {
  transition: all 300ms ease-in-out 0s;
  text-decoration: none;
}

.btn:focus {
  box-shadow: none;
}

.primaryColor {
  color: var(--primaryColor);
}

.primaryDarkColor {
  color: var(--primaryDarkColor);
}

.lightBg {
  background: rgba(0, 0, 0, 0);
  padding-bottom: 20px;
  padding-top: 20px;
}

.btn {
  border-radius: 2px;
  font-size: 20px;
  font-weight: var(--medium);
  padding: 8px 20px;
}

.btn-sm {
  font-size: 14px !important;
  padding: 4px 12px !important;
}

/* Ensure buttons in code page are properly sized */
.code-page .btn-sm {
  font-size: 14px !important;
  padding: 4px 12px !important;
  font-weight: 400 !important;
}

/* Override any media query button styles for small buttons */
@media (max-width: 991px) {
  .btn-sm {
    font-size: 14px !important;
    padding: 4px 12px !important;
  }
}

@media (max-width: 767px) {
  .btn-sm {
    font-size: 14px !important;
    padding: 4px 12px !important;
  }
}

@media (max-width: 575px) {
  .btn-sm {
    font-size: 14px !important;
    padding: 4px 12px !important;
  }
}

/* Force standard button sizes for all small buttons */
.btn.btn-sm {
  font-size: 14px !important;
  padding: 4px 12px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  border-radius: 0.25rem !important;
}

/* Specific styling for project links in code page */
.project-links .btn-sm {
  font-size: 14px !important;
  padding: 4px 12px !important;
  font-weight: 400 !important;
  margin-right: 8px !important;
  margin-bottom: 4px !important;
}

/* Override any remaining button size issues */
.btn.btn-sm {
  font-size: 14px !important;
  padding: 4px 12px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  border-radius: 0.25rem !important;
  min-height: auto !important;
}

/* GitHub button styling */
.btn-primary.btn-sm {
  background-color: #333 !important;
  border-color: #333 !important;
  color: white !important;
}

.btn-primary.btn-sm:hover {
  background-color: #555 !important;
  border-color: #555 !important;
  color: white !important;
}

.btn-primary.btn-sm:focus {
  background-color: #333 !important;
  border-color: #333 !important;
  color: white !important;
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.25) !important;
}

.btnPrimary {
  background: var(--primaryColor);
  color: var(--primaryDarkColor);
}

.btnPrimary:hover {
  background: var(--primaryDarkColor);
  color: var(--bs-white);
}

.btnOutline {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}

.btnOutline:hover {
  background: var(--primaryDarkColor);
  border: 1px solid var(--primaryDarkColor);
  color: var(--bs-white);
}

.btn:focus {
  outline: none;
}

.xlTitle {
  font-family: var(--titleFont);
  font-size: 44px;
  font-weight: var(--bold);
  line-height: 1.3;
}

.lgTitle {
  font-family: var(--titleFont);
  font-size: 30px;
  font-weight: var(--bold);
  line-height: normal;
}

.mdTitle {
  font-family: var(--titleFont);
  font-size: 26px;
  font-weight: var(--bold);
  line-height: normal;
}

.smTitle {
  font-family: var(--titleFont);
  font-size: 22px;
  font-weight: var(--regular);
  line-height: normal;
}

.smText {
  font-size: 22px;
}

.xsTitle {
  font-size: 18px;
  line-height: normal;
}

.regular {
  font-weight: var(--regular);
}

.medium {
  font-weight: var(--medium);
}

.bold {
  font-weight: var(--bold);
}

.headerCol {
  background: #181717;
  left: 0;
  padding: 18px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 300ms ease-in-out 0s;
  z-index: 99;
}

.fixedHeader .headerCol {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

/* navigation */
.navCol {
  text-align: right;
}

.navCol a {
  color: rgb(231, 205, 205);
  display: inline-block;
  font-size: 20px;
  font-weight: var(--medium);
  position: relative;
}

.navCol a:hover {
  color: var(--primaryColor);
}

.navCol a:before {
	background: var(--primaryColor);
	border-radius: 2px;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	opacity: 0;
	position: absolute;
	right: 50%;
	transition: all 500ms ease-in-out 0s;
}

.navCol a.active:before {
	left: 0;
	opacity: 1;
	right: auto;
	width: 27px;
}

.navCol a:hover:before {
	left: 0;
	opacity: 1;
	right: 0;
  background: var(--primaryColor);
  border-radius: 2px;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  opacity: 0;
  position: absolute;
  right: 50%;
  transition: all 500ms ease-in-out 0s;
}

.navCol a.active::before {
  left: 0;
  opacity: 1;
  right: auto;
  width: 27px;
}

.navCol a:hover::before {
  left: 0;
  opacity: 1;
  right: 0;
}

nav-link.active {
  color: var(--primaryColor);
  text-decoration: none;
  transition: color 500ms ease-in-out;
}

.navCol a.active {
  color: var(--primaryColor);
}

.navCol li {
  display: inline-block;
}

.navCol li + li {
  padding-left: 32px;
}

.navToggle {
  background-clip: content-box;
  border: 1px solid rgba(110, 106, 106, 0.2);
  box-sizing: content-box;
  display: block;
  height: 2px;
  margin-left: auto;
  padding: 15px 12px;
  transition: background-color 500ms ease-in-out 250ms;
  width: 18px;
}

.navToggle:hover {
  cursor: pointer;
}

.navToggle:before,
.navToggle:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  transition: transform 500ms ease-in-out;
  width: 18px;
}

.navToggle:before {
  top: -6px;
}

.navToggle:after {
  bottom: -4px;
}

.navToggle__text {
  display: none;
}

.navToggleActive .navToggle {
  background-color: transparent;
  transition-delay: 0s;
}

.navToggleActive .navToggle:before {
  transform: translateY(6px) rotate(-225deg);
}

.navToggleActive .navToggle:after {
  transform: translateY(-6px) rotate(225deg);
}

.bannerSection {
  padding: 180px 0 80px;
}

.bannerUserImg {
  border-radius: 50%;
  height: 240px;
  margin-left: 30px;
  position: relative;
  width: 240px;
}

.pCol a {
  cursor: pointer;
}

.bannerUserImg img {
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
}


.bannerBtnCol {
  padding-top: 15px;
}

.sectionSpace {
  padding: 80px 0;
}

.sectionSpaceSm {
  padding: 35px 0;
}

.ksText {
  display: block;
  padding-top: 10px;
}

.keySkillCard + .keySkillCard {
  padding-bottom: 25px;
}

.keySkillCard:hover {
  transform: scale(1.1);
}

.keySkillCol {
  text-align: center;
  width: 300px;
}

.pLbl {
  display: block;
  text-align: right;
  width: 50px;
}

.progress.progressStyle {
  background: var(--primaryDarkColor);
  border-radius: 3px;
  height: 8px;
  padding: 1px;
}

.progressStyle .progress-bar {
  background: var(--primaryColor);
  border-radius: 3px;
  transition: width 5s;
}

.pLbl {
  opacity: 0;
  transition: opacity 5s;
}

.progressCol + .progressCol {
  padding-top: 18px;
}

.cardOptionCol > li {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.cardOptionCol > li + li {
  padding-left: 40px;
}

.cardOptionCol > li + li:before {
	content: "|";
	left: 16px;
	position: absolute;
}

.cardOptionCol {
  padding: 5px 0 10px;
}

.cardStyle1 {
  background: #0000;
  border-radius: 4px;
  height: 100%;
  padding: 25px;
}

.cardStyle1 > p:last-child {
  margin-bottom: 0;
}

.cs1Title {
  min-height: 90px;
}

.dateLbl {
  background: var(--primaryColor);
  border-radius: 20px;
  color: var(--primaryDarkColor);
  display: inline-block;
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1;
  padding: 4px 12px;
}

.sliderOuter {
  position: relative;
}

.sliderOuter .swiper-button-next.swiperBtnStyle {
  right: -50px;
}

.sliderOuter .swiper-button-prev.swiperBtnStyle {
  left: -50px;
}

.sliderOuter .swiper-slide {
  height: auto;
}

.swiperPaginationStyle
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primaryColor);
}

.posInitial {
  position: initial;
}

.portfolioOption {
  display: flex;
  padding: 5px 0 16px;
}

.portfolioOption li {
  display: inline-block;
  padding-right: 20px;
}

.portfolioOption li:last-child {
  flex: 1;
}

.portfolioContentCol > p:last-child {
  margin-bottom: 0;
}

.portfolioImgCol img {
  border-radius: 6px;
  height: 184px;
  object-fit: cover;
  width: 246px;
}

.portfolioCard {
  border-bottom: 1px solid #3f3434;
  padding: 20px 0;
}

.ksIconCol i {
  color: #8b8484;
}

.testimonialCol {
  padding-top: 35px;
}

.tContentCol > p:last-child {
  font-size: 24px;
  margin-bottom: 0;
}

.tContentCol i {
  margin: 0 0.25em;
  vertical-align: bottom;
}

.tContentCol i.fa-quote-right {
  vertical-align: top;
}

.tImgCol {
  border-radius: 50%;
  height: 95px;
  margin-right: 5px;
  width: 95px;
  display: flex;
}

.tImgCol img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
}

.swiperBtnStyle {
  background: var(--primaryColor);
  border-radius: 50%;
  color: rgb(39, 35, 35);
  height: 35px;
  width: 35px;
}

.swiper-button-next.swiperBtnStyle::after,
.swiper-button-prev.swiperBtnStyle::after {
  font-size: 16px;
}

.swiperBtnStyle.swiper-button-prev {
  left: 2px;
}

.swiperBtnStyle.swiper-button-next {
  right: 2px;
}

.testimonialSlider {
  padding: 30px 0;
}

.testimonialSlider .swiper-slide {
  padding: 0 40px;
}

body.navToggleActive {
  overflow: hidden;
}

.footerCol {
  position: relative;
  padding: 50px 0;
  text-align: center;
}

.socialCol li {
  display: inline-block;
}

.socialCol li + li {
  padding-left: 35px;
}

.socialCol img {
  max-height: 30px;
  max-width: 30px;
  object-fit: contain;
}

.copyrightCol {
  padding: 20px 0 0;
  font-size: 14px;
}

.copyrightCol p {
  margin: 0;
}

.innerPageBannerCol {
  padding: 90px 0 75px;
}

.portfolioContentMain {
  padding: 0;
  position: relative;
  z-index: 1;
}

.pCol {
  background: rgb(53, 53, 51);
  border-radius: 10px;
  height: 100%;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 5px solid rgb(34, 10, 47);
  color: #f2f2f2;
  font-family: var(--baseFont);
  position: relative;
  z-index: 1;
}

.pCol span + span,
.pCol time {
  margin-left: auto;
}

h5 {
  display: flex;
}

.pCol h5,
.pCol p {
  color: rgb(185, 174, 174);
  margin: 1em;
}

.pCol a {
  display: block;
  padding-top: 56%;
  position: relative;
}

.pCol a img {
  border: 3px solid #372958;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.pImg {
	width: 100%;
}

@media (min-width:576px) {
	.swiper-pagination {
		display: none;
	}
}

@media (min-width:1200px) {
	.headerCol .timeline li -fluid {
		padding-left: 55px;
		padding-right: 55px;
	}
}

@media (max-width:1199px) {
	.navCol a {
		font-size: 18px;
	}
	.xlTitle {
		font-size: 40px;
	}
	.lgTitle {
		font-size: 28px;
	}
	.mdTitle {
		font-size: 24px;
	}
	.btn:not(.btn-sm) {
		font-size: 18px;
	}
	.cs1Title {
		min-height: 60px;
	}
	.bannerSection {
		padding: 150px 0 60px;
	}
	.sectionSpace {
		padding: 60px 0;
	}
	.footerCol {
		padding: 30px 0;
	}
	.innerPageBannerCol {
		padding: 150px 0 100px;
	}
}

@media (max-width:991px) {
	.sliderOuter .swiper-button-next.swiperBtnStyle {
		right: -20px;
	}
	.sliderOuter .swiper-button-prev.swiperBtnStyle {
		left: -20px;
	}
	.navCol a {
		font-size: 16px;
	}
	.xlTitle {
		font-size: 32px;
	}
	body {
		font-size: 14px;
	}
	.bannerUserImg {
		margin-left: 20px;
		width: 220px;
		height: 220px;
    transition: 1s;
	}
	.btn:not(.btn-sm) {
		font-size: 16px;
	}
	.bannerBtnCol {
		padding-top: 10px;
	}
	.smTitle {
		font-size: 18px;
		padding-bottom: 0px;
	}
	.keySkillCard + .keySkillCard {
		padding-top: 20px;
	}
	.cs1Title {
		min-height: auto;
	}
	.innerPageBannerCol{
		padding: 120px 0 50px;
	}
	.portfolioContentMain {
		padding: 0;
	}
}

@media (max-width:767px) {
	.navCollapseCol {
		background: var(--primaryDarkColor);
		bottom: 0;
		left: 0;
		padding: 20px;
		position: fixed;
		text-decoration-color: #a19f99;
		top: 0;
		transform: translateX(-100%);
		transition: all 300ms ease-in-out 0s;
		width: 230px;
		z-index: 99;
	}
	.navToggleActive .navCollapseCol {
		transform: translateX(0);
	}
	.navCol {
		text-align: left;
	}
	.navCol li + li {
		padding-left: 0;
	}
	.navCol li {
		padding: 5px 0;
	}
	.navCol li {
		display: block;
	}
	.navCol a:before {
		display: none;
	}
	.navCol a {
		color: var(--bs-white);
		font-size: 16px;
	}
	.bannerUserImg {
		height: 180px;
		margin-left: 0;
		width: 180px;
	}
	.bannerSection {
		padding: 120px 0 50px;
	}
	.tImgCol {
		margin-right: 0;
	}
	.socialCol img {
		max-height: 20px;
		max-width: 20px;
	}

	.socialCol i {
			color: gray;
	}

	.socialCol li + li {
		padding-left: 20px;
	}
	
	.copyrightCol {
		font-size: 12px;
		padding: 15px 0 0;
	}
	
	.footerCol {
		padding: 20px 0;
	}
	
	.mdTitle {
		font-size: 22px;
	}
	
	.lgTitle {
		font-size: 24px;
	}
	
	.smText {
		font-size: 18px;
	}
	
	.dateLbl {
		font-size: 15px;
	}
	
	.sectionSpace {
		padding: 50px 0;
	}

	.portfolioRow .pColMain:nth-child(2n-1) .pCol {
		margin-top: 0;
	}
	
	.innerPageBannerCol {
		padding: 100px 0 30px;
	}
	
	.navCol a:hover, .navCol a.active {
		color: var(--bs-white);
		opacity: 1;
	}
	
	.navCol a {
		opacity: 0.8;
	}
	
	.logoCol img {
		width: 50px;
	}
	
	.fixedHeader .headerCol,  .headerCol {
		padding: 10px 0;
	}
}

@media(max-width:575px) {
	.sliderOuter .swiper-button-prev.swiperBtnStyle ,
	.sliderOuter .swiper-button-next.swiperBtnStyle {
		display: none;
	}
	
	.testimonialSlider .swiper-slide {
		padding: 0 0px 50px;
	}
	
	.swiperBtnStyle.swiper-button-next {
		bottom: 0;
		left: 50%;
		margin-left: 5px;
		right: auto;
		top: auto;
	}
	
	.swiperBtnStyle.swiper-button-prev {
		bottom: 0;
		left: auto;
		margin-right: 5px;
		right: 50%;
		top: auto;
	}

	.testimonialSlider {
		padding: 10px 0 0;
	}

	.sectionSpace {
		padding: 40px 0;
	}

	.cardStyle1 {
		background: #353535;
		padding: 15px;
	}

	.btn {
		font-size: 14px;
	}

	.xlTitle {
		font-size: 26px;
	}

	.lgTitle {
		font-size: 22px;
	}

	.mdTitle {
		font-size: 20px;
	}

	.swiperBtnStyle {
		height: 30px;
		width: 30px;
	}

	.swiper-button-next.swiperBtnStyle:after, .swiper-button-prev.swiperBtnStyle:after {
		font-size: 14px;
	}
}

input[type=text], input[type=email], select, textarea {
	border-radius: 4px;
	border: 1px solid rgb(12, 11, 11);
	box-sizing: border-box;
	margin-bottom: 16px;
	margin-top: 6px;
	padding: 12px;
	resize: vertical;
	width: 100%;
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 890px;
  }
  .headerCol .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .headerCol .container-fluid {
    padding-left: 55px;
    padding-right: 55px;
  }
}

@media (max-width: 1199px) {
  .navCol a {
    font-size: 18px;
  }
  .xlTitle {
    font-size: 40px;
  }
  .lgTitle {
    font-size: 28px;
  }
  .mdTitle {
    font-size: 24px;
  }
  .btn {
    font-size: 18px;
  }
  .cs1Title {
    min-height: 60px;
  }
  .bannerSection {
    padding: 150px 0 60px;
  }
  .sectionSpace {
    padding: 60px 0;
  }
  .footerCol {
    padding: 30px 0;
  }
  .innerPageBannerCol {
    padding: 150px 0 100px;
  }
}

@media (max-width: 991px) {
  .sliderOuter .swiper-button-next.swiperBtnStyle {
    right: -20px;
  }
  .sliderOuter .swiper-button-prev.swiperBtnStyle {
    left: -20px;
  }
  .navCol a {
    font-size: 16px;
  }
  .xlTitle {
    font-size: 32px;
  }
  body {
    font-size: 14px;
  }
  .bannerUserImg {
    margin-left: 20px;
    width: 220px;
    height: 220px;
  }
  .btn:not(.btn-sm) {
    font-size: 16px;
  }
  .bannerBtnCol {
    padding-top: 10px;
  }
  .smTitle {
    font-size: 18px;
    padding-bottom: 0px;
  }
  .keySkillCard + .keySkillCard {
    padding-top: 20px;
  }
  .cs1Title {
    min-height: auto;
  }
  .innerPageBannerCol {
    padding: 120px 0 50px;
  }
  .portfolioContentMain {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .navCollapseCol {
    background: var(--primaryDarkColor);
    bottom: 0;
    left: 0;
    padding: 20px;
    position: fixed;
    text-decoration-color: #a19f99;
    top: 0;
    transform: translateX(-100%);
    transition: all 300ms ease-in-out 0s;
    width: 230px;
    z-index: 99;
  }
  .navToggleActive .navCollapseCol {
    transform: translateX(0);
  }
  .navCol {
    text-align: left;
  }
  .navCol li + li {
    padding-left: 0;
  }
  .navCol li {
    padding: 5px 0;
  }
  .navCol li {
    display: block;
  }
  .navCol a::before {
    display: none;
  }
  .navCol a {
    color: var(--bs-white);
    font-size: 16px;
  }
  .bannerUserImg {
    height: 180px;
    margin-left: 0;
    width: 180px;
  }
  .bannerSection {
    padding: 120px 0 50px;
  }
  .tImgCol {
    margin-right: 0;
  }
  .socialCol img {
    max-height: 20px;
    max-width: 20px;
  }

  .socialCol i {
    color: gray;
  }

  .socialCol li + li {
    padding-left: 20px;
  }

  .copyrightCol {
    font-size: 12px;
    padding: 15px 0 0;
  }

  .footerCol {
    padding: 20px 0;
  }

  .mdTitle {
    font-size: 22px;
  }

  .lgTitle {
    font-size: 24px;
  }

  .smText {
    font-size: 18px;
  }

  .dateLbl {
    font-size: 15px;
  }

  .sectionSpace {
    padding: 50px 0;
  }

  .portfolioRow .pColMain:nth-child(2n-1) .pCol {
    margin-top: 0;
  }

  .innerPageBannerCol {
    padding: 100px 0 30px;
  }

  .navCol a:hover,
  .navCol a.active {
    color: var(--bs-white);
    opacity: 1;
  }

  .navCol a {
    opacity: 0.8;
  }

  .logoCol img {
    width: 50px;
  }

  .fixedHeader .headerCol,
  .headerCol {
    padding: 10px 0;
  }
}

@media (max-width: 575px) {
  .sliderOuter .swiper-button-prev.swiperBtnStyle,
  .sliderOuter .swiper-button-next.swiperBtnStyle {
    display: none;
  }

  .testimonialSlider .swiper-slide {
    padding: 0 0px 50px;
  }

  .swiperBtnStyle.swiper-button-next {
    bottom: 0;
    left: 50%;
    margin-left: 5px;
    right: auto;
    top: auto;
  }

  .swiperBtnStyle.swiper-button-prev {
    bottom: 0;
    left: auto;
    margin-right: 5px;
    right: 50%;
    top: auto;
  }

  .testimonialSlider {
    padding: 10px 0 0;
  }

  .sectionSpace {
    padding: 40px 0;
  }

  .cardStyle1 {
    background: #353535;
    padding: 15px;
  }

  .btn:not(.btn-sm) {
    font-size: 14px;
  }

  .xlTitle {
    font-size: 26px;
  }

  .lgTitle {
    font-size: 22px;
  }

  .mdTitle {
    font-size: 20px;
  }

  .swiperBtnStyle {
    height: 30px;
    width: 30px;
  }

  .swiper-button-next.swiperBtnStyle::after,
  .swiper-button-prev.swiperBtnStyle::after {
    font-size: 14px;
  }
}

input[type="text"],
input[type="email"],
select,
textarea {
  border-radius: 4px;
  border: 1px solid rgb(12, 11, 11);
  box-sizing: border-box;
  margin-bottom: 16px;
  margin-top: 6px;
  padding: 12px;
  resize: vertical;
  width: 100%;
}

.keySkillCard {
  display: inline-block;
  padding-top: 0px;
  text-align: center;
  width: 49%;
  transition: 1s;
}

.row {
  margin-top: 0;
}

form {
  display: flex;
  flex-direction: column;
}

@media (max-width: 720px) {
	body {
		text-align: center;
	}

	.col-md-auto, .row, .col-sm-auto, .pImg{
		display: flex;
		justify-content: center;  
	}
}
   
  body {
    text-align: center;
  }

  .col-md-auto,
  .row,
  .col-sm-auto,
  .pImg {
    display: flex;
    justify-content: center;
  }



#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

.enlarged-image {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: block;
  margin-bottom: 10px;
}

.image-text {
  position: fixed;
  top: 91%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: block;
  text-align: center;
  color: #fff;
  background-color: black;
  font-size: 1.2em; /* Larger text */
  border-radius: 5px; /* Rounded edges */
}

.pCol h5 a {
  margin-top: 0;
  padding-top: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: rgb(185, 174, 174);
  background-color: transparent;
  border-radius: 5px;
}

.toggle-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  margin-top: 10px;
}

.checkbox-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-input {
  display: none;
}

.checkbox-custom {
  background-color: var(--primaryDarkColor);
  border-radius: 5px;
  color: var(--primaryColor);
  display: inline-block;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1;
  border: none;
  margin-right: 8px;
  transition: background-color 0.3s, border-color 0.3s;
  text-align: center;
}

.checkbox-input:checked + .checkbox-custom {
  background-color: var(--primaryColor);
  color: var(--primaryDarkColor);
}
