@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Mulish",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #141414; /* Background color for the entire website, including individual sections */
  --default-color: #d9d9d9; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ededed; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #177576; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1c1c1c; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #d9d9d9;  /* The default color of the main navmenu links */
  --nav-hover-color: #177576; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #2e2e2e; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #2e2e2e; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #fff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #177576; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: rgba(41, 41, 41, 0.8);
  --surface-color: #484848;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

.resume .experience-section .experience-cards .exp-card.featured {
  text-align: left;
}
  .resume .experience-section .experience-cards .exp-card{
    text-align: left;
  }
  .skill-tag {
    background: #177576 !important;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
}

.skills-container.skills-area {
    background: #1c1c1c;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.typed-cursor{
  opacity: 1;
}
.typed-cursor.typed-cursor--blink{
  animation: typedjsBlink 0.7s infinite;
  -webkit-animation: typedjsBlink 0.7s infinite;
          animation: typedjsBlink 0.7s infinite;
}
@keyframes typedjsBlink{
  50% { opacity: 0.0; }
}
@-webkit-keyframes typedjsBlink{
  0% { opacity: 1; }
  50% { opacity: 0.0; }
  100% { opacity: 1; }
}

.portfolio .portfolio-card.imgbox-area .portfolio-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: object-position 4s ease-in-out;
}
.portfolio .portfolio-card.imgbox-area:hover .portfolio-image-container img {
  object-position: bottom;
}
.section-tag.section-heighlight {
    display: inline-block;
    padding: 6px 16px;
    background:  color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.detail-content a{
  color: #fff !important;
}
.info-item a {
    color: #fff;
}
@media (max-width: 576px) {
.about .content-wrapper .bio-section h2 {
        font-size: 30px;
        text-align: center;
    }
.about .content-wrapper .bio-section p:last-child {
    margin-bottom: 0;
    text-align: center;
} 
.portfolio .portfolio-bottom .col-lg-4 {
 text-align: center; !important;
}
.about .container {   
    text-align: center;
}
.about .content-wrapper .bio-section {
    text-align: center;
}
.skills-container.skills-area {
  padding: 15px !important;
}
.resume .experience-section .experience-cards .exp-card.featured {
    text-align: center;
 } 
 .resume .experience-section .experience-cards .exp-card .card-body .skills-tags {
 justify-content: center;
 } 
 .resume .experience-section .experience-cards .exp-card {
    text-align: center;
} 
.align-items-center {
    text-align: center;
}  
}
@media (max-width: 992px) {
.align-items-center {
    align-items: center !important;
    text-align: center;
}
}