/* get font from google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --header-height : 3rem ;

    /* ------ colors ----- */
    /* change favorite color */
    --hue-color: 349 ;

    /* -------- hsl ------ */
    --fisrt-color : hsl(--var(--hue-color), 90%, 48%) ;
    --fisrt-color-second : hsl(--var(--hue-color), 90%, 48%) ;
    --fisrt-color-alt : hsl(--var(--hue-color), 57%, 53%) ;
    --fisrt-color-lighter : hsl(--var(--hue-color), 92%, 85%) ;
    --title-color : hsl(--var(--hue-color), 8%, 15%) ;
    --text-color : hsl(--var(--hue-color), 8%, 45%) ;
    --text-color-light : hsl(--var(--hue-color), 8%, 65%) ;
    --input-color : hsl(--var(--hue-color), 70%, 96%) ;
    --body-color : hsl(--var(--hue-color), 60%, 99%) ;
    --container-color : #ecf0f3 ;

    /* ---------- font and typografy ---------- */
    --body-font: 'Poppins', sans-serif ;

    --big-font-size : 2rem ;
    --h1-font-size : 1.5rem ;
    --h2-font-size : 1.25rem ;
    --h3-font-size : 1.125rem ;
    --normal-font-size : .938rem ;
    --small-font-size : .813rem ;
    --smaller-font-size : .75rem ;

    /* -------- font weight -------- */
    --font-medium : 500 ;
    --font-semi-bold : 600 ;

    /* --------- manages bottom --------- */
    /* .25rem = 4px , .5rem = 8px , .75rem = 12px .... */
    --mb-0-25 : .25rem ;
    --mb-0-5 : .5rem ;
    --mb-0-75 : .75rem ;
    --mb-1 : 1rem ;
    --mb-1-5 : 1.5rem ;
    --mb-2 : 2rem ;
    --mb-2-5 : 2.5rem ;
    --mb-3 : 3rem ;

    /* ----------- z index ----------- */
    --z-tooltip : 10 ;
    --z-fixed : 100 ;
    --z-modal : 1000 ;

    /* font size for large devices */
    @media screen and (min-width : 968px) {
        :root{
            --big-font-size : 3rem ;
            --h1-font-size : 2.25rem ;
            --h2-font-size : 1.5rem ;
            --h3-font-size : 1.25rem ;
            --normal-font-size : 1rem ;
            --small-font-size : .875rem ;
            --smaller-font-size : .813rem ;
        }
    }

    /* dark theme */
    --dark-theme-bg : #212428 ;
    --dark-theme-shadow :   5px 5px 11px #1e2125,
    -5px -5px 11px #24272b; 
}

body.dark-theme{
    background-color: #212428;
}

/* darl-light button  */

.nav-btns{
    display: flex;
    align-items: center;
}
.change-theme {
    color: #1a1919;
    font-size: 1.25rem;
    margin-right: var(--mb-1);
    cursor: pointer;
}
.change-theme:hover {
    color: #4c4c4c;
}


.logo-window{
    /* border-radius: 50% !important; */
}

/* base */
*{
    box-sizing: border-box;
    margin: 0 ;
    padding: 0 ;
}

html{
    scroll-behavior: smooth;
}

body {
    margin:  0 0 var(--header-height) 0;
    font-family:  var(--body-font);
    font-size: var(--normal-font-size);
    /* background-color: var(--body-color); */
    /* background-color:#ecf0f3; */
    background-color: #ecf0f3;
    /* background-color: var(--dark-theme-bg); */
    color: var(--text-color) ;
}

h1,h2,h3,h4 {
    color : var(--title-color) ;
    font-weight: var(--font-semi-bold);
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
}

/* reusable css classes */

.section {
    padding: 2rem 0 4rem;
}

.section-title {
    font-size : var(--h1-font-size) ;
}

.section-subtitle {
    display: block;
    font-size: var(--small-font-size) ;
    margin-bottom: var(--mb-3) ;
    color: #c31432;
}

