/*

Tooplate 2115 Marvel

https://www.tooplate.com/view/2115-marvel

*/


@import url("https://fonts.googleapis.com/css?family=Maven+Pro:400,700");
:root {
  --accent: #d6a742;
  --accent-strong: #b98a2f;
  --ink: #212121;
  --surface: #ffffff;
  --surface-muted: #f5f7fa;
  --border-soft: rgba(71, 69, 89, 0.14);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.06);
}

body {
  font-family: "Maven Pro", sans-serif;
  padding-top: 70px;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 32%, var(--surface-muted) 100%);
  color: var(--ink);
}

.full-screen {
  padding: 8rem 0;
}

.small-text {
  color: #5b5b5b;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

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

a {
  font-weight: normal;
  text-decoration: none !important;
  transition: all 0.4s ease;
}
a:hover {
  color: var(--accent) !important;
}

.navbar-brand .uil {
  font-size: 40px;
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #5b5b5b;
}

section {
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(71, 69, 89, 0.04), transparent 38%);
  pointer-events: none;
}

.about-text,
.contact-info,
.contact-form,
.timeline-wrapper,
.project-info,
.about-image img {
  animation: fadeUp 700ms ease both;
}

.about-text {
  animation-delay: 80ms;
}

.about-image img {
  animation-delay: 180ms;
}

.contact-info,
.contact-form {
  animation-delay: 120ms;
}

.timeline-wrapper {
  animation-delay: 120ms;
}

.project-info {
  animation-delay: 120ms;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  letter-spacing: -1px;
}

h1 {
  color: #212121;
  font-size: 2.8em;
  margin: 24px 0;
}

h2 {
  color: #353535;
  font-size: 2.4em;
  font-weight: bold;
}

h3 {
  color: #484848;
}

h3,
b, strong {
  font-weight: bold;
}

.custom-btn {
  background: var(--surface);
  color: #353535;
  font-weight: bold;
  border-radius: 50px;
  padding: 13px 26px;
  font-size: 14px;
  line-height: normal;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.custom-btn:hover {
  color: #212121;
  transform: translateY(-2px);
}
.custom-btn.custom-btn-bg {
  background: #474559;
  color: #ffffff;
}
.custom-btn.custom-btn-bg:hover {
  background: var(--accent);
  color: #ffffff !important;
}
.custom-btn.custom-btn-outline {
  background: transparent;
  color: #474559;
}
.custom-btn.custom-btn-outline:hover {
  background: #474559;
  color: #ffffff !important;
}

.animated {
  position: relative;
}

.animated-info {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  min-width: 260px;
  position: relative;
}

.animated-item {
  color: var(--accent);
}

.animated-item {
  font-size: 38px;
  line-height: inherit;
  display: block;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  animation: BottomTotop 6s linear infinite 0s;
}
.animated-item:nth-child(2n+2) {
  animation-delay: 2s;
}
/* Small title for hero (override animated styles) */
.display-name.small-title {
  color: #212121;
  font-size: 2.2rem;
  font-weight: 700;
  display: inline-block;
  position: static !important;
  opacity: 1 !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  animation: none !important;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .display-name.small-title { font-size: 1.8rem; }
}
@media (max-width: 767px) {
  .display-name.small-title { font-size: 1.4rem; white-space: normal; }
}

/* Yellow role on its own line */
.role.yellow-title {
  display: block;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 0.25rem;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .role.yellow-title { font-size: 1.4rem; white-space: normal; }
}

@media (max-width: 767px) {
  .role.yellow-title { font-size: 1.2rem; }
}
.animated-item:nth-child(3n+3) {
  animation-delay: 4s;
}

@keyframes BottomTotop {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    transform: translateY(5px);
  }
  10% {
    opacity: 1;
    transform: translateY(0px);
  }
  25% {
    opacity: 1;
    transform: translateY(0px);
  }
  30% {
    opacity: 0;
    transform: translateY(5px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999999;
  will-change: transform;
  transition: transform 200ms linear;
}
.navbar[class*="-unpinned"] {
  transform: translate(0, -150%);
}
.navbar[class*="-pinned"] {
  transform: translate(0, 0);
}
.navbar[class*="headroom--not-top"] {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(240, 240, 240, 0.9);
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  font-weight: bold;
}

.navbar-expand-sm .navbar-nav .nav-link {
  padding: 0 20px;
}

.nav-link {
  font-weight: bold;
  font-size: 16px;
  overflow: hidden;
}
.nav-link span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}
.nav-link span:before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  transform: translate3d(0, 0, 0);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--accent);
  font-weight: bold;
}
.navbar-light .navbar-nav .nav-link:focus span,
.navbar-light .navbar-nav .nav-link:hover span {
  transform: translateY(-100%);
}

