* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(64, 64, 64);
    color: #cccccc;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Titles and Typography */
.heroTitle {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.heroText {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 35px;
}

.pageTitle {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.subTitle {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.roleText {
    color: rgb(150, 150, 150);
    font-style: italic;
    margin-bottom: 30px;
}

/* Buttons */
.homeButtons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btnGold {
    background-color: #e8e8e8;
    color: #222222;
    padding: 12px 25px;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 250ms ease;
    border: 1px solid #e8e8e8;
    display: inline-block;
}

.btnGold:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.btnGoldOutline {
    background-color: transparent;
    color: rgb(150, 150, 150);
    padding: 12px 25px;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 250ms ease;
    border: 1px solid rgb(150, 150, 150);
    display: inline-block;
}

.btnGoldOutline:hover {
    background-color: #e8e8e8;
    color: #222222;
    border-color: #e8e8e8;
}

/* Layout Content */
.contentWrapper2 {
    position: fixed;
    top: 90px;
    bottom: 0px;
    left: 0px;
    right: 50%;
    background-color: rgb(64, 64, 64);
    padding: 40px;
    z-index: 555;
    overflow-y: auto;
    transition: all 300ms ease;
}

.bgPic {
    float: right;
    z-index: 333;
    position: fixed;
    top: 90px;
    right: 0px;
    left: 50%;
    bottom: 0px;
    overflow: hidden;
}

.bgPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 5s ease;
}

.bgPic:hover img {
    transform: scale(1.05);
}

.homeText {
    text-align: left;
    padding: 20px;
}

.padding20pc {
    padding-left: 5%;
    padding-right: 5%;
}

/* Grids & Cards */
.cardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.expertiseCard {
    background-color: rgb(50, 50, 50);
    padding: 20px;
    border-left: 3px solid rgb(121, 121, 121);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 300ms ease;
}

.expertiseCard:hover {
    transform: translateY(-5px);
}

.cardIcon {
    font-size: 2rem;
    color: rgb(150, 150, 150);
    margin-bottom: 15px;
}

.expertiseCard h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.expertiseCard p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
}

/* Lists */
.styledList, .aboutList {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.styledList li, .aboutList li {
    font-size: 1.05rem;
    padding: 12px 0;
    border-bottom: 1px solid rgb(80, 80, 80);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.styledList li i, .aboutList li i {
    color: rgb(150, 150, 150);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Special Boxes */
.networkBox {
    margin-top: 35px;
    background-color: rgb(50, 50, 50);
    border: 1px dashed rgb(121, 121, 121);
    padding: 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

.networkBox i {
    color: rgb(150, 150, 150);
    margin-right: 8px;
}

.quoteBox {
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid rgb(121, 121, 121);
    background-color: rgb(50, 50, 50);
    font-style: italic;
    font-size: 1.1rem;
    color: #ffffff;
}

/* Contact Page */
.contactGrid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.contactInfoCard {
    background-color: rgb(50, 50, 50);
    padding: 25px;
    border-radius: 4px;
    border: 1px solid rgb(80, 80, 80);
}

.contactInfoCard h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
}

.contactInfoCard p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contactInfoCard i {
    color: rgb(150, 150, 150);
    width: 20px;
}

.contactInfoCard a {
    color: #ffffff;
    transition: color 250ms;
}

.contactInfoCard a:hover {
    color: rgb(150, 150, 150);
}

.contactForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contactForm input, .contactForm textarea {
    width: 100%;
    padding: 12px;
    background-color: rgb(50, 50, 50);
    border: 1px solid rgb(80, 80, 80);
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.contactForm input:focus, .contactForm textarea:focus {
    outline: none;
    border-color: rgb(150, 150, 150);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    margin-top: 5px;
    background: rgb(64, 64, 64);
}
::-webkit-scrollbar-thumb {
    background: rgb(121, 121, 121);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgb(90, 90, 90);
}

/* Responsive */
@media only screen and (max-width: 1000px) {
    .bgPic {
        display: none;
    }
    .contentWrapper2 {
        right: 0;
        top: 80px;
        padding: 20px;
        background-color: rgb(90, 90, 90);
    }
    .homeText {
        padding: 10px;
    }
    #contentWrapperHome {
        background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('img/home.jpeg') center/cover;
    }
    #contentWrapperSkills, #contentWrapperContact {
        background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('img/hands.jpeg') center/cover;
    }
    #contentWrapperServices {
        background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('img/homeBanner2.jpg') center/cover;
    }
}