.section-title,
.section-subtitle {
    text-align: center ;
    
}

.headerlogo{
    /* background-color: red; */
    font-size: large;
    height: 100%;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* -------- layout -------- */
/* .container {
    max-width: 768px ;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
} */

.grid{
    display: grid;
    gap: 1.5rem ;
}

.header{
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: var(--z-fixed);
    background: #ecf0f3;
    /* background-color: #ececec; */
    /* box-shadow: 2px 2px 10px #27272725; */
    /* background: #ecf0f3;
    box-shadow:  5px 5px 6px #cecece,
                -5px -5px 6px #f2f2f2; */
}

/* ---------- nav --------- */

.nav{
    max-width: 80%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
  
}

.nav-logo,
.nav-toggle{
    color: var(--title-color);
    font-weight: var(--font-medium);
}
.nav-log:hover{
    color: var(--fisrt-color) ;
}

.nav-toggle {
    font-size: 1.1rem;
    cursor: pointer;
}
.nav-toggle:hover{
    color: var(--first-color);
}

@media screen and (max-width: 767px) {
    .nav-menu{
        position: fixed ;
        left: 0;
        bottom: -100%;
        width: 100%;
        background-color: #f8f8f8;
        padding: 2rem 1.5rem 4rem;
        box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
        border-radius: 1.5rem 1.5rem 0 0 ;
        transition: all .5s ease ;
    }
}

.nav-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--small-font-size);
    color: var(--title-color);
    font-weight: var(--font-medium);
}

.nav-link:hover{
    color: var(--fisrt-color);
    opacity: .6;
}

.nav-icon{
    font-size: 1.2rem;
}

.nav-close {
    position: absolute ;
    /* display: block; */
    right: 1.3rem;
    bottom: .5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--fisrt-color);
}

.nav-icon:hover {
    color: var(--fisrt-color-alt) ;
}

.show-menu{
    bottom: 0;
}

.displayNone{
    display: none;
}



/* ------------ home ---------- */

.home-image{
    overflow: hidden;
    background: linear-gradient(130deg, #c31432, #240b36);
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 31% 69% 70% ;
    box-shadow: 2px 2px 20px #240b36;
    display: flex;
    justify-content: center;
}

.home-image img{
    width: 100%;
    height: auto;
    opacity: .8 ;
    object-fit: cover;
}

.home-container {
    gap:1rem
}

.home-content{
    grid-template-columns: .5fr 3fr;
    padding-top: 3.5rem;
    align-items: center;
    width: 85%;
    margin: auto;
    margin-top: -50px !important;
    margin-bottom: 50px !important;
}

.home-social{
    display: grid;
    grid-template-columns: max-content;
    row-gap: 1rem;
}

.home-social-icon {
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 1.25rem;
    color: #272727;
    background: #ecf0f3;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
    transition: all .5s ease;

    cursor:pointer;
}

.home-social-icon:hover{
    background-color: #ba0725 ;
    color: #dedddd;
    /* scale: 2; */
    translate:0 -2px;
    scale: 1.03;
}

.home-data{
    grid-column: 1/3;
    margin-bottom: 20px;
}

.home-title{
    font-size:var(--big-font-size) ;
}
.home-title span {
    color: #c31432;
}
.home-subtitle{
    font-size: var(--h3-font-size);
    color: var(--text-color);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-0-75);
}

.home-description{
    margin-bottom: var(--mb-2);
}

.home-scroll{
    display: none;
}

.home-scroll-button{
    border-radius: 4px;
    font-size: 1.25rem;
    /* color: #ba0725; */
    color: #272727;
    background: #ecf0f3;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
    transition: all .5s ease;
    position: relative;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 8px;

}
/* .home-scroll-button:hover .home-scroll-mouse{
    color: rgb(116, 2, 2);
} */
.home-scroll-mouse{
    position: absolute;
    top: -20px;
    left: -13px;
    font-size: 30px;
}
/* .home-scroll-button:hover{
    background-color: #ba0725 ;
    color: #dedddd;
    margin-top: 10px;
} */

