
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body {
    min-height: 100vh;
    min-width: 100vw;
    background: var(--body-bg-color);
    color: var(--normal-text-color);
    display: flex;

    position: relative;

    align-items: flex-start;
    justify-content: center;
}


.root {
    position:absolute;
    width: 95%;
    top: 20px;
    bottom: 20px;

    overflow-y: auto;
    border-radius: 10px 10px;
    background-color: var(--root-bg-color);
    box-shadow: var(--root-shadow);
}

/* HEADER CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ 
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6%;

    border-radius: 10px 10px 0px 0px;
    border-bottom: var(--navbar-border-grey);
    background-color: var(--navbar-bg-color);

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2%;

    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
    gap: 0.1rem;
}
  
.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;

    background: transparent;
    /* background-color: white; */
}


.nav-links {
    display: flex;
    gap: 2.5rem;
}
.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
  
.nav-links a:hover {
    color: var(--hover-bright);
}
  
@media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background: #333;
      padding: 1rem;
      display: none;
    }
}

  
.burger {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
  
@media (max-width: 968px) {
    .burger {
        display: block;
    }

    .burger:focus,
    .burger:active {
      outline: none;
      box-shadow: none;
      background: none;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 5%;
        background-color: var(--root-bg-color);
        width: 200px;
        padding: 1rem;
        border-radius: 10px 10px 10px 10px;
        z-index: 1000;

        box-shadow: -4px 4px 10px rgba(151, 151, 151, 0.2);
    }
    
    .nav-links.show {
        display: flex;
    }
}
  

/* SIDECARD CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ 
.sidecard {
    position:absolute;
    top: 9%;
    left: 2%;
    width: 25%;
    height: 86%;
    background-color: var(--sidecard-bg-color);
    border-radius: 10px 10px 10px 10px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .sidecard {
        position:absolute;
        top: 9%;
        left: 2%;
        width: 96%;
        height: 86%;
    }
}

.profileImg {
    height: 30%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background-color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

.profileImg img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.details {
    margin-top: 1rem;
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
}

.details h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.4rem 0;
    line-height: 1.4;
}

.details h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0.3rem 0;
    line-height: 1.4;
    color: var(--subtext-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0.25rem 0;
    line-height: 1.4;
    color: var(--microtext-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}
  
.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease, fill 0.2s ease;
}
  
.social-link:hover svg {
    transform: scale(1.1);
    fill: var(--hover-bright);
}

.copy-sidecard {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    padding: 1.5rem 0;
    background: transparent;
    color: var(--microtext-color);
    
    border: none;
    cursor: pointer;

    font-size: 0.95rem;
    font-weight: 400;

    transition: transform 0.2s ease, background-color 0.2s ease;
}

.copy-sidecard svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease, fill 0.2s ease;
}

.copy-sidecard:hover svg {
    transform: scale(1.03);
    fill: var(--hover-bright);
}
.copy-sidecard:hover {
    transform: scale(1.03);
    color: var(--hover-bright);
}

/* CONTENT CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ 
.content {
    position: absolute;
    top: 9%;
    left: 28%;
    width: 69%;
    height: 90%;
    padding-left: 40px;
    padding-right: 50px;
    overflow-y: auto;
    color: var(--subtext-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    background-color: var(--content-bg-color);
    border-left: var(--content-border-grey);
}

@media (max-width: 768px) {
    .content {
        position: absolute;
        top: 102%;
        left: 2%;
        width: 96%;
        height: 98%;
        padding-left: 5px;
        padding-right: 5px;
        border-left: none;
    }
}

.content-section {
    padding-bottom: 25px;
    margin-bottom: 40px;
    border-bottom: var(--content-border-grey);
}

.content-section h2 {
    color: var(--subtext-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5rem !important;
    margin-bottom: 10px;
}

.content-section p {
    color: var(--microtext-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.2rem !important;
    font-stretch: wider;
    line-height:150% !important;
    text-indent: 6rem;
}

.space-btn-para {
    margin-top: 10px;
    margin-bottom: 10px;
}



/* CONTACT CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ 




/* FOOTER CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ 

.footer {
    position:absolute;
    top: 96%;
    left: 2%;
    width: 25%;
    height: 3%;
    margin-bottom: 1%;

    color: var(--microtext-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    background-color: var(--content-bg-color);
    justify-content: center;
    text-align: center;
}


@media (max-width: 768px) {
    .footer {
        width: 96%;
    }
}

/* COMMON CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ 

::-webkit-scrollbar {
    width: 8px;
}
  
::-webkit-scrollbar-track {
    background: var(--body-bg-color);
    border-radius: 5px;
    /* border: 2px solid var(--body-bg-color); */
}
  
::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 5px;
    border: 1px solid var(--body-bg-color);
}
  
::-webkit-scrollbar-thumb:hover {
    background: var(--hover-bright);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--root-bg-color) inset;
    -webkit-text-fill-color: var(--microtext-color);
    transition: background-color 5000s ease-in-out 0s;
}
  
body {
    scrollbar-width: thin;
    /* scrollbar-color: var(--root-bg-color) var(--body-bg-color); */
}

.content-blur {
    position: sticky;

    bottom: -1%;
    width: 100%;
    height: 8%;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.0) 0%,
        var(--root-bg-color) 100%
    );

    z-index: 999 !important;
}


@media (max-width: 768px) {
        
    .content-blur {
        bottom: -1%;
        width: 100%;
        height: 8%;
    }

}

.hidden {
    display: none;
}


.reveal-phone {
    background-color: var(--root-bg-color);
    border: none;
    color: var(--microtext-color);
    cursor: pointer;
}

.reveal-phone:hover {
    color: var(--hover-bright);
}

.disclaimer-label a {
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--microtext-color) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
}