* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
   
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    width: 100%;
}

li {
    list-style: none;
}

button:hover {
    cursor: pointer;
}

button:active {
    transform: translateY(4px);
}

/* ------------------------------ Navbar section starts here------------------------ */
#nav-menu {
    background-color:  white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 70px;
    position: fixed;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
}

#nav-cont {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#hamb {
    display: none;
}

#nav-name {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}

#nav-name>a {
    color: black;
}

#navbar-menu {
    width: 45%;
    display: flex;
    justify-content: space-around;
    font-size: 20px;
    font-weight: 500;
}

#navbar-menu a {
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
}

#nav-menu li {
    transition: transform .2s;
}

#nav-menu li:hover {
    transform: scale(1.3);
}

#resume-button-1 {
    background-color: black;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 20px;
    font-weight: 500;
    transition: transform .2s;
}

#resume-button-1:hover {
    transform: scale(1.1);
}

#resume-link-1 {
    color: #BBDEFB;
}

/* ------------------------------ Home section starts here------------------------ */
#home {
    background-color: #BBDEFB;
    /* background-color: rgba(0, 0, 0, 0.192); */
    padding: 80px 0;
}

.home-body {

    width: 87%;
    margin: auto;
    display: flex;
}

.home-left {
    width: 70%;
    color: black;
    padding-left: 10%;
    padding-top: 7%;
}

.home-right {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-right>img {
    width: 80%;
    height: 100%;
    padding: 70px 0px 0px;
}

#resume-button-2 {
    background-color: black;
    border: none;
    border-radius: 5px;
    padding: 7px 14px;
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
    transition: transform .2s;
}

#resume-button-2:hover {
    transform: scale(1.1);
}

#resume-link-2 {
    color: #BBDEFB;
}
#name{
   color: black;
   font-size: 50px;
   font-family: Georgia, serif; 
   font-family: serif;
   
}
.typed-text{
   
    color: rgb(0, 0, 0);
    font-family: serif;
    font-size: x-large;
    padding-left: 20%;
}

/* ------------------------------ About section starts here------------------------ */
#about {
    background-color: #BBDEFB;
    padding: 60px 0px 30px;
}

#about>h1 {
    text-align: center;
    text-transform: uppercase;
    color: black;
}

.about-body {
    background-color: white;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    border-radius: 10px;
    width: 80%;
    margin: 50px auto;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    transition: transform .2s;
}

.about-body:hover {
    transform: scale(1.02);
}

.about-left {
    width: 2%;
    display: flex;
    align-items: center;
}

.img-div {
    width: 10%;
}

.img-div>img {
    width: 10%;
    border-radius: 10px;
}

.about-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-details>h4 {
    line-height: 30px;
}

#user-detail-intro {
    text-align: justify;
}

/* ------------------------------ Skills section starts here------------------------ */
#skills {
    background-color: #BBDEFB;
    padding: 50px 0px 20px;
    color: black;
}

#skills>h1 {
    text-align: center;
    text-transform: uppercase;
}

.skills-body {
    width: 80%;
    padding: 30px 0;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 30px;
}
.skills-body-stat {
    width: 80%;
    padding: 30px 0;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
}

.skills-card {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    transition: transform .2s;
}

.skills-card:hover {
    transform: scale(1.1);
}

.skills-card>h3 {
    margin: 7px auto;
}

/* ----------------------------- Projects section starts here---------------------- */

#projects {
    background-color: #BBDEFB;
    color: black;
    padding: 60px 0px 20px;
}

#projects>h1 {
    text-align: center;
    text-transform: uppercase;
}

.projects-body {
    width: 80%;
    margin: auto;
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 20px;
}