.contact-me-btn{
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 1.25rem;
    color: #ecf0f3;
    background: #ba0725;
    box-shadow:  2px 2px 10px #ba072551,
                -2px -3px 10px #ba072549;
    transition: all .5s ease;
}

.contact-me-btn:hover{
    margin-left: 10px;
}


/* auto ----------- slidder------------ */







@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-250px * 8))}
}

.slider {
	/* height: 100px; */
    height: 100%;
    margin-top: 50px;
	overflow:hidden;
	position: relative;
	width: 100%;
    display: flex;
    align-items: center;

    /* box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff; */
}
.slide-track {
    animation: scroll 30s linear infinite;
    display: flex;
    align-items: center;
}
.slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80px !important;
    width: 100px !important;
    border-radius: .5rem;
    background: #ecf0f3;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;

    margin: 10px;
}
.slide img {
    width: 40% !important;
    height: auto !important; 
    object-fit: cover;
    border-radius: 10%;

    /* border: 1px solid #151515; */
}

.slide h3 {
    margin-top: 5px ;
    font-size: 12px;
}
.siled-section{
    padding: 10px;
    /* background-color: red; */
}



/* ----------- about section ------------ */

.about{
}
.about-img-container{
    
    width: 420px !important;
    height: auto;
    border-radius: 10px;
    justify-self: center;
    align-self: center;
}

.about-img-container img {
    height: 290px !important;
    object-fit: cover;
    object-position: left;
}

@media screen and (max-width : 768px){

    .about-img-container{
    
        width: 270px !important;
        height: auto;
        border-radius: 10px;
        justify-self: center;
        align-self: center;
    }
    
    .about-img-container img {
        height: 290px !important;
        object-fit: cover;
        object-position: left;
    }
    

}

@media screen and (max-width : 600px){
    .about-img-container{
    
        width: 90% !important;
        height: auto;
        border-radius: 10px;
        justify-self: center;
        align-self: center;
    }
    
    .about-img-container img {
        height: auto !important;
        object-fit: cover;
        object-position: left;
    }

    .about-container{
        display: flex;
        flex-direction: column;
    }

}

.about-description{
    padding: 5px;
    text-align: center;
    font-size: var(--small-font-size);
    color: #2727279f;
    
}

.about-info{
    margin-top: var(--mb-2-5);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;

    
}

.about-info-name{
    font-size: var(--smaller-font-size);
}
.about-info-title{
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi-bold) ;

}
.about-button{
    border-radius: 4px;
    font-size: 1.25rem;
    padding:5px 8px !important;
    color: #ba0725;
    /* color: #272727; */
    height: 40px;
    background: #ecf0f3;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
    transition: all .5s ease;
    position: relative;
}
.about-button:hover{
    background-color: #ba0725;
    color: #ecf0f3;
    translate:0 -2px;
    scale: 1.03;
}

/* ------------ skills section --------- */

