:root {
    --color-base1: #96667a;
    --color-base2: #a06b82;
    --color-base3: #bb9fab;
    --color-base4: #7d5d6a;
    --color-base5: #7d5d6ac2;
    --neonblack: #191825;
    --ace-blue: #fff;
    /* font-family */
    --popin: 'Poppins', sans-serif;
    --robot: 'Roboto', sans-serif;
    --fijalla: 'Fjalla One', sans-serif;
    --font-base: 'Bai Jamjuree';


}

.btn-light {
    width: 155px;
    height: 50px;
    border: 2px solid var(--color-base4);
    outline: none;
    border-radius: 20px;
    background-color: transparent;
    color: white;
    font-weight: bold;
}

.btn-light:hover {
    background-color: var(--color-base1);

}

.btn-dark {
    width: 155px;
    height: 50px;
    border: 3px solid var(--color-base4);
    background-color: var(--color-base1);
    outline: none;
    border-radius: 20px;
    color: white;
    font-weight: bold;
}

.btn-dark:hover {
    background-color: white;
    color: var(--color-base1)
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-base) !important;
    background-color: white !important;

}

.sticky {
    position: fixed;
    background-image: linear-gradient(to top, var(--color-base1), var(--color-base1));
    width: 100%;
    margin-top: -2px !important;
    height: 70px !important;
}

.sticky .nav-link {
    color: white !important;
}

.sticky .navbar-brand {
    color: white !important;
}

.navbar {
    transition: 1s;
}

.navbar .navbar-brand {
    color: var(--color-base3);
    font-size: 50px;
    /* font-family: var(--robot)  !important; */

}

.navbar .nav-link {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.navbar .navbar-toggler {
    color: white;

    font-size: 30px;
    border: none;
    outline: none;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width:991px) {
    .navbar .navbar-nav {
        background-color: var(--color-base4);
        border-radius: 20px;
    }

    .navbar .nav-link {
        color: white;
        font-weight: bold;
        padding-left: 2rem;
    }
}
/* hero section */
.hero-section a{
    width: 155px;
    height: 50px;
    border: 2px solid var(--color-base4);
    outline: none;
    border-radius: 20px;
    background-color: transparent;
    padding-top: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    
  
}
.hero-section a:hover {
    background-color: var(--color-base1);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Adjust the height of the overlay color */
    background: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity here */
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    /*not imp */
    text-align: center;

}

.fade-bg {
    background-size: cover;
    /*Ensures the background image covers the entire element */
    background-repeat: no-repeat;
    /* Prevents the background image from repeating */
    background-position: center;
    /* Centers the background image with responsive property*/
}
/* about section and education */
.about-section a{
    width: 155px;
    height: 50px;
    border: 2px solid var(--color-base4);
    outline: none;
    border-radius: 20px;
    background-color: var(--color-base1);;
    padding-top: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding-left: 10px;
}
.about-section a:hover {
    background-color:white;
    color: var(--color-base1); 
}
/* education section */
.bg-base {
    background-image: linear-gradient(to top, var(--color-base3),white);
    border-radius: 50px;
}

.img-r {
    border-radius: 20px;
    width: 300px;
    height: 400px;
    padding-bottom: 10px;
}



.shadow-effect-img {
     box-shadow: -6px 6px 7px 0 var(--color-base1);
}

.shadow-effect-img:hover {
    transition: all 0.5s;
    box-shadow: -6px 6px 0 0 var(--color-base1);
   
}

.shadow-effect {
    transition: all 0.5s;
    box-shadow: 6px -6px 7px 0 var(--color-base1);
   

}
.shadow-effect:hover {
    box-shadow: 10px 10px 5px 12px var(--color-base1);
    border-radius: 0 48px;

}

.shadow-edu:hover{
    box-shadow:-6px 6px 0 0 var(--color-base5);
}
.shadow-skill{
    box-shadow: 0px 0px 4px 4px var(--color-base1);
    border: -6px 2px 7px 0 var(--color-base1);
    border-radius: 30px;
   
}
.shadow-skill:hover {

    box-shadow: 0px 0px 7px 7px var(--color-base1);
    border: -6px 6px 7px 0 var(--color-base1);
    /*Adjust the size and blur of the shadow */
}

/* contact section */

.form-group input {
    box-shadow: 0px 0px 4px 4px var(--color-base1);
    border: -6px 2px 7px 0 var(--color-base1);
    /* border: 3px solid var(--color-base4); */
    border-radius: 15px;

}
.form-group input:hover {
    box-shadow: 6px 6px 5px var(--color-base1);
    border: 3px solid var(--color-base4); 
    border-radius: 15px;
}
.form-group textarea {
    box-shadow: 0px 0px 4px 4px var(--color-base1);
    border: -6px 2px 7px 0 var(--color-base1);
    border-radius: 15px;
}
.form-group textarea:hover {
    box-shadow: 6px 6px 5px var(--color-base1);
    border: 3px solid var(--color-base4); 
    border-radius: 15px;
}
/* footer section */
.footer {
    height: 200px;
    background-color: var(--color-base4);
    margin-top: 20px;
}
.footer a{
    color: var(--neonblack);
}
.footer a:hover a:active{
    color: var(--neonblack);


}