@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Heebo:wght@400;500;700;900&display=swap');
/* font-family: 'Courier Prime', monospace;
font-family: 'Heebo', sans-serif; */
:root {
  --primaryColor: #9C07B6;
  --primaryDarkColor: #3D0048;
  --primaryHoverColor: #900AA8;
  --secondaryColor: #F9B000;
  --baseColor: #21243D;
  --baseFont: 'Heebo', sans-serif;
  --titleFont: 'Courier Prime', monospace;
  --regular: 400;
  --medium: 500;
  --bold: 700;
  --black: 900;
  --lightBg: #F1F1F1;
}
html {
  scroll-behavior: smooth;
  background-color: #f8f8f8;
}
body {
  font-family: var(--baseFont);
  color: var(--baseColor);
  line-height: normal;
  background-color: #f8f8f8;
  color: black;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
a {
  color: inherit;
}
a:hover {
  color: blue;
}
a, .btn {
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  text-decoration: none;
}
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.primaryColor {
  color: var(--primaryColor);
}
.primaryDarkColor {
  color: var(--primaryDarkColor);
}
#black{
  color: black;
}
.btn {
  font-size: 20px;
  font-weight: var(--medium);
  padding: 8px 20px;
  border-radius: 2px;
}
.btnPrimary {
  background-color: blue;
  color: var(--bs-white);
  
}
.btnPrimary:hover {
  background-color: var(--primaryDarkColor);
  color: var(--bs-white);
}
.btnOutline {
	border: 1px solid var(--primaryDarkColor);
	color: var(--primaryDarkColor);
}
.btnOutline:hover {
	border: 1px solid var(--primaryDarkColor);
  background-color: var(--primaryDarkColor);
	color: var(--bs-white);
}
.btn:focus {
  outline: none;
}


/* titles */
.xlTitle {
  font-size: 44px;
  line-height: 1.3;
  font-weight: var(--bold);
  font-family: var(--titleFont)
}
.lgTitle {
  font-size: 30px;
  line-height: normal;
  font-weight: var(--bold);
  font-family: var(--titleFont)
}
.mdTitle {
  font-size: 26px;
  line-height: normal;
  font-weight: var(--bold);
  font-family: var(--titleFont)
}
.smTitle {
  font-size: 36px;
  line-height: normal;
  font-weight: var(--regular);
  font-family: var(--titleFont);
  text-shadow: 
  0 0 5px #057eff,
  0 0 10px #057eff, 
  0 0 15px #057eff, 
  0 0 20px #057eff, 
  0 0 25px #057eff;
  color: black;
}
.smText {
  font-size: 36px;
  text-shadow: 
  0 0 5px #000000, 
  0 0 25px #000000;
  color: black;
}
.xsTitle {
  font-size: 18px;
  line-height: normal;
}

.regular {
  font-weight: var(--regular);
  font-family: var(--titleFont);
}
.medium {
  font-weight: var(--medium);
}
.bold {
  font-weight: var(--bold);
}
.black {
  font-weight: var(--black);
}


.headerCol {
  background-color: #f8f8f8;
  padding: 18px 0;
  position: relative;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  margin-bottom: 0;
}
.fixedHeader .headerCol {
	padding: 10px 0;
	-webkit-box-shadow: 0 0 24px rgba(0,0,0,0.1);
  box-shadow: 0 0 24px rgba(0,0,0,0.1);
}


/* navigation */
.navCol {
	text-align: right;
}
.navCol a {
	font-size: 20px;
	color: #000;
  font-weight: var(--medium);
  display: inline-block;
  position: relative;
}
.navCol a:hover {
  color: var(--primaryColor);
}
.navCol a::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background-color: var(--primaryColor);
  -webkit-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
  transition: all 500ms ease-in-out 0s;
  opacity: 0;
}
.navCol a.active::before {
  opacity: 1;
  width: 27px;
  right: auto;
  left: 0;
}
.navCol a:hover::before {
  opacity: 1;
  left: 0;
  right: 0;
}
.navCol a.active {
  color: var(--primaryColor);
}
.navCol li {
	display: inline-block;
}
.navCol li + li {
  padding-left: 32px;
}
/*   /navigation */


