.elementor-1052 .elementor-element.elementor-element-8d7d265{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0100px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1052 .elementor-element.elementor-element-8d7d265:not(.elementor-motion-effects-element-type-background), .elementor-1052 .elementor-element.elementor-element-8d7d265 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1052 .elementor-element.elementor-element-80b07f6{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 050px;text-align:center;}.elementor-1052 .elementor-element.elementor-element-80b07f6 .elementor-heading-title{font-family:"Montserrat", Sans-serif;font-size:41px;font-weight:700;line-height:59px;color:#FFFFFF;}.elementor-1052 .elementor-element.elementor-element-8783361{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0100px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1052 .elementor-element.elementor-element-8783361:not(.elementor-motion-effects-element-type-background), .elementor-1052 .elementor-element.elementor-element-8783361 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-1052 .elementor-element.elementor-element-80b07f6{margin:-40px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-1052 .elementor-element.elementor-element-80b07f6 .elementor-heading-title{font-size:35px;}}/* Start custom CSS for html, class: .elementor-element-3a00fdb */body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* container */
.tabs-container {
  width: 90%;
  margin: auto;
  padding: 40px 0;
}

/* ===================== TABS ===================== */
.tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  background: #000;
  color: #fff;
  border: 2px solid #62CEAA;
  padding: 12px;
  cursor: pointer;
  border-radius: 6px;
  text-align: center;
  transition: 0.3s ease;

  /* remove default browser style */
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

/* hover (NO BLUE) */
.tab-btn:hover {
  background: #000;
  border-color: #62CEAA;
  color: #fff;
}

/* active tab (NO BLUE) */
.tab-btn.active {
  background: #000;
  color: #fff;
  border: 2px solid #62CEAA;
  box-shadow: 0 0 10px #62CEAA;
}

/* click / focus remove completely */
.tab-btn:focus,
.tab-btn:focus-visible,
.tab-btn:active {
  outline: none !important;
  box-shadow: none !important;
  background: #000;
}

/* safety reset */
button {
  outline: none;
  box-shadow: none;
}

/* ===================== CONTENT ===================== */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ===================== PROJECTS ===================== */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.projects img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 2px solid #62CEAA;
  border-radius: 8px;
  transition: 0.3s ease;
}

/* image hover */
.projects img:hover {
  transform: scale(1.05);
  border-color: #62CEAA;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */