@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&family=Source+Code+Pro:wght@200;300;400;500;600;700;800;900&display=swap");

/* ---------- GLOBAL STYLING ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    font-family: "Source Code Pro", monospace;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-size: 50px;
    font-weight: 400;
    line-height: 64px;
    color: #fefefe;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    font-weight: 400;
    color: #fefefe;
}

h4 {
    font-size: 20px;
    font-weight: 400;
    color: #fefefe;
}

h6 {
    font-weight: 700;
    font-size: 12px;
    color: #fefefe;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #fefefe;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: black;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.5s ease;
}

button.normal:hover {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #fff;
    background-color: #088178;
}

body {
    width: 100vw;
    background-color: #2d2e32;
}

body::selection {
    color: #000000;
    background: #64f4ac;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #CACACA;
    transition: 0.3s ease;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FEFEFE;
}

.sub-body {
    background-color: #2d2e32;
    width: 100vw;
}

#loader {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.progress-container {
    width: 70%;
    height: 10px;
    background-color: #444; /* Dark gray for the track */
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background-color: #00ff00; /* Green progress bar */
    transition: width 0.1s linear;
}

#loading-percentage {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #fff;
}



/* ---------- SECTION HEADER ---------- */
#header {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2d2e3273;
    border: 1px solid #2d2e3240;
    box-shadow: 0 0 10px 1px #00000040;
    backdrop-filter: blur(15px);
    color: #fefefe;
    position: sticky;
    z-index: 1;
    top: 0;
    left: 0;
    margin: 0;
}

/* #content-body {
  display: flex;
  justify-content: space-around;
  align-items: center;
} */

.navbar-title {
    display: flex;
    align-items: center;
}

.title-first-name {
    padding: 0 7.5px;
    font-weight: 600;
    color: #fefefe;
    font-family: "Raleway", sans-serif;
    font-size: 24px;
}

.title-last-name {
    font-size: 24px;
    font-weight: 400;
    color: #cacaca;
    font-family: "Raleway", sans-serif;
}

.navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-menu li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

.navbar-menu .active {
    color: #64f4ac;
    font-weight: 900;
}

.navbar-menu li a {
    color: #fefefe;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.navbar-menu li a:hover {
    color: #64f4ac;
    font-weight: 900;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-media li {
    display: flex;
    padding: 0 16px;
    align-items: center;
    list-style: none;
}

.social-media li i {
    font-size: 14px;
    transition: 0.3s ease;
}

.social-media li a {
    color: #fefefe;
    text-decoration: none;
    padding: 0 5px;
    font-size: 12px;
    transition: 0.3s ease;
}

.social-media li:nth-child(1):hover i {
    color: #0077b5;
}

.social-media li:nth-child(3):hover i {
    color: #ea4335;
}

.social-media li:hover a {
    font-weight: 800;
}

.service-buttons h3.active {
    background-color: #64f4ac;
    font-weight: bold;
    color: #2d2e32;
}

.design-card {
    max-width: 100%;
    min-width: 100%;
    min-height: 150px;
    background-color: #2d2e32;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px #00000040;
    transition: 0.5s ease;
}

.design-card:hover {
    box-shadow: 0 0 15px #00000080;
    cursor: pointer;
}

.design-card.active {
    background-color: #00b840;
}

.design-card.active p {
    color: #000000;
    max-width: 100%;
    max-height: 30%;
    overflow: hidden;
    font-weight: 700;
    margin: 8px 0 0 0;
    padding: 0;
}

.design-card div:nth-child(1) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #fff;
    transition: 0.3s ease;
}

.design-card:hover div:nth-child(1) {
    color: #64f4ac;
}

.exp-card:hover div:nth-child(1) {
    color: #64f4ac;
}

.design-card div:nth-child(1) h3 {
    max-width: 90%;
    font-weight: 500;
}

.design-card:hover div:nth-child(1) h3 {
    font-weight: 600;
}

.design-card p {
    font-size: 14px;
    font-weight: 600;
    color: #7c7d81;
}

.design-card div:nth-child(3) {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.blog-section img {
    max-width: 100%;
    object-fit: contain;
}

.blog-section h1 {
    font-size: 1.75rem;
    font-weight: 600;
}

.blog-section p {
    font-size: 1rem;
    font-weight: 400;
}

.blog-section ol {
    list-style: none;
    /* Remove default numbering */
    padding-left: 1.5rem;
    /* Add some left padding */
    font-family: Arial, sans-serif;
}

.blog-section ol li {
    position: relative;
    margin-bottom: 0.8rem;
    /* Space between list items */
    padding-left: 2rem;
    /* Space for the bullet */
}

.blog-section ol li::before {
    content: "•";
    /* Custom bullet character */
    color: #fefefe;
    /* Bullet color */
    font-size: 1.5rem;
    /* Bullet size */
    position: absolute;
    left: 0;
    /* Position bullet to the left */
    top: 0;
    /* Align with text */
}