/* nav toggle */
.navToggle {
	display: block;
	padding: 15px 12px;
	width: 18px;
	height: 2px;
	box-sizing: content-box;
	background-clip: content-box;
	-webkit-transition: background-color 500ms ease-in-out 250ms;
  -o-transition: background-color 500ms ease-in-out 250ms;
  transition: background-color 500ms ease-in-out 250ms;
	background-color: #000;
	border: 1px solid rgba(0,0,0,0.2);
  margin-left: auto;
}
.navToggle:hover {
  cursor: pointer;
}
.navToggle:before, .navToggle:after {
  position: relative;
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background-color: #000;
  -webkit-transition: transform 500ms ease-in-out;
  -o-transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out;
}
.navToggle:before {
  top: -6px;
}
.navToggle:after {
  bottom: -4px;
}
.navToggle__text {
  display: none;
}
.navToggleActive .navToggle {
  background-color: rgba(255, 255, 255, 0);
  transition-delay: 0s;
}
.navToggleActive .navToggle:before {
  -webkit-transform: translateY(6px) rotate(-225deg);
  -ms-transform: translateY(6px) rotate(-225deg);
  transform: translateY(6px) rotate(-225deg);
}
.navToggleActive .navToggle:after {
  -webkit-transform: translateY(-6px) rotate(225deg);
  -ms-transform: translateY(-6px) rotate(225deg);
  transform: translateY(-6px) rotate(225deg);
}
/*   /nav toggle */


/* banner section */
.bannerSection {
	padding: 40px 0 50px;
}
.bannerUserImg {
  margin-left: 30px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  position: relative;
}
.bannerUserImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
}
.bannerUserImg::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 13px;
  width: 100%;
  height: 100%;
  background-color: #EDF7FA;
  border-radius: 50%;
}
.bannerBtnCol {
	padding-top: 15px;
}

.sectionSpace {
  padding: 60px 0;
}
.sectionSpaceSm {
  padding: 35px 0;
}
.ksText {
	display: block;
	padding-top: 10px;
}
.keySkillCard + .keySkillCard {
  padding-top: 25px;
}
.keySkillCol {
  width: 300px;
}
.pLbl {
  display: block;
  width: 50px;
  text-align: right;
}

.progress.progressStyle {
	height: 8px;
	padding: 1px;
	background-color: var(--secondaryColor);
	border-radius: 3px;
}
.progressStyle .progress-bar {
	background-color: #fff;
	border-radius: 3px;
}
.progressCol + .progressCol {
	padding-top: 18px;
}

.cardOptionCol > li {
	display: inline-block;
	vertical-align: middle;
  position: relative;
}
.cardOptionCol > li + li {
  padding-left: 40px;
}
.cardOptionCol > li + li::before {
  content: "|";
  position: absolute;
  left: 16px;
}
.cardOptionCol {
	padding: 5px 0 10px;
}
.cardStyle1 {
	padding: 25px;
	background-color: var(--bs-white);
	border-radius: 4px;
  height: 100%;
  color: black;
}
.cardStyle1 > p:last-child {
	margin-bottom: 0;
}
.cs1Title {
  min-height: 90px;
}

.dateLbl {
	display: inline-block;
	padding: 4px 12px;
	background-color: #142850;
	border-radius: 20px;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	font-weight: var(--bold);
}
.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-color: blue;
}
.posInitial {
  position: initial;
}
.portfolioOption li {
  display: inline-block;
  padding-right: 20px;
  color: black;
}
.portfolioOption {
	padding: 5px 0 16px;
}
.portfolioContentCol > p:last-child {
  margin-bottom: 0;
}
.portfolioImgCol img {
  border-radius: 6px;
  width: 246px;
  height: 184px;
  -o-object-fit: cover;
  object-fit: cover;
}
.portfolioCard {
  padding: 20px 0;
  border-bottom: 1px solid #E0E0E0;
}



.testimonialCol {
  padding-top: 35px;
}
.tContentCol > p:last-child {
  margin-bottom: 0;
}
.tImgCol {
	width: 95px;
	height: 95px;
	margin-right: 5px;
	border-radius: 50%;
}
.tImgCol img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.swiperBtnStyle {
	width: 35px;
	height: 35px;
	color: #fff;
	background-color: blue;
	border-radius: 50%;
}

.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;
}

.logoCol img {
  width: 5vw;
  border-radius: 50%;
}


/* footer */
.footerCol {
  padding: 0 0 30px;
  text-align: center;
}
.socialCol li {
  display: inline-block;
}
.socialCol li + li {
  padding-left: 35px;
}
.socialCol img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
}
#noo:hover{
  color:rgb(51, 50, 50);
}

/* portfolio page */
.innerPageBannerCol {
	padding: 180px 0 150px;
}
.portfolioContentMain {
  position: relative;
  z-index: 1;
  padding: 50px 0 ;
}
.pCol {
  height: 100%;
}
.pImg {
  width: 100%;
}

