@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');



    :root {
        --color-body:#b6cbce;
        --color-heading : #eef3db;
        --color-base:#033f47;
        --color-base2 : #022a30;
        --color-brand : #e0f780;
        --color-brand2 : #deff58;
        --sidbar-width : 240px;
        --font-base : "Bai Jamjuree";
    }
    
        
body{
    margin-left: 4%;
    background-color: #051116;
    color: #b6cbce;
    font-family:  "Bai Jamjuree", sans-serif;

}

h1,h2,h3,h4,h5,h6{
    color:#eef3db;
    font-weight: 700;
}

a{
    text-decoration: none;
    color:#b6cbce;
    transition: all 0.4s ease;
}
.shadow-effect
{
    transition:all 0.5s;
}
.shadow-effect:hover
{
    box-shadow: -6px 6px 0 0 #bde811;
}


.iconbox{
    width:50px;
    height:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: #c9fb00;
    color: #033f47;
}
.card-custom .card-custom-image
{
    overflow: hidden;
}

.card-custom .card-custom-image img
{
    transition:all 0.4s ease;
}

.card-custom:hover .card-custom-image img{
    transform: scale(1.1);
}
a:hover{
    color:#e0f780 ;
}
.bg-base
{
    background-color:#053036;
}

img
{   
    border-style: none;
    border-radius: 50%;
    width:100%;
}

.navbar .nav-link
{
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}
.navbar .nav-link.active
{
    color:#e0f780;
}

.navbar .nav-link:hover
{
    color: #e0f780;
}
.brand
{
    color:#ccff01;
}
.navbar{
    background-color:#033f47 ;
}
.full-height{
    min-height: 100vh;
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px;
    padding-top: 80px;
    border-bottom: 3px solid rgba(255,255,255,0.2);
}

@media (min-width:992px)
{
    .navbar{
            margin-left: 5%;
            min-height: 100vh;
            width:240px;
            background: linear-gradient(rgba(0, 0, 0, 0.06),rgba(14, 57, 73, 0.7)); 
            background-size: cover;
            background-position: center;
    }


    .navbar-brand img{
        border:2px solid #ccff00;

    }

    #content-wrapper{
        padding-left:240px ;
    }
}
.social-icons {

}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-base);
    border-radius: 100px;
    font-size: 24px;
}
.btn{
    padding:12px 28px;
    font-weight: 700;
}
.badge-custom {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #033f47;
    background-color: #d6fddc; /* light green background */
    border-radius: 50px;
    margin-right: 8px;
    margin-bottom: 10px;
}
.badge-fullstack {
    background-color: #d6fddc;
    color: #033f47;
}
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap:10px;
}
.project-header h4 {
    margin: 0; /* Ensure no extra spacing */
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.tech-badge {
    background-color: #f3f4f6; /* light grey */
    color: #1f2937; /* dark text */
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}


.badge-salesforce {
    background-color: #dbf0ff;
    color: #033f47;
}

.btn-brand
{
    background-color:#afd907 ;
    border-color: #3c4b03;
    font-size: 1rem;
    color: black;
}

.btn-brand:hover,
.btn-brand:focus
{
    background-color:#deff58 ;
    border-color: #3b4807;
    color: black;
}

.link-custom
{
    font-weight: 700;
    position: relative;
}


.link-custom::after
{
    content: "";
    width:0%;
    height:2px;
    background-color: #cdfe07;
    position: absolute;
    left:0;
    transition:all 0.4s;
    top:110%;
}

.link-custom:hover::after{
    width:100%;
}
p
{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#contact .form-control {
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: var(--color-body);
}

#contact .form-control:focus {
    border-color: var(--color-brand);
    box-shadow: none;
}

#contact .form-control::placeholder {
    color: var(--color-body);
}

#contact input.form-control {
    height: 44px;
}
