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

a {
    text-decoration: none;
}

@font-face {
    font-family: "Archive";
    src: url("../fonts/Archive-Regular.ttf") format("truetype");
}

html {
    font-family: "IBM Plex Sans", sans-serif;
}

body {
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    color: #475569;
}

body.overflow {
    overflow: hidden;
}

body.dark-mode {
    background-color: #0f172a;
}

body.dark-mode i.ri-sun-line {
    display: block !important;
}

body.dark-mode i.ri-moon-fill {
    display: none !important;
}

body.dark-mode a,
body.dark-mode i,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode p {
    color: #cbd5e1 !important;
}

body.dark-mode header {
    border-color: #1e293b;
    background-color: rgba(15, 23, 42, 0.9);
}

body.dark-mode .inner-page-header-sec {
    border-color: #1e293b;
}

body.dark-mode header .right .menus ul li a:hover::after {
    background-color: #fff;
}

@media (max-width: 720px) {
    body.dark-mode .menus {
        background-color: #0f172a;
    }
}

body.dark-mode .menus .menu1 {
    border-color: #1e293b;
}

body.dark-mode .menus h6 {
    color: #475569 !important;
}

body.dark-mode .close-icon {
    color: #fff;
}

body.dark-mode .mobileMenu-backdrop {
    background-color: rgba(15, 23, 42, 0.5);
}

body.dark-mode .contact-form input[type=submit] {
    background-color: #fff;
    color: #000;
}

body.dark-mode .contact-form input[type=submit]:hover {
    background-color: #0f172a;
    color: #fff;
}

.container {
    max-width: 1000px;
    padding: 0 52px;
    margin: 0 auto;
}

h1 {
    font-size: 30px;
    margin: 30px 0 15px 0;
    font-weight: 400;
}

h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 30px 0 15px 0;
    font-weight: 400;
}

h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.625;
    margin-bottom: 15px;
}

p a {
    color: inherit;
    border-bottom: 1px solid rgba(148, 163, 184, 0.5);
}

p a:hover {
    color: #000;
    border-bottom: 1px solid #000;
}

header {
    padding: 25px 0;
    border-bottom: 1px solid #f1f5f9;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
}

header .mobileMenu-backdrop {
    display: none;
    position: absolute;
    top: 0;
    z-index: 20;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    height: 100vh;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.8);
}

header .main-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header .title-logo a {
    font-size: 16px;
    line-height: 24px;
    font-family: "Archive", sans-serif;
    text-transform: uppercase;
    color: #475569;
    text-decoration: none;
    font-weight: 400;
}

header .title-logo a:hover {
    color: #000;
}

header .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

header .right .menus ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

header .right .menus ul li {
    position: relative;
    padding: 0 20px;
    border-left: 2px solid black;
}



header .right .menus ul li:hover {
    background-color: #000;
    border-left: 2px solid #fff;

}


header .right .menus ul li:hover  a{
    color: #fff;
}

header .right .menus ul li.active {
    background-color: #000;
    border-left: 2px solid #fff;

}


header .right .menus ul li.active:hover {
    background-color: #fff;
    border-left: 2px solid black;

}


header .right .menus ul li.active a{
    color: #fff;

}

header .right .menus ul li.active:hover a{
    color: #475569;


}
header .right .menus ul li a {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #475569;
}




header .right .menus ul li a.active {
    font-weight: 600;
}



header .right .menus ul li a:hover::after{
    opacity: 1;
}

header .right .menus .social-media,
header .right .menus h6 {
    display: none;
}

header .right .hamberger-menu-icon {
    display: none;
    margin-right: 20px;
}

header .right .close-icon {
    display: none;
    margin-right: 15px;
}

header .right .mobile-menu.active {
    z-index: 51;
}

header .right .mobile-menu.active .hamberger-menu-icon {
    display: none !important;
}

header .right .mobile-menu.active .close-icon {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

header .right #dark-mode-toggle {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 51;
}

header .right #dark-mode-toggle i {
    color: #475569;
}

header .right #dark-mode-toggle .ri-sun-line {
    display: none;
}

header .right #dark-mode-toggle .ri-moon-fill {
    display: block;
}

.common-page {
    padding: 30px 0;
}

.common-page .header-content-section {
    padding: 20px 0 35px 0;
}

.project-list .project-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 50px;
}

.project-list .project-outer .project {
    width: calc(50% - 25px);
}

.project-list .project-outer .project h3 {
    margin-top: 32px;
}

.project-list .project-outer .project a {
    color: #475569;
}

.project-list .project-outer .project p {
    font-size: 16px;
    line-height: 1.4;
}

.project-list .project-outer .project .prjct-dtls ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.project-list .project-outer .project .prjct-dtls ul li {
    color: #94a3b8;
    font-size: 14px;
}

.project-list .project-outer .project .prjct-dtls .lctn {
    margin-top: 20px;
}

.project-list .project-outer .project .prjct-dtls .lctn i {
    margin-right: 10px;
}

.project-list .project-outer .project .prjct-dtls .lctn span {
    font-size: 14px;
}

.recent-projects {
    margin-top: 45px;
}

.recent-projects h6 {
    text-transform: uppercase;
    color: #94a3b8;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    font-weight: 400;
}

footer {
    padding: 30px 0;
}

footer .copy-rights p {
    font-size: 12px;
}

.inner-page-header-sec {
    padding: 0 60px 0;
    border-bottom: 1px solid #e2e8f0;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
}

.inner-page-header-sec h1 {
    margin-top: 0;
}

.contact-form {
    width: 100%;
    margin: 0 auto;
}

.contact-form h2 {
    font-size: 30px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin: 5px 0;
    padding: 10px;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: #0f172a;
}

.contact-form .fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.contact-form input[type=submit] {
    width: auto;
    padding: 10px 30px;
    background-color: #0f172a;
    cursor: pointer;
    color: #fff;
    border: 1px solid;
}

.contact-form input[type=submit]:hover {
    background-color: #fff;
    color: #000;
}






.btn-dark {
    width: auto;
    padding: 10px 30px;
    background-color: #0f172a;
    cursor: pointer;
    color: #fff;
    border: 1px solid;
}

.btn-dark:hover {
    background-color: #fff;
    color: #000;
}




@media (max-width: 766px) {
    .project-list .project-outer .project {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .menus {
        display: none;
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 50;
        height: 100vh;
        width: 83.333333%;
        background-color: #fff;
        -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 25px 50px -12px #000;
        box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 25px 50px -12px #000;
    }

    .menus .menu1 {
        position: absolute;
        top: 12%;
        border-top: 1px solid #f1f5f9;
        padding-top: 30px;
        width: 100%;
    }

    .menus ul {
        display: block !important;
        padding: 20px 0;
        width: 100%;
    }

    .menus ul li {
        padding: 0 35px !important;
        margin: 20px 0;
    }

    .menus ul li:first-child {
        margin-top: 0;
    }

    .menus ul li a {
        font-size: 18px !important;
    }

    .menus ul li a:after {
        display: none;
    }

    .menus .social-media,
    .menus h6 {
        display: block !important;
    }

    .menus h6 {
        padding: 0 35px;
        font-size: 12px;
        text-transform: uppercase;
        line-height: 16px;
        letter-spacing: 1.2px;
        color: #94a3b8;
    }

    .menus .social-media {
        position: absolute;
        bottom: 15%;
    }

    .hamberger-menu-icon {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .contact-form {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 30px;
    }

    p {
        font-size: 15px;
    }

    .contact-form .fields {
        display: block;
    }
}
