@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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a {
    padding: 0;
    margin: 0;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

nav {
    padding: 0 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    box-shadow: 1px 0px 20px #757575;
}

.logo img {
    width: 80px;
}


.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin: 0 15px;
}

.menu a {

    color: #4c4d4d;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.menu a:hover {
    color: #ef0f3a;
}

/* Mobile Menu */
.menu-icon {
    display: none;
    font-size: 26px;
    color: #000000;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

.container-default-padding {
    padding: 4.5rem 5rem;
}

.text-center {
    text-align: center;
}

.underline {
    position: relative;
}

.underline::after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: -10px;
    width: 129%;
    height: 3px;
    background-color: #ef0f3a;
}

.content-paragraph {
    color: #4c4d4d;
    text-align: justify;
    padding-bottom: 20px;
}

/**Banner**/
.banner {
    background: url('../images/banner.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 1.8rem;
    font-weight: 500;
}

.banner-content h3 {
    font-size: 4rem;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.sub-designation {
    font-size: 2rem !important;
}

.btn-hireme {
    border: 2px solid #ffffff;
    padding: 13px 30px;
    color: #ffffff;
    border-radius: 40px;
    font-weight: 500;
}

.btn-hireme:hover {
    border: 2px solid #ffffff;
    background-color: #ef0f3a;
}

.btn {
    border: 2px solid #ef0f3a;
    padding: 13px 30px;
    color: #ef0f3a;
    border-radius: 40px;
    font-weight: 500;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background-color: #ef0f3a;
    color: #ffffff;

}

/**know me more**/
.section-title {
    padding-bottom: 4.5rem;
}

.section-title .head-title {
    font-size: 35px;
    font-weight: 600;
}

.container {
    display: flex;
    gap: 20px;

}

.col-12 {
    flex: 8;
    padding: 20px;
}

.col-8 {
    flex: 8;
    padding: 20px;
}

.col-6 {
    flex: 6;
    padding: 20px;
}

.col-4 {
    flex: 4;
    padding: 20px;
}

.col-3 {
    flex: 3;
    padding: 20px;
}

.intro-title p {
    font-size: 25px;
    font-weight: 600;
    color: #252b33;
    padding-bottom: 6px;
}

.intro-title .name {
    color: #ef0f3a;
}

.personal-info table {
    width: 100%;
    color: #4c4d4d;
    margin-bottom: 40px;
}

.personal-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.personal-info span {
    color: #ef0f3a;
}

.personal-info table td {
    border-bottom: 1px solid #dedede;
    padding: 12px 0px;

}

/**facts**/
.fact {
    padding: 0rem 5rem 4.5rem;
}

.fact .col-3 {
    border-right: 1px solid #dedede;
}

.fact-count {
    font-size: 40px;
    font-weight: 700;
    color: #4c4d4d;
}

.fact-title {
    color: #4c4d4d;
}

/**what i do**/
.what-i-do {
    background-color: #f8f9fa;
}

.what-i-do .underline::after {
    content: "";
    position: absolute;
    left: -35px;
    bottom: -10px;
    width: 570%;
    height: 3px;
    background-color: #ef0f3a;
}

.service-col {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.icon-box {
    background-color: #ffffff;
    padding: 8px 8px 0px;
    text-align: center;
    width: 17%;
    box-shadow: 0px 1px 2px #9b9b9b;
    border-radius: 13px;
}

.icon-box img {
    width: 100%;
}


.service-col h6 {
    color: #4c4d4d;
}

.service-col p {
    color: #4c4d4d;
}

.service-col h6 {
    font-size: 21px;
    font-weight: 600;
    padding-bottom: 7px;
}

/**my work**/
.my-work .underline::after {
    content: "";
    position: absolute;
    left: -18px;
    bottom: -10px;
    width: 87%;
    height: 3px;
    background-color: #ef0f3a;
}

.project-frame-box {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #4c4d4d;
    padding-bottom: 15px;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.5s ease-in-out;
}

.project-frame-box:hover {
    transform: scale(1.1);
}

.project-frame-box[data-aos]:hover {
    transform: scale(1.2) rotate(10deg);
}

.project-box {
    height: 185px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.project-title {
    margin-top: 12px;
}

.project-box-1 {
    background-image: url(../images/project1/1.jpg);

}

.project-box-2 {
    background-image: url(../images/project2/1.jpg);

}

.project-box-3 {
    background-image: url(../images/project3/1.jpg);

}

.project-box-4 {
    background-image: url(../images/project4/1.jpg);

}

.project-box-5 {
    background-image: url(../images/project5/1.jpg);

}

.project-box-6 {
    background-image: url(../images/project6/1.jpg);

}

.project-box-7 {
    background-image: url(../images/project7/1.jpg);

}

.project-box-8 {
    background-image: url(../images/project8/1.jpg);

}

.project-box-9 {
    background-image: url(../images/project9/1.jpg);

}

/**project details**/
.about-projects img {
    border: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.about-projects p {
    border: 0 !important;
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
}

.about-projects .col-6 {
    border: 1px solid #dedede !important;
    padding: 10px !important;
    box-shadow: 0px 0px 25px #dedede !important;
    background-color: #fff !important;
}

.view-project a {
    border: 2px solid #ef0f3a;
    padding: 7px 25px;
    color: #ef0f3a;
    border-radius: 40px;
    font-weight: 500;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 15px;
}

.view-project a:hover {
    background-color: #ef0f3a;
    color: #ffffff;
}

.p-3-title {
    font-size: 1rem;
}

.projectmain .col-6 {
    padding: 0;
}

.projectmain .col-4 {
    padding: 0;
}

.projectmain .col-8 {
    padding: 0;
}

.projectmain .about-projects.container-default-padding {
    padding: 0.5rem 5rem 1rem;
}

.projectmain .container-default-padding {
    padding: 0.5rem 5rem 3rem;
}

.projectmain {
    padding: 7.5rem 0rem 0rem;
}

.projectmain .container-default-padding-top {
    padding: 0rem 1rem 4.5rem !important;
}

.projectmain img {
    width: 100%;
    border: 1px solid #dedede;
    padding: 10px;
    box-shadow: 0px 0px 25px #dedede;
}

.projectmain h1 {
    color: #4c4d4d;
    font-size: 40px;
    padding-bottom: 15px;
}

.projectmain h3 {
    color: #4c4d4d;
}

.projectmain p {
    color: #4c4d4d;
    margin-bottom: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dedede;
}

.projectmain footer p {
    color: #ffffff;
}

/**get in touch**/

.address-sec {
    background-color: #ef0f3a;
    color: #ffffff;
    padding: 73px 0px 0px;
    border-radius: 5px;
}

.address-sec .content-paragraph {

    color: #ffffff;

}

.address-sec p {

    color: #ffffff !important;
    border: 0 !important;

}

.contact-form {
    background-color: #ffffff;
    color: #4c4d4d;
    padding-top: 5.5rem !important;
}

.contact-form .underline::after {
    content: "";
    position: absolute;
    left: -49px;
    bottom: -10px;
    width: 265%;
    height: 3px;
    background-color: #ef0f3a;
}

.address-title {
    font-size: 21px;
    padding-bottom: 11px;
}

form .col-6 {
    padding: 0px;
    margin-bottom: 20px;
}

form .col-12 {
    padding: 0px;
    margin-bottom: 25px;
}

form textarea {
    padding: 0px;
}

form input {
    width: 100%;
    padding: 14px 10px;
    border-radius: 10px;
    border: 1px solid #bfbfbf;
}

form textarea {
    width: 100%;
    padding: 14px 10px;
    border-radius: 10px;
    border: 1px solid #bfbfbf;
}

/**footer**/
footer {
    background-color: #4c4d4d;
}

footer p {
    color: #ffffff;
}


/**Responsive media query css**/
@media (min-width: 768px) {
.figma {
        width: 12% !important;
    }

    .ai {
        width: 20% !important;
    }

    .html5 {
        width: 12%;
    }

    .css {
        width: 21%;
    }

    .js {
        width: 20%;
    }

    .gsp {
        width: 24%;
    }
}
@media (max-width: 768px) {

    /**navbar**/
    nav {
        padding: 1rem 2rem;

    }

    .menu {
        display: none;
        flex-direction: column;
        background: #ffffff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
        z-index: 1;
    }

    .menu li {
        margin: 15px 0;
    }

    .menu a {
        color: #ef0f3a;

    }

    #menu-toggle:checked+.menu-icon+.menu {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    /**default container padding**/
    .container-default-padding {
        padding: 4.5rem 1rem !important;
    }


    /**Banner**/
    .banner {
        background-size: cover;
        background-position: top;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }


    /**Know me more**/
    .container {
        flex-direction: column;
    }

    .col-12,
    .col-8,
    .col-4,
    .col-6,
    .col-3 {
        flex: 100%;
    }

    .fact .col-3 {
        border-right: 0px solid #dedede;
        border-bottom: 1px solid #dedede;
    }

    /**what i do**/
    .icon-box {
        width: 55%;
    }

    

    .projectmain {
        padding: 7.5rem 0rem 0rem;
    }

    .projectmain .container-default-padding {
        padding: 0.5rem 2.3rem 1rem !important;
    }
          .aos-animate {
              transform: none !important;
              opacity: 1 !important;
          }
}

#about {
    padding: 0 5rem;
}