.project-card {
    border-radius: 15px;
    margin: 10px auto;
    padding: 25px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-img {
    width: 49%;
    height: 300px;
    background-color: black;
    border-radius: 7px;
    transition: transform .2s;
}

.project-img:hover {
    transform: scale(1.02);
}

.project-img>img {
    border: 3px solid black;
    border-radius: 7px;
    width: 100%;
    height: 100%;
}

.project-info {
    width: 49%;
    border: 3px solid black;
    border-radius: 10px;
    background-color: #BBDEFB;
    padding: 5px;
    color: black;
    text-align: center;
}

.project-info>h3 {
    text-transform: uppercase;
}

.project-info>p {
    margin-top: 10px;
    font-size: 17px;
}

.project-tech-stack {
    width: 95%;
    margin: 20px auto;
    display: flex;
    justify-content: space-evenly;
}

.project-tech-stack>div>img {
    width: 100%;
    height: 55px;
}

.project-buttons {
    width: 50%;
    margin: auto;
    display: flex;
    justify-content: space-around;
}

.project-buttons>a {
    transition: transform .2s;
}

.project-buttons>a:hover {
    transform: scale(1.1);
}

.project-github-link {
    font-size: 45px;
    color: black;
}

.project-deployed-link {
    font-size: 45px;
    color: black;
}

.project-deployed-link>button {
    background-color: black;
    border: none;
    color: black;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 17px;
}

/* ----------------------------- Contact section starts here---------------------- */
#contact {
    background-color: #BBDEFB;
    padding: 30px 0px 20px;
    color: black;
}

#contact>h1 {
    text-align: center;
    text-transform: uppercase;
}

.contact-body {
    width: 70%;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
}

.contact-text {
    background-color: white;
    width: 80%;
    height: auto;
    border-radius: 10px;
    padding: 30px;
}

.contact-text>div {
    display: flex;
    height: 80%;
    flex-direction: column;
    margin-top: 10px;
    font-size: 19px;
}

.contact-text>div>* {
    margin: 10px 0;
    color: black;
    transition: transform .2s;
}

.contact-text>div>*:hover {
    cursor: pointer;
    transform: scale(1.05);
}

#contact-img {
    width: 45%;
}

#contact-img>img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.contact-left form {
    width: 90%;
}

form input,
form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background-color: white;
    padding: 10px;
    margin: 10px 0;
    color: black;
    font-size: 18px;
    border-radius: 6px;
    
}

form textarea {
    height: 90px;
}

form .btn2 {
    padding: 5px 20px;
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    border-style: none;
    background-color: black;
    color: #BBDEFB;
    transition: transform .2s;
    

}

form .btn2:hover {
    transform: scale(1.1);
}


/* ----------------------------- GitHib section starts here---------------------- */
#github {
    background-color: #BBDEFB;
    padding: 7px 0px 2px;
    color: black;
}

#github>h1 {
    text-align: center;
    text-transform: uppercase;
}

#github-stats {
    width: 85%;
    margin: 70px auto;
    display: flex;
    justify-content: space-between;
}

#github-stats>div {
    width: 32%;
}

#github-stats>div>img {
    width: 100%;
    height: 100%;
}

.react-activity-calendar {
    margin: 20px auto;
    width: 85%;
    display: none;
}

.calendar {
    width: 100%;
    margin: auto;
    background-color: white;
    padding: 20px;
    color: #BBDEFB;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.calendar span {
    color: #BBDEFB;
}

/* ----------------------------- Footer section starts here---------------------- */
#signature {
    width: 100%;
    padding: 7px 0;
    text-align: center;
    background-color: #BBDEFB;
    color: black;
    font-weight: 70;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px black;
    background-color: black;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: red;
}

::-webkit-scrollbar-thumb {
    background-color: #05386b;
    border: 3px solid black;
}

/* ----------------------------------- Responsiveness ---------------------------- */