.skills-header-tile{
    font-size: 20px;
}
.skills-data{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.skills-title{
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 3px;
    flex-direction: column-reverse;
    background-color: #ecf0f3;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
            }
.skills-list{
    /* justify-content: end; */
    padding-left: 10%;
    margin-bottom: 30px;

}
.skills-title .skills-img{
    /* background-color: red; */
    width: 50%;
    border-radius: 10px;
}
.firebase-img{
    border-radius: 5px;
}
.skills-name{
    font-size: 16px;
}

.skills-container{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.skills-content{
    width: 30%;
    min-width: 300px;
}

@media screen and (max-width : 768px){

    .skills-container{
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .skills-content{
        width: 90%;
        min-width: 300px;
        
    }

    .skills-data{
        display: flex;
        align-items: center !important;
        justify-content: center !important;
    }
    

}


.skills-header{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--mb-2-5);
    min-height: 70px;
    /* background-color: red; */

}
.skills-icon , .skills-arrow {
    color: #c31432;
    font-size: 2rem;
}

.skills-icon{
    margin-right: var(--mb-0-75);
}

.skills-title{
    font-size: var(--h3-font-size);
}

/* --------- qualification -------- */
.qualification-container{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.qualification-sections{
    display: flex;
    justify-content: center;
    border-radius: .5rem;
    padding: 40px 10px;
    text-align: start;

}
.qualification-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin: auto; */
    /* background-color: red; */

    margin-bottom: 20px;
}
.qualification-tabs {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: var(--mb-2);
    align-items: center;
    /* background-color: red; */
    /* margin: auto; */
    width: 60%;
}

.qualification-button{
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    cursor: pointer;
}
.qualification-button:hover{
    color: #c31432;
}

.qualification-icon{
    font-size: 1.8rem;
    margin-right: var(--mb-0-25);
}
.qualification-data div:last-child ,
.qualification-data div:first-child{
    margin-left: 20px;
    margin-right: 20px;
}
.qualification-data{
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    /* margin-bottom: 20px; */
}

.qualification-calenadar{
    font-size: var(--smaller-font-size);

}

.qualification-title{
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
}

.qualification-subtitle{
    display: inline-block;
    font-size: var(--smaller-font-size);
    margin-bottom: var(--mb-1);
    color: #7d7d7d;
}

.qualification-rounder{
    display: inline-block;
    background-color: #c31432;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.qualification-line {
    display: block;
    width: 2px;
    height:90%;
    background-color: #c31432;
    transform: translate(6px , -7px);
}

/* ------------ services section ----------- */
.services-container{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    /* background-color: red; */
}

.image-service{
    position: absolute;
    width: 40%;
    top: 0;
    right: 0;
    opacity: .5;
    z-index: 1;
}

.services-content {
    position: relative;
    background: #ecf0f3;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
    border-radius: 5px;
    padding: 10px;
    padding-bottom: 30px;
    transition: all .5s ease;
    cursor: pointer;
    width: 30%;
}

.services-content:hover{
    background-color: #c31432;
    color: #cecece;
}

.services-icon{
    display: block;
    font-size: 1.5rem;
    margin-bottom: var(--mb-1);
    color: #c31432;
}

.services-content:hover .services-icon {
    color: #cecece;
}

.services-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    font-weight: var(--font-medium);
}
.services-button{
    font-size: 2rem;
    /* opacity: 0; */
    transition: all .3s ease;
    color: #151515;
    position: absolute;
    bottom: 0px !important;

    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.services-button h6{
    font-size: 1rem !important;
}
.services-content:hover .services-button{
    opacity: 1;
    margin-left: 15px;
    color: #cecece;
}

.service-modal{
    font-size: 12px;
    /* height: 300px; */
    margin-bottom: 30px;
    color: #272727;
}

.services-content:hover .service-modal {
    color: #cecece;
}
.services-modal {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #2b2b2bac;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    z-index: var(--z-modal );
    opacity: 0;
    visibility: hidden;
    transition: all o.3s;
    color: #272727;
}

.services-modal-content {
    position: relative;
    background-color: var(--container-color);
    padding: 1.5rem;
    padding-top: 30px !important;
    border-radius: .5rem;
    width: 700px;
    cursor:default;
    height: 350px;
    overflow: hidden;
}

.services-modal-services {
    row-gap: 1rem;
    margin-top: 40px !important;
    z-index: 99999 !important;
    color: #000000;
    
}

.services-modal-service {
    display: flex;
}

.services-modal-title{
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1-5);
}

.services-modal-close{
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 5px;
    font-size: 1.5rem;
    color: var(--fisrt-color);
    cursor: pointer;
}
.services-buttn-container {
    position: absolute;
    font-size: 1.3rem ;
    color: #c31432;
    opacity: 1;
    width: 200px;
    background-color: red; 
    bottom: 10px;
    left: 15px;
}

.active-modal {
    opacity: 1;
    visibility: visible;
}
/* portfolio section */

.services-container{
    width: 80%;
}

.portfolio-container{
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    width: 80%;
    position: relative;

}

.portfolio-contanet img {
    scale: 1;
}

.portfolio-contanet:hover img {
    scale: 1.1;
}

.porftolio-data p{
    font-size: 13px !important;
    color: #636363;
}
.porftolio-data a{
    position: absolute;
    bottom: 10px;
}
.portfolio-contanet{
    padding: 1.5rem ;
    background-color: #ecf0f3;
    margin: 10px;
    border-radius: .5rem;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
    height: 450px !important;
    /* width: 33% !important; */
    
    flex-basis: 46%;
}
@media screen and (min-width : 600px) and (max-width : 967px){

    .qualification-container{
        width: 96%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .qualification-sections{
        /* background-color: red; */
        display: flex;
        justify-content: center;
    
    }
    .qualification-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        /* margin: auto; */
        width: 80%;
        margin-bottom: 20px;
    }
    .qualification-tabs {
        display: flex;
        justify-content: space-evenly;
        margin-bottom: var(--mb-2);
        align-items: center;
        /* background-color: red; */
        /* margin: auto; */
        width: 80%;
    }

        /* ------------ */


    .portfolio-container{
        /* background-color: #240b36 !important; */
        width: 96%;
        padding:0 20px;
        padding-bottom: 150px !important;
    }
    .services-container{
        width: 96%;
        flex-wrap: wrap;
    }
    .services-content {
        position: relative;
        background: #ecf0f3;
        box-shadow:  5px 5px 11px #d9dde0, -5px -5px 11px #ffffff;
        border-radius: 5px;
        padding: 10px;
        transition: all .5s ease;
        cursor: pointer;
        margin: 10px;
        /* width: 45%; */
        flex-basis: 45%;
    }
    .portfolio-contanet{
        padding: 1.5rem ;
        font-size: 10px !important;
        background-color: #ecf0f3;
        margin: 10px;
        border-radius: .5rem;
        box-shadow:  5px 5px 6px #cecece,
        -5px -5px 6px #f2f2f2;
        height: auto !important;
        padding-bottom: 50px !important;
        /* width: 50% !important; */
        flex-basis: 45% !important;
    }
}

@media screen and (max-width : 600px){


    .qualification-container{
        width: 96%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .qualification-sections{
        /* background-color: red; */
        display: flex;
        justify-content: center;
    
    }
    .qualification-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        /* margin: auto; */
        width: 80%;
        margin-bottom: 20px;
    }
    .qualification-tabs {
        display: flex;
        justify-content: space-evenly;
        margin-bottom: var(--mb-2);
        align-items: center;
        /* background-color: red; */
        /* margin: auto; */
        width: 100%;
    }


        /* --------------- */
    .portfolio-container{
        padding:0 20px;
        width: 96%;
    }
    .services-container{
        width: 96%;
        flex-wrap: wrap;
    }
    .services-content {
        position: relative;
        background: #ecf0f3;
        box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
        border-radius: 5px;
        padding: 10px;
        transition: all .5s ease;
        cursor: pointer;
        margin: 10px;
        /* width: 45%; */
        flex-basis: 100%;
    }
    .portfolio-contanet{
        padding: 1.5rem ;
        background-color: #ecf0f3;
        margin: 10px;
        border-radius: .5rem;
        box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
        height: 100% !important;
        padding-bottom: 50px !important;
        /* width: 100% !important; */
        flex-basis: 100%;
    }
}

            
.porftolio-img , .porftolio-img-container {
    width: 100%;
    height: 250px;
    border-radius: .5rem;
    justify-self: center;
    transition: all .3s ease;
    margin-bottom: 10px;
    /* object-fit:cover; */
}
.porftolio-img-container{
    overflow: hidden;

    transition: all .3s ease;
}
.anet:hover .porftolio-img {
    scale: 1.1;
}

.portfolio-title{
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5);
    color: #c31432;
}