.portfolioRow .pColMain:nth-child(2n-1) .pCol {
  margin-top: -110px;
}
#black{
  color: black;
}
@media (min-width:576px) {
  .swiper-pagination {
    display: none;
  }
}
@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;
  }
  .headerCol {
    visibility: visible !important;
  }
}

@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 {
  	font-size: 16px;
  }
  .bannerBtnCol {
  	padding-top: 10px;
  }
  .smTitle {
  	font-size: 18px;
  }
  .keySkillCard + .keySkillCard {
  	padding-top: 20px;
  }
  .keySkillCol {
  	width: 250px;
  }
  .cs1Title {
  	min-height: auto;
  }

  .innerPageBannerCol{
  	padding: 120px 0 50px;
  }
  .portfolioRow .pColMain:nth-child(2n-1) .pCol {
  	margin-top: -70px;
  }
  .portfolioContentMain {
  	padding: 30px 0;
  }
  .logoCol img {
    width: 24vw;
  }
  .col-auto {
    text-align: right;
  }
  .headerCol {
    visibility: visible !important;
  }
}

@media (max-width:767px) {
  .navCollapseCol {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 230px;
    padding: 20px;
    background: var(--primaryDarkColor);
    z-index: 99;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
  }
  .navToggleActive .navCollapseCol {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    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 {
  	font-size: 16px;
    color: var(--bs-white);
  }

  .bannerUserImg {
  	margin-left: 0;
  	width: 180px;
  	height: 180px;
  }
  .bannerSection {
  	padding: 20px 0 30px;
  }
  .tImgCol {
  	margin-right: 0;
  }
  .socialCol img {
  	width: 20px;
  	height: 20px;
  }
  .socialCol li + li {
  	padding-left: 20px;
  }
  .copyrightCol {
  	padding: 15px 0 0;
  	font-size: 12px;
  }
  .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;
  }
  .fixedHeader .headerCol,  .headerCol {
  	padding: 10px 0;
  }
  .headerCol {
    padding: 10px 0;
    margin-bottom: 0;
  }
  .headerCol {
    visibility: visible !important;
  }
  
  /* Remove margin between navbar and title for blog posts on mobile */
  .blogPost .xlTitle {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  .blogPost {
    padding-top: 0 !important;  /* Remove top padding on mobile */
  }
}

@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 {
  	right: auto;
  	top: auto;
  	bottom: 0;
  	left: 50%;
  	margin-left: 5px;
  }
  .swiperBtnStyle.swiper-button-prev {
  	left: auto;
  	top: auto;
  	bottom: 0;
  	right: 50%;
  	margin-right: 5px;
  }
  .testimonialSlider {
  	padding: 10px 0 0;
  }
  .sectionSpace {
  	padding: 40px 0;
  }
  .cardStyle1 {
  	padding: 15px;
  }
  .btn {
  	font-size: 14px;
  }
  .xlTitle {
  	font-size: 26px;
  }
  .lgTitle {
  	font-size: 22px;
  }
  .mdTitle {
  	font-size: 20px;
  }
  .swiperBtnStyle {
  	width: 30px;
  	height: 30px;
  }
  .swiper-button-next.swiperBtnStyle::after, .swiper-button-prev.swiperBtnStyle::after {
  	font-size: 14px;
  }
  .headerCol {
    visibility: visible !important;
  }
}

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

/* Update blog content styles */
.blogContent {
  color: #fff;
}

