/* Page Not Found */
.page-not-found {
    width: 100%;
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* Page Top */
.page-top-section {
    background-color: var(--prcolor);
    color: var(--secolor);
    width: 100%;
    min-height: 250px;
}

.page-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-wrap: wrap;
    gap: 15px;
}

.page-top h2 {
    font-size: 1.5rem;
}

.page-bread-crimbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-wrap: wrap;
    gap: 5px;
}

.page-bread-crimbs span {
    color: var(--trcolor);
}

.page-bread-crimbs a {
    color: var(--secolor);
    text-decoration: none;
}

/* Home */
.hero-section {
    padding: 35px 0px;
    background-color: var(--prcolor);
    margin-bottom: 0px;
}

.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-left {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: center;
}

.hero-left h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secolor);
}

.hero-left p {
    color: var(--secolor);
    font-size: 1rem;
}

.hero-btns {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    text-align: center;
    flex-wrap: wrap;
}

.video-box {
    width: 100%;
    height: 100vh;
    background-color: #00000099;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 35px;
}

.video-close {
    padding: 5px 15px;
    width: fit-content;
    height: 40px;
    background-color: var(--secolor);
    color: var(--prcolor);
    border: 2px solid var(--prcolor);
    outline: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 100%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.video-close:hover {
    background-color: var(--trcolor);
    color: var(--secolor);
}

.hero-video {
    width: 100%;
    max-height: 80vh;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

/* Brands */
.brands-section {
    min-height: auto;
    height: 100px;
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 0px;
}

.brands {
    width: 100%;
    display: flex;
    gap: 15px;
    animation: 40s slide infinite linear;
    -webkit-animation: 40s slide infinite linear;
}

.company-logo {
    width: 200px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


/* Services */
.services-heading-section {
    background-color: #eeeeee;
}

.services-section {
    background-color: #eeeeee;
    margin: 0px;
    padding: 15px 0px;
}

/* .services-box {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 35px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 35px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.service-icon {
    width: 100%;
    height: auto;
    display: flex;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.service-description {
    text-align: left;
}

.service-footer {
    margin-top: 15px;
} */

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
}

.service {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.icon-title {
    width: 100%;
    display: flex;
    gap: 35px;
}

.service-icon {
    background-color: #ffffff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.service-title {
    font-size: 1.5rem;
    text-decoration: none;
    width: 100%;
    color: #555;
}

.service-title:hover {
    color: var(--prcolor);
}

.filling-line {
    width: 100%;
    height: 2px;
    background-color: #555;
}

.inner-line {
    position: relative;
    width: 0%;
    background-color: var(--prcolor);
    height: 5px;
    z-index: 1;
}

.inner-line.active {
    width: 0%;
    animation: fillingline 0.8s ease-in-out forwards;
    -webkit-animation: fillingline 0.8s ease-in-out forwards;
}

.inner-line.notactive {
    width: 100%;
    animation: removeingline 0.4s ease-in-out forwards;
    -webkit-animation: removeingline 0.4s ease-in-out forwards;
}

@keyframes removeingline {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

@keyframes fillingline {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Infographics */
.about-box {
    width: 100%;
    display: flex;
    gap: 35px;
}

.about-left {
    width: 35%;
    color: var(--trcolor);
    display: block;
    gap: 15px;
}

.about-title {
    font-size: 1.3rem;
}

.about-button {
    margin-top: 35px;
}

.about-right {
    width: 65%;
    padding: 0px 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
}

.about-row {
    display: flex;
    gap: 15px;
}

.about-row-right {
    width: 100%;
    display: block;

}

.about-icon {
    display: flex;
    width: 80px;
    height: auto;
}

.about-row-title {
    font-size: 1.1rem;
}

.about-line {
    font-size: 1rem;
}

/* Statics */
.statics-section {
    min-height: auto;
    padding: 0px;
    margin: 0px;
    background-color: var(--prcolor);
}

.statics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 35px;
    padding: 35px;
}

.statics-box {
    background-color: white;
    color: var(--prcolor);
    max-width: 400px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--secolor);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
}

.statics-box:hover {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
}

.statics-num {
    padding: 35px 5px;
    font-size: 1.7rem;
    color: var(--trcolor);
}

.statics-title {
    padding: 35px 5px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--trcolor);
}

/* Projects */
.project-filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    padding: 35px;
}

.project-filter-btn {
    background-color: #eeeeee;
    color: var(--trcolor);
    width: fit-content;
    height: 40px;
    padding: 5px 15px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.project-filter-btn.active,
.project-filter-btn:hover {
    background-color: var(--prcolor);
    color: var(--secolor);
}

.projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px;
}

.project-card {
    padding-bottom: 35px;
    transition: all 1s linear;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -ms-transition: all 1s linear;
    -o-transition: all 1s linear;
}

.project-card:hover {
    background-color: #fafafa;
}

.project-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.project-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* CEO */
.ceo-section {
    background-color: #eeeeee;
}

.ceo-box {
    width: 100%;
    display: flex;
    gap: 35px;
    padding: 15px;
}

.ceo-image-box img {
    width: 400px;
    background-color: var(--prcolor);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.ceo-details {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ceo-heading {
    font-size: 1.7rem;
}

.ceo-social-media {
    margin-top: 15px;
}

.clients-box {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 35px;
    overflow: hidden;
}

.testimonial {
    background-color: #eeeeee;
    max-width: 600px;
    padding: 35px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.testimonial i {
    font-size: 1.5rem;
    padding: 5px;
}

.testimonial-footer {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.testimonial-name-position h4 {
    font-size: 1.1rem;
}

/* ==================================================== */
/* Privacy Page */
.privacy-content {
    line-height: 2;
}

.privacy-content p {
    margin-bottom: 11px;
}

.privacies {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.privacy-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    margin-top: 35px;
}

.privacy-card {
    max-width: 300px;
    background-color: #fafafa;
    display: flex;
    padding: 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.privacy-card-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* SinupPage */
.form-box {
    width: 100%;
}

.user-forms-box {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
}

.form {
    background-color: var(--secolor);
    color: var(--trcolor);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.user-forms-box .form{
    width: 400px;
    height: auto;
    padding: 35px;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.form-heading {
    text-align: center;
    color: var(--prcolor);
}

.input-box,
.check-box {
    display: flex;
    flex-direction: column;
}

.input-box input,
.verification-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    height: 35px;
    font-size: 100%;
    padding: 8px;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.input-box textarea {
    height: auto;
}

.verification-box {
    display: flex;
    justify-content: space-between;
}

.verification-box input {
    width: 35px;
    text-align: center;
}

.check-box {
    text-align: left;
    justify-content: left;
}

.check-box input {
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid lightgray;
    cursor: pointer;
}

.form-action-button {
    width: 100%;
    height: 35px;
    background-color: var(--prcolor);
    color: var(--secolor);
    font-size: 100%;
    border: 1px solid lightgray;
    border-radius: 5px;
    cursor: pointer;
}

.login-link {
    margin-top: 15px;
    text-align: center;
}

.login-link a {
    color: var(--prcolor);
}

/* Profile Page */
.profile-section {
    height: auto;
    display: block;
}

.profile-section .container {
    width: 100%;
    display: block;
}

.profile-banner-box {
    background-color: var(--prcolor);
    color: var(--secolor);
    width: 100%;
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-banner-box {
    color: var(--trcolor);
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    position: absolute;
    margin-top: 200px;
    z-index: 1;
}

.inner-banner-box .user-profile-image {
    z-index: 1;
    background-color: var(--secolor);
    padding: 5px;
    width: 200px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.profile-image-box {
    display: flex;
    flex-direction: column;
}

.profile-name-position {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 70px;
}

.profile-name {
    font-size: 1.7rem;
}

.profile-details {
    margin-top: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.profile-detail-box {
    width: 400px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-edit-option {
    width: 100%;
    display: flex;
    gap: 15px;
}

.input-field {
    width: 100%;
    overflow: hidden;
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.profile-edit-btn {
    width: 40px;
    height: 40px;
    font-size: 100%;
    background: none;
    color: var(--prcolor);
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.input-field:focus,
.input-field:focus+.profile-edit-btn,
.profile-edit-btn:hover {
    background-color: #eeeeee;
}

#image-upload-button {
    cursor: pointer;
    border: none;
    outline: none;
    width: 100%;
    height: 40px;
    padding: 5px 15px;
    border-radius: 15px;
    background-color: #eeeeee;
    color: var(--prcolor);
    font-size: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

#progress-bar-box {
    width: 100%;
    height: 5px;
    margin-top: 5px;
    background-color: #eeeeee;
    border-radius: 30px;
    display: none;
}

#progress-bar-fill {
    background-color: var(--prcolor);
    width: 0%;
    height: 5px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.profile-action-btns {
    display: flex;
    justify-content: space-between;
    transition: all 0.4s linear;
    align-items: center;
    animation: acb 1s 1 ease-in-out forwards;
    -webkit-animation: acb 1s 1 ease-in-out forwards;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
}

/* About Page */
.team-box {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.team-box .ceo-box {
    width: 300px;
    display: flex;
    flex-direction: column;
}

.team-box .ceo-box .ceo-image-box img {
    width: 100%;
    background-color: var(--prcolor);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.team-box .ceo-box .ceo-details .ceo-heading {
    font-size: 1.3rem;
}

/* Contact Page */
.contact-boxes {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
}

.contact-box {
    width: auto;
    background-color: #eeeeee;
    color: var(--trcolor);
    padding: 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.contact-icon-box {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon-box p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: var(--prcolor);
    color: var(--secolor);
    font-size: 2.5rem;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.contact-num {
    width: 100%;
    padding: 15px;
    text-align: center;
}

.contact-form {
    width: 100%;
    display: flex;
}

.contact-form-image-box {
    width: 60%;
    object-fit: cover;
}

.contact-form-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0px 0px 15px;
    -webkit-border-radius: 15px 0px 0px 15px;
    -moz-border-radius: 15px 0px 0px 15px;
    -ms-border-radius: 15px 0px 0px 15px;
    -o-border-radius: 15px 0px 0px 15px;
}

.contact-form .form-box {
    background-color: #eeeeee;
    width: 40%;
    padding: 0px;
    border-radius: 0px 15px 15px 0px;
    -webkit-border-radius: 0px 15px 15px 0px;
    -moz-border-radius: 0px 15px 15px 0px;
    -ms-border-radius: 0px 15px 15px 0px;
    -o-border-radius: 0px 15px 15px 0px;
}

#profile-save-btn {
    display: none;
}

#profile-cancel-btn {
    display: none;
    background-color: #eeeeee;
    color: var(--trcolor);
}

@media screen and (max-width:1100px) {
    .services-box {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media screen and (max-width:1100px) {
    .statics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:1000px) {
    .about-box {
        flex-direction: column-reverse;
    }

    .about-left,
    .about-right {
        width: 100%;
        padding: 0px;
    }
}

@media screen and (max-width:900px) {
    .projects {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:800px) {
    .services-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .services {
        grid-template-columns: repeat(1, 1fr);
    }

    .ceo-box {
        flex-direction: column;
        justify-content: center;
    }

    .ceo-image-box img {
        width: 100%;
    }

    /* About Page */
    .team-box .ceo-box:nth-child(even) {
        flex-direction: column;
    }

    /* Contact */
    .contact-form-image-box {
        display: none;
    }

    .contact-section-2 {
        background-color: #eeeeee;
    }

    .contact-form .form-box {
        width: 100%;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }
}

@media screen and (max-width:700px) {
    .services-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-right {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width:600px) {

    .hero-section,
    .hero-section .container {
        width: 100%;
        height: auto;
        display: block;
        margin: 0px;
        padding: 0px;
    }

    .hero-left {
        display: block;
        text-align: center;
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .services-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .projects {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Profile Page */
    .inner-banner-box {
        flex-direction: column;
        margin: 0px;
        margin-top: 100px;
        gap: 0px;
        padding: 35px;
    }

    .profile-name-position {
        margin: 0px;
    }

    .profile-detail-box {
        width: 100%;
        padding: 0px 35px;
    }

    /* Contact */
    .contact-boxes {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width:500px) {
    .services-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .statics {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width:400px) {
    .icon-title {
        flex-direction: column;
    }

    .service-icon {
        width: 100%;
    }
}