.navbar-light .navbar-toggler-icon {
  background: none;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  outline: none;
  cursor: pointer;
  margin-right: 10px;
}
.navbar-toggler:focus {
  outline: none;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:first-child {
  transform: rotate(45deg);
  top: 6px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(2) {
  display: none;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:last-child {
  transform: rotate(-45deg);
  bottom: 1px;
}
.navbar-toggler .navbar-toggler-icon {
  background: #212121;
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  transition: all 0.4s ease;
  position: relative;
}

.copyright-text {
  font-size: 16px;
  font-weight: normal;
  display: block;
}

.color-mode {
  font-weight: bold;
  cursor: pointer;
}

.color-mode-icon {
  position: relative;
  right: 6px;
}
.color-mode-icon:after {
  font-family: 'unicons';
  content: '\ea9f';
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
}
.color-mode-icon.active:after {
  font-family: 'unicons';
  content: '\eb65';
  font-size: 30px;
  color: #ffffff;
}

.dark-mode {
  background: linear-gradient(180deg, #0d1117 0%, #111827 100%);
  color: #d6dbe5;
}
.dark-mode section::before {
  background: radial-gradient(circle at top right, rgba(214, 167, 66, 0.06), transparent 38%);
}
.dark-mode .navbar-light .navbar-nav .nav-link {
  color: rgba(214, 219, 229, 0.86);
}
.dark-mode .navbar-light .navbar-nav .nav-link:hover {
  color: var(--accent);
}
.dark-mode .navbar-toggler .navbar-toggler-icon {
  background: #e5e7eb;
}
.dark-mode .navbar[class*="headroom--not-top"] {
  background: rgba(13, 17, 23, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dark-mode .small-text {
  background: rgba(214, 167, 66, 0.12);
  color: #f5f7fa;
}
.dark-mode .feature-card .uil,
.dark-mode .navbar-light .navbar-brand,
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6,
.dark-mode .color-mode {
  color: #ffffff;
}
.dark-mode p {
  color: #b5becd;
}
.dark-mode a:hover,
.dark-mode .owl-theme .owl-nav [class*=owl-]:hover,
.dark-mode .timeline-info small,
.dark-mode .role.yellow-title,
.dark-mode .animated-item {
  color: var(--accent);
}
.dark-mode .custom-btn {
  background: #111827;
  color: #e5e7eb;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}
.dark-mode .custom-btn:hover {
  color: #ffffff;
}
.dark-mode .custom-btn.custom-btn-bg {
  background: #1f2937;
  color: #ffffff;
}
.dark-mode .custom-btn.custom-btn-bg:hover {
  background: var(--accent);
  color: #111827 !important;
}
.dark-mode .custom-btn.custom-btn-outline {
  background: transparent;
  color: #d6dbe5;
}
.dark-mode .custom-btn.custom-btn-outline:hover {
  background: rgba(214, 167, 66, 0.12);
  color: #ffffff !important;
}
.dark-mode .timeline-wrapper:before {
  background: linear-gradient(180deg, rgba(214, 167, 66, 0.95) 0%, rgba(214, 167, 66, 0.35) 100%);
}
.dark-mode .timeline-yr {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}
.dark-mode .timeline-info small {
  color: #d6a742;
}
.dark-mode .timeline-info p {
  color: #b5becd;
}
.dark-mode .contact-form {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}
.dark-mode .contact-form .form-control {
  color: #e5e7eb;
  border-color: rgba(255, 255, 255, 0.12);
}
.dark-mode .contact-form .form-control::placeholder {
  color: #94a3b8;
}
.dark-mode .contact-form .form-control:hover,
.dark-mode .contact-form .form-control:focus {
  border-color: var(--accent);
}
.dark-mode .contact-form .submit-btn {
  background: var(--accent);
  color: #111827;
}
.dark-mode .contact-form .submit-btn:hover {
  background: #e1be66;
}
.dark-mode .contact-info {
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.dark-mode .contact-info p,
.dark-mode .contact-info a {
  color: #dbe3ee;
}
.dark-mode .social-links .uil {
  color: #dbe3ee;
}
.dark-mode .social-links .uil:hover {
  color: var(--accent);
}
.dark-mode .navbar-collapse {
  background: #111827;
}
.dark-mode .about-image img {
  border-color: rgba(214, 167, 66, 0.85) !important;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35) !important;
}
.dark-mode .owl-carousel .owl-nav button.owl-next,
.dark-mode .owl-carousel .owl-nav button.owl-prev,
.dark-mode .owl-carousel button.owl-dot {
  color: #ffffff;
}

.timeline-wrapper {
  position: relative;
  padding: 22px 0;
}
.timeline-wrapper:last-child:before {
  height: 0;
}
.timeline-wrapper:before {
  content: "";
  background: linear-gradient(180deg, #474559 0%, #7c8094 100%);
  width: 2px;
  height: 100%;
  position: absolute;
  left: 37px;
}

.timeline-yr {
  background: linear-gradient(135deg, #474559 0%, #5b5b72 100%);
  border-radius: 100%;
  position: absolute;
  width: 75px;
  height: 75px;
  line-height: 75px;
  box-shadow: 0 10px 24px rgba(71, 69, 89, 0.18);
  text-align: center;
}
.timeline-yr span {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 75px;
}

.timeline-info {
  display: inline-block;
  vertical-align: top;
  max-width: 432px;
  margin-left: 6em;
}
.timeline-info h3 {
  margin-bottom: 0.35rem;
}
.timeline-info small {
  color: #474559;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.owl-carousel .owl-nav span {
  display: none;
}
.owl-carousel .owl-nav .owl-prev:before,
.owl-carousel .owl-nav .owl-next:before {
  background: none;
  padding: 0;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-family: 'unicons';
  font-size: 100px;
  line-height: normal;
}
.owl-carousel .owl-nav .owl-prev:before {
  content: '\e833';
  left: -45px;
}
.owl-carousel .owl-nav .owl-next:before {
  content: '\e836';
  right: -45px;
}

.owl-theme .owl-nav [class*=owl-] {
  background: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font-size: inherit;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--accent);
}
.owl-theme .owl-dots .owl-dot {
  outline: none;
}
.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #5b5b5b;
}

.google-map iframe {
  width: 100%;
}

.contact-form {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(71, 69, 89, 0.08);
}
.contact-form .form-control {
  background: transparent;
  border-radius: 14px;
  outline: none;
  box-shadow: none;
  font-weight: bold;
  margin: 16px 0;
  border-color: #dde2ea;
}
.contact-form .form-control:not(textarea) {
  height: 48px;
}
.contact-form .form-control:hover, .contact-form .form-control:focus {
  border-color: var(--accent);
}
.contact-form .submit-btn {
  background: var(--accent);
  border-radius: 14px;
  color: #ffffff;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.contact-form .submit-btn:hover {
  background: #474559;
}

.contact-info {
  background: linear-gradient(135deg, #1f2430 0%, #2e3445 100%);
  border-radius: 20px;
  position: relative;
  bottom: 0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.contact-info p, .contact-info a {
  color: #f7f3f3;
}

.social-links .uil {
  color: #f7f3f3;
  font-size: 20px;
  display: block;
  margin: 5px 0;
}
.social-links .uil:hover {
  color: var(--accent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 1270px) {
  .owl-theme .owl-dots {
    position: relative;
    bottom: 50px;
  }
}
@media (max-width: 991px) {
  .full-screen {
    padding-bottom: 4rem;
  }

  .color-mode {
    display: none;
  }

  .about-image {
    margin-top: 4em;
  }

  .mobile-mt-2,
  .contact-form {
    margin-top: 2em;
  }

  .contact-info {
    padding: 0 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.4em;
  }

  h2 {
    font-size: 2em;
  }

  .animated-item {
    font-size: 28px;
  }

  .navbar-collapse {
    background: #ffffff;
    text-align: center;
    padding-bottom: 20px;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding: 3px 20px;
  }
}
@media (max-width: 580px) {
	.animated-info {
		min-width: 200px;
	}
  .animated-item {
    font-size: 30px;
  }

  .custom-btn-group {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .custom-btn {
    display: block;
    margin: 10px 0;
  }

  .owl-theme .owl-nav {
    display: none;
  }

  .timeline-info small {
    display: block;
    margin: 10px 0 0 0;
  }
}
@media (max-width: 320px) {
  .animated-text {
    margin-top: 0;
  }

  .about-text {
    text-align: center;
  }

  .full-screen {
    padding: 4rem 0;
  }

  .mobile-block {
    display: block;
  }

  .contact-info {
    flex-direction: column;
  }

  .social-links li {
    display: inline-block;
    vertical-align: top;
  }
}