.blogContent h1, 
.blogContent h2, 
.blogContent h3 {
  color: #fff;
  font-weight: var(--bold);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blogContent p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Add blockquote styling */
.blogContent blockquote {
  font-style: italic;
  margin: 20px 40px;
  padding: 0 20px;
  border-left: 4px solid #057eff;
  background-color: rgba(0, 0, 0, 0.02);
}

.blogContent blockquote p {
  margin: 15px 0;
}

/* Update image spacing */
.blogContent img {
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 100%;
  height: auto;
}

/* Ensure all text elements are white */
.blogPost .blogMeta,
.blogPost .blogMeta span,
.blogPost .portfolioOption li,
.blogPost .dateLbl {
  color: #fff;
}

/* Keep links styled differently */
.blogContent a {
  color: #057eff;
  opacity: 0.8;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.blogContent a:hover {
  opacity: 1;
  color: #057eff;
}

/* Replace the existing blog title styles with this */
.blogPost .xlTitle {
  font-size: 48px;
  font-family: var(--titleFont);
  color: #fff;
  text-shadow: 0 0 5px #057eff, 0 0 10px #057eff, 0 0 15px #057eff;
  margin: 0 0 40px 0;
  text-align: center;
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

/* Remove any other .blogPost .xlTitle styles that might be conflicting */
.blogTitleContainer {
  margin: 40px 0;
  width: 100%;
}

.blogImage {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 8px;
}

.blogImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Update the blog post styles */
.blogPost {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 120px !important;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}

/* Update blog list styles */
.blogContent ul {
  list-style-type: disc;  /* Restore bullet points */
  margin-left: 2rem;      /* Add proper indentation */
  margin-bottom: 1.5rem;  /* Consistent spacing */
  color: #fff;           /* Make text white */
}

.blogContent ul li {
  color: #fff;           /* Ensure list items are white */
  margin-bottom: 0.5rem; /* Space between list items */
  display: list-item;    /* Ensure proper list display */
}

/* Make sure all text in blog content is white */
.blogContent * {
  color: #fff;
}

/* Keep links blue */
.blogContent a {
  color: #057eff;
  opacity: 0.8;
  text-decoration: underline;
}

/* Keep blog section with dark theme */
.blogPost,
.blogContent,
.blogContent * {
  background-color: #f8f8f8;
  color: black;
}

.blogContent h1, 
.blogContent h2, 
.blogContent h3 {
  color: black;
  font-weight: var(--bold);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blogContent p {
  color: black;
  margin-bottom: 1.5rem;
}

/* Update list styles */
.blogContent ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: black;
}

.blogContent ul li {
  color: black;
  margin-bottom: 0.5rem;
  display: list-item;
}

/* Update blog meta information */
.blogPost .blogMeta,
.blogPost .blogMeta span,
.blogPost .portfolioOption li,
.blogPost .dateLbl {
  color: black;
}

/* Keep links blue but adjust for white background */
.blogContent a {
  color: #0066cc;
  opacity: 1;
  text-decoration: underline;
}

.blogContent a:hover {
  opacity: 0.8;
  color: #0066cc;
}

/* Update blog post title */
.blogPost .xlTitle {
  font-size: 48px;
  font-family: var(--titleFont);
  color: black;
  text-shadow: none;
  margin: 0 0 40px 0;
  text-align: center;
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

/* Blog index page styles */
.blogList {
  background-color: #f8f8f8;
  color: black;
  padding-top: 120px;  /* Match the header offset */
}

.blogCard {
  background-color: #f8f8f8;
  color: black;
  border-bottom: 1px solid #E0E0E0;
  padding: 20px 0;
}

.blogCard h2 a {
  color: black;
  font-family: var(--titleFont);
  font-size: 30px;
  text-decoration: none;
}

.blogCard h2 a:hover {
  color: blue;
}

.blogCard .blogDate {
  color: black;
  font-size: 16px;
  margin: 10px 0;
}

.blogCard .blogExcerpt {
  color: black;
  margin: 1rem 0;
}

/* Update the blog index title */
.blogList h1.text-center {
  color: black;
  font-family: var(--titleFont);
  font-size: 48px;
  margin-bottom: 40px;
}

/* Blog index meta information */
.blogList .portfolioOption li,
.blogList .dateLbl {
  color: black;
}

/* Blog index links */
.blogList a:not(.btn) {
  color: #0066cc;
  text-decoration: none;
}

.blogList a:not(.btn):hover {
  color: blue;
}

/* Update any other blog-related elements to use the same background */
.blogContent article,
.blogContent section,
.blogContent div {
  background-color: #f8f8f8;
}

/* Hide ALL navbar elements on blog posts */
.blogPost header,
.blogPost .navbar,
.blogPost .headerCol,
.blogPost .navbar-expand-lg {
  display: none !important;
}

/* Back arrow styles */
.backArrow {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 32px;
  color: black;
  text-decoration: none;
  z-index: 9999;
  line-height: 1;
  padding: 10px;
}

.backArrow:hover {
  color: blue;
  text-decoration: none;
}

/* Add space between title and top of screen */
.blogPost {
  margin-top: 30px;
}

.blogPost .xlTitle {
  margin-top: 40px;
}

/* Media queries for mobile adjustments */
@media (max-width: 767px) {
  .backArrow {
    position: absolute; /* Not fixed on mobile */
    top: 15px;
    left: 15px;
    font-size: 36px; /* Larger on mobile */
  }
  
  /* Smaller title on mobile */
  .blogPost .xlTitle {
    font-size: 32px;
    margin-top: 60px; /* More space on mobile */
  }
}