.portfolio-subtitle{
    margin-bottom: var(--mb-0-75);
    font-size: 12px;
}

.source-code-btn {
    background-color:#c31432;
    padding: 0px 5px;
    color: #eeeeee;
    border-radius: .4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    transition: all 0.3s ease;
}
.source-code-btn i {
    font-size: 27px;
}
.source-code-btn:hover{
    background-color: #ecf0f3 ;
    color: #c31432 ;
    border: 1px solid #c31432;
}
.portfolio-arrow-icon{
    font-size: 20px;
    transition: all 0.3s ease;
}
.source-code-btn:hover .portfolio-arrow-icon {
    transform: translate(8px , 0);
}

/* contact section */

.contactme{
    padding-bottom: 50px;
    height: 100%;
}


.getintouch{
    margin-bottom: 50px;
    color: #c31432;
}
.contact-container{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.contact-about-area , .contact-form-area {
    width: 49%;
    background: #ecf0f3;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
    padding:20px;
    border-radius: .5rem;
    margin:20px 0;
    height: 80vh;
}

.contact-form-area {
   display: flex;
   flex-direction: column;
   justify-content: center;
    
}

.form-input-content{
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    
}

.contact-label{
    color: #272727;
    font-size: 12px;
}

.contact-input{
    width: 100%;
    height: 35px;
    border-radius: .2rem;
    border: 1px solid #bdbdbd;
    outline:none;
    padding: 0 10px;
}

.contact-texAarea{
    width: 100%;
    height: 100px;

    border-radius: .2rem;
    border: 1px solid #bdbdbd;
    outline:none;
    padding: 10px 10px;
    
}

.contact-input-button{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 18px;
    background: #ecf0f3;
    background: #ecf0f3;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
    border: 0;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: .3rem;
}

.contact-input-button:hover {
    background-color: #ba0725;
    color: #cecece;
}
.contact-form-icon{
    transition: all .3s ease;
    color: #272727;
    font-size: 20px;
}

.contact-input-button:hover .contact-form-icon{
    transform: translateX(10px);
    color: #bdbdbd;
}

.contact-about-area{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-phone , .contact-email{
    font-weight: 600;
}
.contact-email{
    
    margin-bottom: 10px;
}
.contact-phone-email{
    font-weight: 400;
    color: #272727;
}
.contact-phone-email:hover{
    color: #ba0725;
    transition: all .2s ease;
}

.contact-title{
    font-size: 26px;
    color: #ba0725;
    margin-bottom: 10px;
}
.contact-subtitle{
    font-size: 16px;
    color: #272727;
    margin-bottom: 10px;
}
.contact-description{
    color: #4c4c4c;
    padding:0px 15px;
    margin-bottom: 10px;
}
.contact-social{
    margin-top: 10px;
    /* background-color: red; */
    display: flex;
    grid-gap:10px ;
}



@media screen and (min-width : 600px) and (max-width : 967px){
    .home-content{
        width: 99%;
        margin: auto;
        padding-top: 40px !important;
    }
    .contact-container{
        width: 96%;
        margin: auto;
    }
    
    .contact-about-area , .contact-form-area {
        width: 100%;
    }
    

}

.contactImg{
    width: 100%;
    padding: 0px;
    object-fit:contain;
    border-radius: 1rem ;
    /* height: auto; */
    margin-top: 10px;
    margin-bottom: 10px;
    /* background-color: red; */
    overflow: hidden;
    transition: all .3s ease;
}

.contactImg img {
    width: 100%;
    border-radius: 1rem;
    transition: all .3s ease;
    object-position: bottom;

}

.contactImg:hover img{
    scale: 1.2;
}

@media screen and  (max-width : 700px){
    .home-content{
        width: 99%;
        margin: auto;
    }
    .contact-container{
        width: 96%;
        margin: auto;
    }

    .contact-about-area , .contact-form-area {
        width: 100%;
        margin-bottom: 30px;
    }
    
   
}



/* footer section */

.footer{
    width: 80%;
    margin: auto;
    height: 100% !important;
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
    padding: 70px 0;
}
.footer-line{
    display: block;
    height: 1.5px;
    width: 100%;
    background-color: rgb(99, 99, 99);
}
.footer-content{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content:center; 
    align-items: center;
}
.footer-content div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-content div h2 {
    font-weight: 500 !important;
    font-size: 20px;
}
.find-whitme-footer{
    margin-bottom: 15px ;
}

.img-footer{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
    border: 2px solid #494949;
}

.active-link{
    color: #ba0725;
}

.scroll-heder{
    background: #ecf0f3;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff; 
}

.scrollUp{
    background-color: #ba0725;
    color: #eaeaea;
    height: 40px;
    width: 40px;
    border-radius: .5rem;
    position: fixed;
    right: 20px;
    bottom: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .9s ease;
    visibility: hidden;
    opacity: 0;
}
.scrollUp , .scrollUp-icon {
    font-size: 2rem;
    transition: all .3s ease;
}
.scrollUp:hover .scrollUp-icon {
    transform: translateY(-10px);
}

.show-scroll{
    visibility: visible;
    opacity: 1;
}

::-webkit-scrollbar{
    width: .6rem;
    background-color: #ecf0f383;
    transition: all .3s ease;
}

::-webkit-scrollbar-thumb{
    background-color: #4847477a;
    border-radius: 20px;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff; 
    transition: all .3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #686868ad;
    transition: all .3s ease;
}

.about-container{
    margin:0 10px;
    background-color: #ecf0f3;
    box-shadow:  5px 5px 11px #d9dde0,
             -5px -5px 11px #ffffff;
    padding: 20px 10px;
    border-radius: .5rem;
    align-items: center;

}

.about-img-container img{
    border-radius: .5rem;
    width: 100%;
    height: auto;
}

@media screen and (max-width : 350px) {
    .home-content{
        width: 99%;
        margin: auto;
    }
    .container{
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
        padding: 5px;
    }

    .nav-menu{
        padding: 2rem .25rem 4rem;
    }
    .nav-list{
        column-gap: 0;
    }
    .home-content{
        /* background-color: red; */
        margin: auto;
        grid-template-columns: .25fr 3fr;
    }

    
    .home-image{
        overflow: hidden;
        background: linear-gradient(130deg, #c31432, #240b36);
        width: 180px;
        height: 180px;
        border-radius: 30% 70% 70% 30% / 30% 31% 69% 70% ;
        box-shadow: 2px 2px 20px #240b36;
    }
    
    .home-image img{
        width: 100%;
        height: auto;
        opacity: .8 ;
        margin-top: -30px;
    }

    .skills-title{
        width: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        border-radius: 3px;
        flex-direction: column-reverse;
        background-color: #ecf0f3;
        box-shadow:  5px 5px 11px #d9dde0,
                 -5px -5px 11px #ffffff;
    }

    .skills-header-tile{
        font-size: 13px;
    }
    .skills-icon , .skills-arrow {
        color: #c31432;
        font-size: 1.2rem;
    }

    .qualification-data{
        gap: .5rem;
    }

    .section{
        margin: 0 auto;
    }

    .qualification-title{
        font-size: 12px;
        font-weight: var(--font-small);
    }
    
    .qualification-subtitle{
        display: inline-block;
        font-size: 12px;
        margin-bottom: var(--mb-1);
        color: #7d7d7d;
    }
    .about-container{
        margin:0 10px;
        background-color: #ecf0f3;
        box-shadow:  5px 5px 11px #d9dde0,
                 -5px -5px 11px #ffffff;
        /* padding: 20px 10px; */
        border-radius: .5rem;
    }
    .about-img-container{
        width: 60%;
        /* height: 300px; */
    }
    
    .about-img-container img{
        border-radius: .5rem;
       width: 100%;
       height: auto;
    }
}

@media screen and (min-width : 620px){
  
    .home-content{
        width: 99%;
        margin: auto;
        padding:0 10px;
        grid-template-columns: max-content 1fr 1fr;
    } 
    .home-data{
        grid-column: initial;
        width: 90%;
        margin:0 auto;

    }
    .home-image{
        order: 1;
        justify-self: center;
    }


    .about-container{
        grid-template-columns: repeat(2 , 1fr);
        /* align-items: center; */
    }
    
    /* .about-container img{
        border-radius: 10px;
    } */
    .about-container{
        margin:0 10px;
        background-color: #ecf0f3;
        box-shadow:  5px 5px 11px #d9dde0,
                 -5px -5px 11px #ffffff;
        /* padding: 20px 10px; */
        border-radius: .5rem;
    }
    .about-img-container{
        width: 280px;
        /* height: 300px; */
    }
    
    .about-img-container img{
        border-radius: .5rem;
       width: 100%;
       height: auto;
    }
}


@media screen and (min-width : 768px){
    /* .home-content{
        width: 99%;
        margin: auto;
    } */
    .container{
        margin-left: auto ;
        margin-right: auto;
        padding: 0 10px;
    }

   
    .section{
        padding: 6rem 0 2rem;
        margin: 0 auto;
    }

    .section-subtitle {
        margin-bottom: 4rem;
    }

    .header{
        top: 0;
        bottom: initial;
        width: 100vw !important;
    }

    .header,
    .main {
        padding: 0 1rem;
    }

    .nav{
        height: calc(var(--header-height) + 1.5rem);
        column-gap: 1rem;
        width: 100vw !important;
    }

    .nav-icon,
    .nav-close,
    .nav-toggle{
        display: none;
    }

    .nav-list{
        display: flex;
        column-gap: 2rem;
    }
    .nav-menu{
        margin-left: auto;
    }

    .change-theme{
        margin: 0;
    }
    .home-container{
        row-gap: 5rem;
    }
    .home-content{
        padding-top: 5.5rem;
        column-gap: 2rem ;
    }

    .home-image{
        width: 300px;
    }
    /* .home-scroll{
        display: block;
    } */

    .about-container{
        background-color: #ecf0f3;
        box-shadow:  5px 5px 11px #d9dde0,
                 -5px -5px 11px #ffffff;
        /* padding: 20px 10px; */
        border-radius: .5rem;
    }

    .about-img-container{
        width: 350px;
        /* height: 300px; */
    }
    
    .about-img-container img{
        border-radius: .5rem;
       width: 100%;
       height: auto;
    }
}

.portfolio-container{
    padding:0 20px;
    width: 89%;
    padding-bottom: 50px;
}

@media screen and (min-width : 1024px){
    .container{
        margin-left: auto ;
        margin-right: auto;
        padding: 0 10px;
    }

    .home-content{
        width: 80%;
        margin: auto;
    }

    .header,
    .main{
        padding: 0;
    }
    .home-image{
        width: 320px;
    }

    /* .home-social {
        transform: translateX(6rem);
    } */

    .about-container{
        background-color: #ecf0f3;
        box-shadow:  5px 5px 11px #d9dde0,
                 -5px -5px 11px #ffffff;
        padding: 100px 10px;
        border-radius: .5rem;
        /* background-color: red; */
        width: 65%;
    }

    .about-img-container{
        width: 350px;
        /* height: 300px; */
    }
    
    .about-img-container img{
        border-radius: .5rem;
       width: 100%;
       height: auto;
    }
}


@media screen and (max-width : 730px){
    .portfolio-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .portfolio-contanet{
        /* background-color: red; */
        width: 100% !important;
    }
}




.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }
  .whatsapp-icon {
    margin-top: 16px;
  }

  /* for mobile */
  @media screen and (max-width: 767px){
    .whatsapp-icon {
      margin-top: 10px;
    }
    .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 10px;
      font-size: 22px;
    }
  }