@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat_regular-webfont.woff2") format("woff2"), url("../fonts/Montserrat_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 16px 0;
}

a {
  color: #7d5ba6;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: rgb(164.3083003953, 140.5889328063, 192.9110671937);
}

.hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 40px;
  }
}
.main-header {
  background-color: #000000;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header .grid-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 26px;
  margin-left: auto;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background-color: #111111;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
}

.main-nav.active {
  right: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nav-list a {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.mobile-overlay.active {
  display: block;
}

@media screen and (min-width: 768px) {
  .logo-img {
    height: 50px;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .main-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .nav-list {
    flex-direction: row;
    justify-content: flex-end;
    gap: 32px;
  }
  .nav-list a {
    font-size: 14px;
  }
  .mobile-overlay {
    display: none !important;
  }
}
.main-footer {
  background-color: #111111;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-tagline {
  color: #cccccc;
}

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

.footer-nav li {
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.social-links a {
  color: #ffffff;
  font-size: 14px;
}

.social-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: #cccccc;
  font-size: 14px;
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #7d5ba6;
  color: #ffffff;
  border-color: #7d5ba6;
}

.btn-primary:hover {
  background-color: rgb(151.2055335968, 124.0592885375, 183.9407114625);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #000000;
}

.showcase-section {
  background-color: #111111;
  padding: 64px 0;
}

.section-title-left {
  margin-bottom: 32px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
}

.portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.about-section {
  background-color: #000000;
  padding: 64px 0;
}

.skills-section {
  background-color: #000000;
  padding: 64px 0;
  overflow: hidden;
}

.skills-carousel {
  display: flex;
  gap: 32px;
  padding: 64px 32px;
  width: fit-content;
  animation: infiniteScroll 50s linear infinite;
}
.skills-carousel:hover {
  animation-play-state: paused;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.skill-card {
  flex: 0 0 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.skill-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #e8e8e8 0%, #dcdcdc 100%);
  border-color: #7d5ba6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.skill-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.resume-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #7d5ba6;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
}
.resume-btn:hover {
  background-color: #5a4580;
}

@media screen and (max-width: 767px) {
  .skills-carousel {
    gap: 12px;
    padding: 12px 0;
  }
  .skill-card {
    flex: 0 0 130px;
    padding: 12px;
  }
  .skill-card h4 {
    font-size: 13px;
  }
  .skill-card p {
    font-size: 11px;
  }
  .skill-icon {
    width: 50px;
    height: 50px;
  }
}
.stats-section {
  background-color: #000000;
  padding: 64px 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.stat-item {
  text-align: center;
  padding: 64px;
  background-color: rgba(125, 91, 166, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(125, 91, 166, 0.3);
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-item:hover {
  background-color: rgba(125, 91, 166, 0.2);
  border-color: #7d5ba6;
  transform: translateY(-4px);
}

.stat-value {
  font-size: 56px;
  font-weight: 700;
  color: #7d5ba6;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif;
}

.stat-label {
  font-size: 16px;
  color: #cccccc;
  margin: 0;
  font-weight: 500;
}

@media screen and (max-width: 1199px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 0 100px;
    width: 500px;
  }
  .stat-item {
    padding: 32px;
    min-height: auto;
  }
  .stat-value {
    font-size: 48px;
    margin-bottom: 12px;
  }
  .stat-label {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .stats-container {
    grid-template-columns: 1fr;
    padding: 0 100px;
    width: 500px;
  }
  .stat-value {
    font-size: 40px;
  }
  .stat-label {
    font-size: 12px;
  }
}
.projects-section {
  background-color: #000000;
  padding: 64px 0;
}

.projects-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title-center {
  font-size: 40px;
  margin-bottom: 32px;
  color: #ffffff;
}

.projects-intro {
  font-size: 16px;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.project-card {
  border-radius: 8px;
  overflow: hidden;
  background-color: #111111;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(125, 91, 166, 0.25);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(125, 91, 166, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-project-btn {
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-project-btn:hover {
  transform: scale(1.05);
}

.project-info {
  padding: 32px;
}

.project-tag {
  display: inline-block;
  background-color: #7d5ba6;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #ffffff;
}

.project-description {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
}

.view-all-container {
  text-align: center;
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .section-title-center {
    font-size: 28px;
  }
  .project-image {
    height: 350px;
  }
  .project-card {
    margin-bottom: 64px;
  }
}
section {
  padding: 64px 0;
}

.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  background-image: url("../images/b&w.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

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

.hero-text {
  padding: 32px 0;
}

.hero-title {
  font-size: 42px;
  margin-bottom: 16px;
  color: #7d5ba6;
  font-weight: 700;
}

.hero-title .highlight {
  color: #7d5ba6;
}

.hero-tagline {
  font-size: 20px;
  color: #7d5ba6;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-description {
  font-size: 16px;
  color: #7d5ba6;
  line-height: 1.8;
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-image-wrapper {
    margin-top: 0;
  }
}
.contact-section {
  background-color: #000000;
  padding: 64px 0;
}

.contact-info {
  padding: 32px 0;
}

.contact-description {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 64px;
}

.contact-details {
  margin-top: 64px;
}

.contact-details h3 {
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-methods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-methods li {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.contact-label {
  color: #7d5ba6;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 4px;
}

.contact-methods a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-methods a:hover {
  color: #7d5ba6;
}

.contact-form-wrapper {
  padding: 32px 0;
}

.contact-form-wrapper h3 {
  font-size: 20px;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 13px;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7d5ba6;
  background-color: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-feedback {
  margin-top: 32px;
  padding: 16px 32px;
  border-radius: 4px;
  min-height: 20px;
}

.error-message {
  color: #ff6b6b;
  font-size: 13px;
  margin: 4px 0;
  line-height: 1.5;
}

.success-message {
  color: #51cf66;
  font-size: 13px;
  margin: 4px 0;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-info {
    margin-bottom: 64px;
  }
}

/*# sourceMappingURL=main.css.map */
