body {
  /* background-color: #1b3c53 !important; */
  background: #1b3c53 !important;
  background: linear-gradient(
    90deg,
    rgba(27, 60, 83, 1) 0%,
    rgba(35, 76, 106, 1) 50%,
    rgba(69, 104, 130, 1) 100%
  ) !important;
}

.main-image:hover .my-logo {
  transform: translateX(-100%);
}
.my-logo {
  transform: translateX(100%);
  transition: 0.4s;
}

.bg-main {
  background-color: #234c6a;
}

.bg-secondary {
  background-color: #d2c1b6;
}

.main-text {
  color: #d2c1b6 !important;
}
.secondary-text {
  color: #1b3c53 !important;
}

.secondary {
  background-color: #456882 !important;
}

li {
  margin-top: 2px;
  margin-bottom: 2px;
}

.image-container {
  height: 200px;
  width: 200px;
}

hr {
  color: black !important;
  width: 100%;
  height: 5px;
}

/* .download-cv:hover {
  width: 100%;
  background-color: red;
} */
.fitself {
  width: fit-content;
  justify-self: center;
  /* padding: 5px 10px; */
  border-radius: 15px;
  overflow: hidden;
}
.cv-absolute {
  /* height: 100%; */
  background-color: #00ffff;
  width: 00%;
  left: 0;
  top: 0;
  bottom: 0;
  transition: all 0.3s;
}

.fitself:hover .cv-absolute {
  width: 100%;
}

.fitself a{
  transition: all 0.3s;
}
.fitself:hover a {
  color: black !important;
}

/* Navs and Tabs Section */
.nav {
  --bs-nav-link-color: #d2c1b6 !important;
  --bs-nav-link-hover-color: #92867e !important;
}
.nav-tabs {
  --bs-border-color: #234c6a !important;
  --bs-nav-tabs-link-active-bg: #d2c1b6 !important;
  --bs-nav-tabs-link-active-border-color: #d2c1b6 !important;
  border-bottom: var(--bs-nav-tabs-border-width) solid #d2c1b6 !important;
}

/* Selection Style */
::selection {
  color: #234c6a;
  background: #d2c1b6;
}

/* Cards section */

.card {
  overflow: hidden;
}

.card img {
  transition: all 0.3s;
}

.card img:hover {
  scale: 1.1;
}

/* Skills Section */
.bg-html {
  background-color: #f54927;
}

.bg-css {
  background-color: #00ffff;
}

.bg-js {
  background-color: #f7e018;
}

.bg-ts {
  background-color: #3178c6;
}

.bg-angular {
  background-image: linear-gradient(
      63deg,
      transparent 66%,
      oklch(16.93% 0.004 285.95) 69%,
      oklch(16.93% 0.004 285.95) 70%,
      transparent 70%
    ),
    linear-gradient(
      162deg,
      oklch(16.93% 0.004 285.95) 30%,
      rgba(147, 55, 245, 0.5411764706) 100%
    );
}

.text-angular {
  color: rgb(246, 55, 227) !important;
}

.bg-bootstrap {
  background-color: rgb(109 43 240);
}

.bg-tailwind {
  background-color: #030712;
}

.tailwind-color {
  color: rgb(0, 188, 255);
  fill: rgb(0, 188, 255);
}

.bg-wordpress {
  background-size: 15px;
  background-color: rgba(56, 88, 233, 1);
  background-image: url("https://wordpress.com/wp-content/uploads/2025/07/plus-pattern-white.webp");
}

.bg-animation {
  background-color: #fce5cd;
}

.text-animation {
  color: #351c75;
}

.main-text {
  animation: tracking-in-expand-fwd 1s cubic-bezier(0.215, 0.61, 0.355, 1) .4s both;
}

@keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