/*-------------------------------------For Large Screen------------------------------*/
@media all and (min-width:1200px){
    #navbar-menu{
        display: flex;
    }
}
/*-----------------------------------For Mid-Size Screen-----------------------------*/
@media all and (min-width:701px) and (max-width:1200px){
    #nav-cont{
        width:90%;
    }
    #nav-name{
        font-size: 20px;
        font-weight: 500;
    }
    #navbar-menu{
        width:50%;
        font-size: 16px;
        display: flex;
    }
    .home-left{
    
        width: 98%;
        font-size: 17px;
        padding-left: 7%;
        padding-top: 4%;
    }
    .home-right{
        width: 98%;
        font-size: 12px;
        padding-left: 7%;
        padding-top: 4%;
    }
    #resume-button-2{
        font-size: 15px;
        margin-top:10px;
        padding:5px 12px;
    }
    .about-body{
        display: block;
        margin:75px auto;
        text-align: center;
    }
    .about-left{
        width:30%;
        margin:auto;
    }
    .about-details{
        width:100%;
        margin:20px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .home-body{
        display: flex;
        flex-direction: column;
    }
    .contact-left form{
        width: 98%;
        margin: auto;
    }
    .skills-body{
        display:grid;
        grid-template-columns: repeat(2,1fr);
        gap:30px 30px; 
    }
    #github-stats{
        width:70%;
        margin:50px auto;
        display: block;
    }
    #github-stats>div{
        width:100%;
        margin: 20px auto;
    }
    .project-card{
        display: block;
    }
    .project-img{
        width:100%;
    }
    .project-info{
        margin-top: 20px;
        width:100%;
    }
    .contact-body{
        width:70%;
        margin: 60px auto;
        display: block;   
    }
    .contact-text{
        width: 100%;
        margin-top:15px; 
    }
    #contact-img{
        width:100%;
    } 
}

/*-------------------------------------For Small Screen------------------------------*/
@media all and (min-width:300px) and (max-width:700px){
    #hamb{
        display: block;
        font-size: 20px;
        color:skyblue;
    }
    #nav-cont{
        width:90%;
    }
    .home-body{
        display: flex;
        flex-direction: column;
    }
    #navbar-menu{
        border:none;
        border-radius: 5px;
        position: absolute;
        left:0;
        top:80%;
        width:50%;
        text-align: center;
        display:none;
        background-color: white;
    }
    #nav-name{
        font-size: 17px;
        font-weight: 500;
    }
    #resume-button-1{
        font-size: 17px;
    }
    #navbar-menu>li{
        border-bottom: 2px solid skyblue;
        padding:15px 0;
    }
    .home-left{
        width:90%;
        font-size: 8px;
        padding-left: 7%;
        padding-top: 4%;
    }
    #resume-button-2{
        font-size: 10px;
        margin-top:10px;
        padding:3px 8px;
    }
    .home-right{
        width:90%;
    }
    .about-body{
        display: block;
        margin:75px auto;
        text-align: center;
    }
    .about-left{
        width:55%;
        margin:auto;
    }
    .about-details{
        width:100%;
        margin:20px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    #resume-link-2{
        width:50%;
        margin:15px auto;
    }
    .skills-body{
        display:grid;
        grid-template-columns: repeat(1,1fr);
        gap:30px 30px; 
    }
    .skills-body-stat {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px 30px;
    }
    #github-stats{
        width:70%;
        margin:50px auto;
        display: block;
    }
    #github-stats>div{
        width:100%;
        margin: 20px auto;
    }
    .project-card{
        display: flex;
        flex-direction: column;
        padding:12px;
    }
    .project-img{
        width:100%;
    }
    .project-info{
        margin-top: 15px;
        width:100%;
    }
    .project-tech-stack{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap:10px;
    }
    .project-buttons{
        width:70%;
    }
    .contact-body{
        width:90%;
        margin: 60px auto;
        display: block;   
    }
    .contact-left form{
        width: 98%;
        margin: auto;
    }
    .contact-text{
        width: 100%;
        margin-top:15px; 
    }
    #contact-img{
        width:100%;
    } 
}

/* -------------------------------- fornt aosom ---------------------------------------------  */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900); }

.fa,
.fa-classic,
.fa-sharp,
.fas,
.fa-solid,
.far,
.fa-regular,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto; }

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
  font-family: 'Font Awesome 6 Free'; }

.fab,
.fa-brands {
  font-family: 'Font Awesome 6 Brands'; }




/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

:root, :host {
  --fa-style-family-brands: 'Font Awesome 6 Brands';
  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; }

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }


:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; }

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }

.far,
.fa-regular {
  font-weight: 400; }
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }

.fas,
.fa-solid {
  font-weight: 900; }
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-display: block;
  font-weight: 400;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-display: block;
  font-weight: 900;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-display: block;
  font-weight: 400;
  src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }
@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype");
  unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; }

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype");
  unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A; }
