﻿/* Montek Creative Agency Business HTML-5 Template */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header
5. Banner One
6. Services One
7. Gallery One
8. journal One
9. Testimonial One
10. Counter One
11. Awards One
12. Main Footer
13. Page Title
14. Team One
15. journal Detail
16. Work One
17. Work Detail
18. Contact Info
19. Contact Form

====================================================================
	Attachment Css Files
====================================================================

***/

@import url('global.css');
@import url('header.css');
@import url('footer.css');
@import url('animate.css');
@import url('swiper.min.css');
@import url('font-awesome.css');
@import url('custom-animate.css');
@import url('odometer-theme-default.css');

/*** 

====================================================================
	Banner One
====================================================================

***/

.banner-one {
    position: relative;
    padding: 280px 0px 80px;
    background-size: cover;
}

    .banner-one:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        opacity: 0.4;
        background-color: #000000;
    }

.banner-one_content {
    position: relative;
    z-index: 2;
}

.banner-one_content-inner {
    position: relative;
}

.banner-one_heading {
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: var(--white-color);
    text-transform: uppercase;
    opacity: 0.3;
}

.banner-one_text {
    position: relative;
    font-size: 30px;
    line-height: 40px;
    padding-top: 20px;
    padding-right: 180px;
    color: var(--white-color);
    border-top: 1px solid #540045;
}

.banner-one_text-two {
    position: relative;
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 20px;
    padding-right: 180px;
    color: var(--white-color);
    border-bottom: 1px solid var(--white-color);
}

.banner-one .down-box {
    position: absolute;
    left: 47%;
    bottom: 65px;
    z-index: 10;
    width: 125px;
    height: 125px;
    cursor: pointer;
    -webkit-animation: icon-bounce 0.8s ease-out infinite;
    animation: icon-bounce 0.8s ease-out infinite;
}

/*** 

====================================================================
	Services One
====================================================================

***/

.services-one {
    position: relative;
    padding: 100px 0px 70px;
    background: var(--main-color);
    background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
}

.service-block_one {
    position: relative;
    margin-bottom: 30px;
}

.service-block_one-inner {
    position: relative;
    padding: 35px 40px;
    border: 1px solid rgba(var(--white-color-rgb), 0.20);
}

    .service-block_one-inner:before {
        position: absolute;
        content: '';
        left: -1px;
        top: -1px;
        right: -1px;
        bottom: -1px;
        opacity: 0;
        transform: scale(1, 0.2);
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        background-color: var(--color-three);
    }

    .service-block_one-inner:hover::before {
        opacity: 1;
        transform: scale(1, 1);
    }

.service-block_one-heading {
    position: relative;
    font-weight: 400;
    color: #fff;
}

    .service-block_one-heading a {
        position: relative;
        color: var(--white-color);
    }

.service-block_one-icon {
    position: relative;
}

/*** 

====================================================================
	Gallery One
====================================================================

***/

.gallery-one {
    position: relative;
    padding: 100px 0px 70px;
    background-color: var(--color-four);
}

.gallery-block_one {
    position: relative;
    margin-bottom: 30px;
}

.gallery-block_one-inner {
    position: relative;
}

.gallery-block_one-content {
    position: relative;
    padding: 25px 25px;
    border: 1px solid rgba(var(--white-color-rgb), 0.20);
}

    .gallery-block_one-content:before {
        position: absolute;
        content: '';
        left: -1px;
        top: -1px;
        right: -1px;
        bottom: -1px;
        opacity: 0;
        transform: scale(0.2, 1);
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        background: var(--main-color);
        background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
    }

.gallery-block_one-inner:hover .gallery-block_one-content:before {
    opacity: 1;
    transform: scale(1, 1);
}

.gallery-block_one-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.gallery-block_one-inner:hover .gallery-block_one-image:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

.gallery-block_one-image:before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 99;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .7) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .7)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .7) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.gallery-block_one-image img {
    position: relative;
    width: 100%;
    display: block;
}

.gallery-block_one-title {
    position: relative;
    font-size: 18px;
    text-transform: capitalize;
    color: rgba(var(--white-color-rgb), 0.50);
}

.gallery-block_one-heading {
    position: relative;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
}

    .gallery-block_one-heading a {
        position: relative;
        color: #333333;
    }

        .gallery-block_one-heading a:hover {
            color: #333333;
        }

.service-block_one-more {
    position: relative;
    margin-left: 25px;
}

    .service-block_one-more .view-more {
        position: relative;
        font-size: 16px;
        line-height: 1em;
        display: inline-block;
        padding: 9px 45px 9px 10px;
        color: var(--color-four);
        text-transform: uppercase;
        background-color: var(--white-color);
    }

        .service-block_one-more .view-more i {
            position: absolute;
            right: 1px;
            top: 1px;
            bottom: 1px;
            width: 35px;
            font-size: 18px;
            line-height: 33px;
            color: var(--white-color);
            background-color: var(--color-four);
        }

/*** 

====================================================================
	journal One
====================================================================

***/

.journal-one {
    position: relative;
    padding: 100px 0px 70px;
    background-attachment: fixed;
    background-size: cover;
}

    .journal-one:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        opacity: 0.70;
        background-color: var(--color-four);
    }

    .journal-one .journal-block_one {
        width: 20%;
        float: left;
        padding: 0px 15px;
    }

.journal-block_one {
    position: relative;
    margin-bottom: 30px;
}

.journal-block_one-inner {
    position: relative;
    padding: 25px 25px;
    background-color: rgba(var(--black-color-rgb), 0.50);
}

    .journal-block_one-inner:before {
        position: absolute;
        content: '';
        left: -1px;
        top: -1px;
        right: -1px;
        bottom: -1px;
        opacity: 0;
        transform: scale(0.2, 1);
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        background: var(--main-color);
        background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
    }

    .journal-block_one-inner:hover::before {
        opacity: 1;
        transform: scale(1, 1);
    }

.journal-block_one-title {
    position: relative;
    font-size: 14px;
    padding: 5px 15px;
    text-transform: capitalize;
    color: var(--white-color);
    display: inline-block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid rgba(var(--white-color-rgb), 0.50);
}

.journal-block_one-inner:hover .journal-block_one-title {
    color: var(--white-color);
    border-color: var(--color-four);
    background-color: var(--color-four);
}

.journal-block_one-heading {
    position: relative;
    font-weight: 400;
    margin-top: 18px;
    max-width: 220px;
    margin-bottom: 110px;
}

    .journal-block_one-heading a {
        position: relative;
        color: var(--white-color);
    }

.journal-block_one-arrow {
    position: absolute;
    right: 10px;
    bottom: 15px;
    line-height: 1em;
    font-size: 30px;
    display: inline-block;
    color: var(--white-color);
    transform: rotate(45deg);
}

    .journal-block_one-arrow:hover {
        color: var(--color-four);
    }

/*** 

====================================================================
	Testimonial One
====================================================================

***/

.testimonial-one {
    position: relative;
    padding: 100px 0px 70px;
    background-color: var(--color-four);
}

    .testimonial-one.style-two {
        padding-top: 0px;
        background: none;
    }

.testimonial-block_one {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-block_one-inner {
    position: relative;
}

.testimonial-block_one-content {
    position: relative;
    padding: 25px 25px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

    .testimonial-block_one-content:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        opacity: 0;
        background-color: var(--white-color);
        -webkit-transition: all 900ms ease;
        -ms-transition: all 900ms ease;
        -o-transition: all 900ms ease;
        transition: all 900ms ease;
        -webkit-transform: perspective(400px) rotateX(-90deg);
        -moz-transform: perspective(400px) rotateX(-90deg);
        -ms-transform: perspective(400px) rotateX(-90deg);
        -o-transform: perspective(400px) rotateX(-90deg);
        transform: perspective(400px) rotateX(-90deg);
        -webkit-transform-origin: top;
        -moz-transform-origin: top;
        -ms-transform-origin: top;
        -o-transform-origin: top;
        transform-origin: top;
        -ms-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

.testimonial-block_one-inner:hover .testimonial-block_one-content:before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -moz-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    -o-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.testimonial-block_one-author {
    position: relative;
    width: 70px;
    height: 70px;
    display: inline-block;
}

.testimonial-block_one-name {
    position: relative;
    font-weight: 500;
    margin-top: 25px;
    color: var(--white-color);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-block_one-inner:hover .testimonial-block_one-designation,
.testimonial-block_one-inner:hover .testimonial-block_one-name {
    color: var(--color-four);
}

.testimonial-block_one-designation {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    margin-top: 5px;
    opacity: 0.30;
    color: var(--white-color);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-block_one-number {
    position: relative;
    font-weight: 700;
    font-size: 40px;
    margin-top: 30px;
    opacity: 0.10;
    text-align: right;
    color: var(--white-color);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-block_one-inner:hover .testimonial-block_one-number {
    opacity: 1;
    color: var(--color-four);
}

.testimonial-block_one-lower {
    position: relative;
    margin-left: 30px;
    margin-top: 25px;
    font-size: 18px;
    line-height: 28px;
    padding-left: 70px;
    color: var(--white-color);
}

    .testimonial-block_one-lower .quote_icon {
        position: absolute;
        left: 0px;
        top: 6px;
        line-height: 1em;
    }

/*** 

====================================================================
	stats One
====================================================================

***/

.stats-one {
    position: relative;
    padding: 100px 0px 100px;
    background-attachment: fixed;
    background-size: cover;
}

    .stats-one.style-two::before {
        display: none;
    }

    .stats-one:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        opacity: 0;
        background-color: transparent;
    }

    .stats-one .inner-container {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(var(--white-color-rgb), 1);
        border-bottom: 0px;
    }

    .stats-one .counter-block_one {
        float: left;
        padding: 0px 0px;
    }

.counter-block_one {
    position: relative;
}

.counter-block_one-inner {
    position: relative;
    padding: 35px 55px;
    border-right: 1px solid rgba(var(--white-color-rgb), 1);
    border-bottom: 1px solid rgba(var(--white-color-rgb), 1);
}

    .counter-block_one-inner:before {
        position: absolute;
        content: '';
        right: 20px;
        top: 20px;
        width: 15px;
        height: 15px;
        border-radius: 50px;
        background: var(--main-color);
        background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
    }

.counter-block_one-counter {
    position: relative;
    font-size: 75px;
    font-weight: 700;
    line-height: 1em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.counter-block_one-text {
    position: relative;
    font-size: 20px;
    margin-top: 0px;
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.stats-one_contact-column {
    padding: 0px 0px;
    float: left;
}

.stats-one .stats-one_contact-column {
    position: relative;
}

.stats-one_contact-inner {
    position: relative;
    padding: 35px 35px;
    background: var(--main-color);
    background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
}

.stats-one_contact-content {
    position: relative;
    padding: 19px 30px 19px 80px;
    background-color: var(--color-four);
}

.stats-one_contact-icon {
    position: absolute;
    left: 25px;
    top: 40px;
    font-size: 34px;
    line-height: 1em;
    color: var(--white-color);
}

.stats-one_contact-content h3 {
    position: relative;
    font-size: 30px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: uppercase;
}

.stats-one_contact-content .text {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: capitalize;
}

/*** 

====================================================================
	Awards One
====================================================================

***/

.awards-one {
    position: relative;
    padding: 100px 0px 100px;
    background-color: var(--color-four);
}

    .awards-one.style-two {
        padding-top: 0px;
        background: none;
    }

.awards-block_one {
    position: relative;
    margin-bottom: 10px;
}

.awards-block_one-inner {
    position: relative;
    padding: 10px 10px;
    min-height: 122px;
    border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

    .awards-block_one-inner:before {
        position: absolute;
        content: '';
        left: -1px;
        top: -1px;
        right: -1px;
        bottom: -1px;
        opacity: 0;
        transform: scale(1, 0.2);
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        background: var(--main-color);
        background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
    }

    .awards-block_one-inner:hover::before {
        opacity: 1;
        transform: scale(1, 1);
    }

.awards-block_one-content {
    position: relative;
    padding-top: 25px;
    padding-left: 125px;
}

.awards-block_one-number {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    font-size: 40px;
    line-height: 98px;
    text-align: center;
    display: inline-block;
    color: var(--white-color);
    background-color: var(--black-color);
    border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.awards-block_one-title {
    position: relative;
    font-weight: 400;
    color: var(--white-color);
    text-transform: uppercase;
}

    .awards-block_one-title span {
        position: relative;
        font-size: 17px;
        top: -5px;
        opacity: 0;
        margin-left: 10px;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.awards-block_one-inner:hover .awards-block_one-title span {
    opacity: 1;
}

.awards-block_one-arrow {
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 1;
    font-size: 44px;
    line-height: 1em;
    color: var(--white-color);
}

.awards-block_one-link {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 10;
    display: block;
}

/*** 

====================================================================
	Page Title
====================================================================

***/

/* Page Title Section with Background */
.page-title {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-title .auto-container {
    position: relative;
    z-index: 2;
}

.page-title_heading {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    /*text-transform: uppercase;*/
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Page Title */
@media (max-width: 991px) {
    .page-title {
        padding: 100px 0;
    }

    .page-title_heading {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .page-title {
        padding: 80px 0;
    }

    .page-title_heading {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

@media (max-width: 575px) {
    .page-title {
        padding: 60px 0;
    }

    .page-title_heading {
        font-size: 24px;
    }
}

/*** 

====================================================================
	Team One
====================================================================

***/

.team-one {
    position: relative;
    padding: 0px 0px 0px;
}

    .team-one .title-box {
        position: relative;
    }

        .team-one .title-box h2 {
            position: relative;
            font-size: 40px;
            font-weight: 400;
            line-height: 50px;
            max-width: 670px;
            margin-bottom: 40px;
            color: var(--white-color);
        }

.team-block_one {
    position: relative;
    margin-bottom: 40px;
}

.team-block_one-inner {
    position: relative;
    padding-left: 25px;
    padding-bottom: 40px;
}

    .team-block_one-inner:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 45px;
        right: 0px;
        bottom: 0px;
        border: 1px solid rgba(var(--white-color-rgb), 0.10);
    }

.team-block_one-socials {
    position: relative;
    width: 172px;
    margin-top: 70px;
    display: inline-block;
    padding: 10px 9px 4px;
    background-color: var(--black-color);
    border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

    .team-block_one-socials a {
        position: relative;
        width: 70px;
        height: 40px;
        margin: 0px 2px 5px;
        line-height: 38px;
        text-align: center;
        display: inline-block;
        border: 1px solid rgba(var(--white-color-rgb), 0.10);
    }

        .team-block_one-socials a img {
            position: relative;
            width: 24px;
            top: -1px;
        }

        .team-block_one-socials a:hover {
        }

.team-block_one-image {
    position: absolute;
    right: 30px;
    bottom: 0px;
}

.team-block_one-heading {
    position: relative;
    font-weight: 500;
    margin-top: 35px;
}

    .team-block_one-heading a {
        position: relative;
        color: var(--white-color);
    }

.team-block_one-designation {
    position: relative;
    font-size: 16px;
    margin-top: 0px;
    opacity: 0.50;
    color: var(--white-color);
}

/*** 

====================================================================
	Contact One
====================================================================

***/

.contact-one {
    position: relative;
    padding: 30px 0px 70px;
}

.contact-one_info-column {
    position: relative;
    margin-bottom: 30px;
}

.contact-one_info-outer {
    position: relative;
}

.contact-one_heading {
    position: relative;
    font-size: 40px;
    font-weight: 400;
    color: var(--white-color);
}

.contact-one_list {
    position: relative;
    margin-top: 25px;
    padding: 20px 0px;
    border-top: 1px solid rgba(var(--white-color-rgb), 0.50);
    border-bottom: 1px solid rgba(var(--white-color-rgb), 0.50);
}

    .contact-one_list li {
        position: relative;
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 20px;
        color: var(--white-color);
    }

        .contact-one_list li a {
            position: relative;
            color: var(--white-color);
        }

        .contact-one_list li:nth-child(2) {
            margin-bottom: 0px;
        }

        .contact-one_list li:last-child {
            margin-bottom: 0px;
        }

.contact-one_socials {
    position: relative;
    margin-top: 25px;
}

    .contact-one_socials li {
        position: relative;
        margin-right: 10px;
        display: inline-block;
    }

        .contact-one_socials li a {
            position: relative;
            font-size: 18px;
            font-weight: 400;
            color: var(--white-color);
        }

.contact-one_form-column {
    position: relative;
    margin-bottom: 30px;
}

.contact-one_form-outer {
    position: relative;
}

    .contact-one_form-outer h3 {
        position: relative;
        font-weight: 400;
        margin-bottom: 20px;
        color: var(--white-color);
    }


/*** 

====================================================================
	Contact Form
====================================================================

***/

.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

    .contact-form .form-group:last-child {
        margin-bottom: 0px;
    }

    .contact-form .form-group input[type="text"],
    .contact-form .form-group input[type="password"],
    .contact-form .form-group input[type="tel"],
    .contact-form .form-group input[type="email"],
    .contact-form .form-group select {
        position: relative;
        display: block;
        width: 100%;
        line-height: 28px;
        padding: 10px 20px;
        height: 60px;
        border-radius: 0px;
        font-weight: 400;
        font-size: 20px;
        color: var(--white-color);
        -webkit-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease;
        background: none;
        border: 1px solid rgba(var(--white-color-rgb), 0.10);
    }

    .contact-form .form-group textarea::-webkit-input-placeholder,
    .contact-form .form-group input::-webkit-input-placeholder {
        color: var(--white-color);
    }

    .contact-form .form-group input[type="text"]:focus,
    .contact-form .form-group input[type="password"]:focus,
    .contact-form .form-group input[type="tel"]:focus,
    .contact-form .form-group input[type="email"]:focus,
    .contact-form .form-group select:focus,
    .contact-form .form-group textarea:focus {
        border-color: var(--white-color);
    }

    .contact-form .form-group textarea {
        position: relative;
        display: block;
        width: 100%;
        font-size: 20px;
        line-height: 24px;
        padding: 15px 20px 25px;
        color: var(--white-color);
        height: 180px;
        resize: none;
        border-radius: 0px;
        font-weight: 400;
        -webkit-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease;
        background: none;
        border: 1px solid rgba(var(--white-color-rgb), 0.10);
    }

    .contact-form .form-group button {
        margin-top: 0px;
        position: relative;
        padding: 17px 40px;
        border-radius: 0px;
        font-weight: 400;
        font-size: 20px;
        color: var(--white-color);
        display: inline-block;
        text-transform: uppercase;
        background: var(--main-color);
        background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
    }

        .contact-form .form-group button:hover {
            background-color: var(--color-two);
        }

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: #ff0000 !important;
}

.contact-form label.error {
    display: block;
    line-height: 24px;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: uppercase;
    font-size: 12px;
    color: #ff0000;
    font-weight: 500;
}

/*** 

====================================================================
	journal One
====================================================================

***/

.journal-two {
    position: relative;
    padding: 30px 0px 70px;
}

    .journal-two .journal-block_one {
        width: 20%;
        float: left;
        padding: 0px 15px;
    }

/*** 

====================================================================
	journal Detail
====================================================================

***/

.journal-detail {
    position: relative;
    padding: 180px 0px 50px;
}

    .journal-detail .column {
        position: relative;
        margin-bottom: 30px;
    }

.journal-detail_image {
    position: relative;
    padding-right: 30px;
    margin-bottom: 30px;
}

    .journal-detail_image img {
        position: relative;
        width: 100%;
        display: block;
    }

.journal-detail_title {
    position: relative;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.journal-detail p {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    color: var(--white-color);
}

/*** 

====================================================================
	Single Work
====================================================================

***/

.single-work {
    position: relative;
    padding: 180px 0px 50px;
}

    .single-work .column {
        position: relative;
        margin-bottom: 30px;
    }

.single-work_image {
    position: relative;
    padding-right: 30px;
    margin-bottom: 30px;
}

    .single-work_image img {
        position: relative;
        width: 100%;
        display: block;
    }

.single-work_title {
    position: relative;
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
    margin-bottom: 15px;
    color: var(--white-color);
    text-transform: uppercase;
}

.single-work p {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.single-work_list {
    position: relative;
    margin-top: 30px;
    border: 1px solid rgba(var(--white-color-rgb), 1);
    border-bottom: 0px;
}

    .single-work_list li {
        position: relative;
        padding: 20px 20px;
        font-size: 26px;
        font-weight: 500;
        color: var(--white-color);
        text-transform: uppercase;
        border-bottom: 1px solid rgba(var(--white-color-rgb), 1);
    }

        .single-work_list li span {
            position: relative;
            display: block;
            font-size: 18px;
            margin-top: 6px;
            text-transform: capitalize;
        }

/*** 

====================================================================
	Work One
====================================================================

***/

.work-one {
    position: relative;
    padding: 40px 0px 100px;
}




.robot {
    position: absolute !important;
    bottom: 0;
    width: 100%;
    z-index: 3;
    mix-blend-mode: exclusion;
}

.single-work_list a {
    color: #fff;
}

    .single-work_list a:hover {
        color: #ba024a;
    }


a.backtop {
    background: transparent;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border: 1px solid #770147;
    font-size: 24px;
    color: #930148;
    transition: background 0.5s ease, color 0.5s ease;
}

    a.backtop:hover {
        background: linear-gradient(45deg, #b9074c, #540045);
        color: #fff;
    }

.service-block_one-more {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-block_one-inner:hover .service-block_one-more {
    opacity: 1;
    transform: translateY(0);
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.team-block_one {
    transition: opacity 0.3s, filter 0.3s;
}

.team-block_one-socials a {
    transition: opacity 0.3s;
    opacity: 0;
}

.team-block_one:hover .team-block_one-socials a {
    opacity: 1;
}

.team-block_one:hover {
    opacity: 1;
    filter: blur(0);
    z-index: 1;
    /* Bring the hovered block to the front */
}

/* General sibling combinators to blur and fade out other team members */
.row:hover .team-block_one:not(:hover) {
    opacity: 0.5;
    filter: blur(2px);
}

.team-block_one {
    transition: transform 0.7s ease;
}

    .team-block_one:hover {
        transform: translateY(-10px);
    }

.team-block_one-socials a {
    transition: transform 0.7s ease, opacity 0.7s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-block_one:hover .team-block_one-socials a {
    transform: translateY(0);
    opacity: 1;
}

/* Define keyframes for the animated gradient */
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Base styles for social icons */
.team-block_one-socials a {
    position: relative;
    background-size: 200% 200%;
    transition: transform 0.3s ease-in-out;
}

    /* Apply animated gradient on hover */
    .team-block_one-socials a:hover {
        animation: gradient-animation 2s ease infinite;
        transform: scale(1.1);
        background: var(--main-color);
        background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
    }

    .team-block_one-socials a:hover {
        animation: gradient-animation 2s ease infinite;
        transform: scale(1.1);
        background: var(--main-color);
        background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
        transition: background 1s ease;
        /* Slower transition for the background */
    }

.team-block_one-socials a {
    position: relative;
    background-size: 200% 200%;
}

    /* Create a pseudo-element for the gradient background */
    .team-block_one-socials a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
        z-index: -1;
        opacity: 0;
        /* Initially hidden */
        transition: opacity 0.5s ease;
        /* Smooth transition for opacity */
    }

    /* Show the pseudo-element on hover */
    .team-block_one-socials a:hover::before {
        opacity: 1;
        /* Show the gradient with transition */
    }

    /* Apply other styles */
    .team-block_one-socials a:hover {
        animation: gradient-animation 2s ease infinite;
        transform: scale(1.1);
    }

/* Customize scrollbar track */
::-webkit-scrollbar {
    width: 10px;
    /* Width of the scrollbar */
    background-color: transparent;
    /* Background color of the scrollbar track */
}

/* Customize scrollbar thumb */
::-webkit-scrollbar-thumb {
    background: var(--main-color);
    background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
    /* Gradient for the scrollbar thumb */
    border-radius: 10px;
    /* Rounded corners of the scrollbar thumb */
    border: 2px solid transparent;
    /* Border of the scrollbar thumb */
}

    /* On hover, change thumb color */
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to top, var(--color-two) 0%, var(--main-color) 100%);
        /* Gradient for the scrollbar thumb on hover */
    }

    /* Customize scrollbar track when scrollbar is actively being scrolled */
    ::-webkit-scrollbar-thumb:active {
        background: linear-gradient(to top, var(--color-two) 0%, var(--main-color) 100%);
        /* Gradient for the scrollbar thumb when actively scrolling */
    }

/* Customize scrollbar corner */
::-webkit-scrollbar-corner {
    background-color: transparent;
    /* Background color of the scrollbar corner */
}

/* Add gradient to scrollbar track */
::-webkit-scrollbar-track {
    background: linear-gradient(to top, var(--color-three) 0%, var(--color-four) 100%) !important;
    /* Gradient for the scrollbar track */
}

html {
    scroll-behavior: smooth;
    /* Enable smooth scrolling behavior for the whole page */
}

/* Gallery One Modern News Cards */
.gallery-block_one {
    position: relative;
    margin-bottom: 40px;
}

.gallery-block_one-inner {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .gallery-block_one-inner:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        border-color: var(--main-color);
    }

.gallery-block_one-content {
    position: relative;
    padding: 0;
    border: none;
}

    .gallery-block_one-content:before {
        display: none;
    }

.gallery-block_one-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    height: 280px;
}

    .gallery-block_one-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.gallery-block_one-inner:hover .gallery-block_one-image img {
    transform: scale(1.08);
}

.gallery-block_one-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.gallery-block_one-category {
    background: var(--main-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
}

.gallery-block_one-body {
    padding: 30px;
}

.gallery-block_one-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.gallery-block_one-date {
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

.gallery-block_one-category-badge {
    background: rgba(var(--main-color-rgb), 0.15);
    color: var(--main-color);
    padding: 6px 14px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(var(--main-color-rgb), 0.3);
}

.gallery-block_one-heading {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
    text-transform: none;
}

    .gallery-block_one-heading a {
        color: #222;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .gallery-block_one-heading a:hover {
            color: var(--main-color);
        }

.gallery-block_one-excerpt {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.gallery-block_one-footer {
    border-top: 2px solid #eee;
    padding-top: 20px;
}

.gallery-block_one-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--main-color);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .gallery-block_one-link:hover {
        color: var(--color-two);
        transform: translateX(8px);
    }

    .gallery-block_one-link i {
        font-size: 14px;
        background: var(--main-color);
        color: #fff;
        padding: 8px;
        border-radius: 0;
        transition: all 0.3s ease;
    }

    .gallery-block_one-link:hover i {
        background: var(--color-two);
    }

/* Section Title Styles */
.sec-title {
    text-align: center;
    margin-bottom: 60px;
}

.sec-title_heading {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
   /* text-transform: uppercase;*/
    letter-spacing: 1px;
}

.sec-title_icon {
    margin-bottom: 20px;
}

    .sec-title_icon img {
        width: 70px;
        height: auto;
    }

.sec-title_text {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* Load More Button */
.theme-btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--main-color);
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(var(--main-color-rgb), 0.3);
    border: 2px solid var(--main-color);
}

    .theme-btn:hover {
        background: transparent;
        color: var(--main-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(var(--main-color-rgb), 0.4);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-block_one-heading {
        font-size: 20px;
    }

    .gallery-block_one-body {
        padding: 25px;
    }

    .gallery-block_one-image {
        height: 240px;
    }

    .sec-title_heading {
        font-size: 32px;
    }

    .gallery-block_one {
        margin-bottom: 30px;
    }
}

/* News Article Page Styles */
.news-header {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--color-two) 100%);
    color: #fff;
    text-align: center;
}

.news-header_content {
    max-width: 800px;
    margin: 0 auto;
}

.news-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.news-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 16px;
    font-weight: 600;
}

.news-date,
.news-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .news-date:before {
        content: '\f073';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }

    .news-author:before {
        content: '\f007';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }

/* News Content Section */
.news-content {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
}

.news-article {
    background: #fff;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.article-intro {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    border-left: 4px solid var(--main-color);
    padding-left: 20px;
}

/* Video Section */
.video-section {
    margin: 40px 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.video-caption {
    text-align: left;
    margin-top: 15px;
}

    .video-caption p {
        font-size: 14px;
        color: #666;
        font-weight: 500;
        font-style: italic;
    }

/* Article Content */
.article-content {
    margin-top: 40px;
}

    .article-content h3 {
        font-size: 24px;
        font-weight: 700;
        color: #222;
        margin: 30px 0 15px 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

        .article-content h3:first-child {
            margin-top: 0;
        }

    .article-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 20px;
    }

/* News Sidebar */
.news-sidebar {
    position: sticky;
    top: 30px;
}

.info-box,
.related-news {
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

    .info-box h4,
    .related-news h4 {
        font-size: 20px;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid var(--main-color);
        padding-bottom: 10px;
    }

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .info-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

        .info-list li:last-child {
            border-bottom: none;
        }

.info-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.info-value {
    font-weight: 700;
    color: var(--main-color);
    font-size: 14px;
}

/* Related News */
.related-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

    .related-item:last-child {
        border-bottom: none;
    }

    .related-item img {
        width: 80px;
        height: 60px;
        object-fit: cover;
        border-radius: 0;
    }

.related-content h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

    .related-content h5 a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .related-content h5 a:hover {
            color: var(--main-color);
        }

.related-date {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .news-title {
        font-size: 32px;
    }

    .news-article {
        padding: 30px;
    }

    .info-box,
    .related-news {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .news-header {
        padding: 60px 0 40px;
    }

    .news-title {
        font-size: 28px;
    }

    .news-meta {
        flex-direction: column;
        gap: 15px;
    }

    .news-article {
        padding: 25px;
    }

    .lead-text {
        font-size: 18px;
    }

    .article-content h3 {
        font-size: 20px;
    }
}

/* About Page Styles */
.about-content {
    position: relative;
    padding: 80px 0;
    background: #fff;
}

.about-main-content {
    padding-right: 30px;
}

.about-section {
    margin-bottom: 50px;
}

.about-section_title {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    position: relative;
}

    .about-section_title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--main-color);
    }

.about-section_content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.lead-paragraph {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    border-left: 4px solid var(--main-color);
    padding-left: 20px;
    margin-bottom: 25px;
}

/* About Features */
.about-features {
    margin-top: 40px;
}

.feature-item {
    margin-bottom: 30px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--main-color), var(--color-two));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

    .feature-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(var(--main-color-rgb), 0.3);
    }

    .feature-icon i {
        font-size: 32px;
        color: #fff;
    }

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
   /* text-transform: uppercase;*/
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* About Sidebar */
.about-sidebar {
    position: sticky;
    top: 30px;
}

.company-info,
.contact-cta {
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

    .company-info h4,
    .contact-cta h4 {
        font-size: 20px;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid var(--main-color);
        padding-bottom: 10px;
    }

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .info-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

        .info-list li:last-child {
            border-bottom: none;
        }

.info-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.info-value {
    font-weight: 700;
    color: var(--main-color);
    font-size: 14px;
}

.contact-cta p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Organisations Gallery */
.organisations-gallery {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    margin-top: 50px;
}

.gallery-item {
    margin-bottom: 30px;
}

.gallery-item_inner {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .gallery-item_inner:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

.gallery-item_image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .gallery-item_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.gallery-item_inner:hover .gallery-item_image img {
    transform: scale(1.05);
}

.gallery-item_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item_inner:hover .gallery-item_overlay {
    transform: translateY(0);
}

.gallery-item_content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-item_content p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Photo Gallery Section */
.photo-gallery {
    position: relative;
    padding: 80px 0;
    background: #fff;
}

.photo-grid {
    margin-top: 50px;
}

.photo-item {
    margin-bottom: 20px;
}

.photo-item_inner {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .photo-item_inner:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    }

    .photo-item_inner img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .photo-item_inner:hover img {
        transform: scale(1.05);
    }

/* Social Media Section */
.social-media-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: var(--main-color);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(var(--main-color-rgb), 0.3);
    }

/* Custom Column Class for 5 items */
.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-main-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-section_title {
        font-size: 30px;
    }

    .gallery-item_image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .about-content {
        padding: 60px 0;
    }

    .about-section_title {
        font-size: 26px;
    }

    .lead-paragraph {
        font-size: 16px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

        .feature-icon i {
            font-size: 24px;
        }

    .gallery-item_image {
        height: 180px;
    }

    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .photo-item_inner img {
        height: 150px;
    }
}

/* Homepage Styles */
.hero-banner {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
}

    .hero-banner:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .btn-outline:hover {
        background: #fff;
        color: var(--main-color);
    }

.robot-viewer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 2;
}

.scroll-indicator {
    position: relative;
    text-align: center;
    z-index: 2;
    margin: 0 auto;
    padding: 30px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .scroll-indicator a {
        color: #1e3a8a;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        padding: 20px;
        background: #ffffff;
        border: 3px solid #1e3a8a;
        border-radius: 50%;
        min-width: 100px;
        min-height: 100px;
        justify-content: center;
    }

    .scroll-indicator:hover a {
        transform: translateY(-8px);
        background: #1e3a8a;
        color: #ffffff;
        border-color: #1e3a8a;
    }

.scroll-text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1e3a8a;
    margin: 0;
}

.scroll-indicator img {
    width: 24px;
    height: auto;
    animation: bounce 2s infinite;
    margin: 0;
}

@keyframes bounce {

    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Services Section */
.services-section {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    margin-top: 50px;
}

.service-item {
    margin-bottom: 30px;
}

.service-item_inner {
    background: #fff;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

    .service-item_inner:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border-color: var(--main-color);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--main-color), var(--color-two));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-item_inner:hover .service-icon {
    transform: scale(1.1);
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .service-link:hover {
        color: var(--color-two);
        transform: translateX(5px);
    }

    .service-link i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .service-link:hover i {
        transform: translateX(3px);
    }

/* News Section */
.news-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
}

.news-grid {
    margin-top: 50px;
}

.news-item {
    margin-bottom: 30px;
}

.news-item_inner {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .news-item_inner:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border-color: var(--main-color);
    }

.news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.news-item_inner:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--main-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.news-content {
    padding: 25px;
}

.news-meta {
    margin-bottom: 15px;
}

.news-date {
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    text-transform: none;
}

    .news-title a {
        color: #222;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .news-title a:hover {
            color: var(--main-color);
        }

.news-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .news-link:hover {
        color: var(--color-two);
        transform: translateX(5px);
    }

    .news-link i {
        font-size: 12px;
        background: var(--main-color);
        color: #fff;
        padding: 6px;
        border-radius: 0;
        transition: all 0.3s ease;
    }

    .news-link:hover i {
        background: var(--color-two);
    }

/* Responsive Design for Homepage */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .robot-viewer {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 250px;
        height: 250px;
        margin: 30px auto 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-item_inner {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .robot-viewer {
        width: 200px;
        height: 200px;
    }

    .services-section,
    .news-section {
        padding: 60px 0;
    }

    .service-item_inner {
        padding: 25px;
    }

    .service-title {
        font-size: 20px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 100px 0;
    background: #fff;
}

/* Masonry Gallery Layout */
.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
    column-fill: balance;
}

.gallery-image-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #f8f9fa;
    min-height: 200px;
}

    .gallery-image-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .gallery-image-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: all 0.3s ease;
        opacity: 0;
        transform: scale(0.95);
    }

        .gallery-image-item img.loaded {
            opacity: 1;
            transform: scale(1);
        }

    /* Loading placeholder */
    .gallery-image-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        border: 3px solid #e9ecef;
        border-top: 3px solid #007bff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        transform: translate(-50%, -50%);
        opacity: 0.7;
    }

    .gallery-image-item img.loaded + .gallery-image-item::before,
    .gallery-image-item img.loaded ~ .gallery-image-item::before {
        display: none;
    }

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Masonry */
@media (max-width: 991px) {
    .masonry-gallery {
        column-count: 2;
        column-gap: 15px;
    }

    .gallery-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .masonry-gallery {
        column-count: 1;
        column-gap: 10px;
    }

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-image-item {
        margin-bottom: 15px;
        min-height: 150px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-info_outer {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 0;
    border-left: 4px solid #007bff;
    height: 100%;
}

.contact-info_heading {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-info_description {
    color: #2c2c2c;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-icon i {
        color: #fff;
        font-size: 20px;
    }

.contact-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-content p {
    color: #2c2c2c;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.contact-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-content a:hover {
        color: #0056b3;
    }

.social-links h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

    .social-list li a {
        width: 45px;
        height: 45px;
        background: #007bff;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .social-list li a:hover {
            background: #0056b3;
            transform: translateY(-3px);
        }

        .social-list li a i {
            font-size: 18px;
        }

/* Contact Form Styles */
.contact-form_outer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .contact-form_outer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #007bff, #00d4ff, #007bff);
        background-size: 200% 100%;
        animation: gradient-shift 3s ease-in-out infinite;
    }

@keyframes gradient-shift {

    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

    .form-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #007bff, #00d4ff);
        border-radius: 2px;
    }

.form-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #000000;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

    .contact-form input:hover,
    .contact-form select:hover,
    .contact-form textarea:hover {
        border-color: #007bff;
        box-shadow: 0 4px 16px rgba(0, 123, 255, 0.1);
        transform: translateY(-2px);
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1), 0 8px 25px rgba(0, 123, 255, 0.15);
        transform: translateY(-3px);
        background: #ffffff;
        color: #000000;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #000000 !important;
        font-weight: 400;
        font-style: italic;
    }

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
}

    .contact-form select option {
        color: #000000;
        background: #ffffff;
        font-weight: 500;
        padding: 10px;
    }

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    padding: 20px 30px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .submit-btn:hover {
        background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
    }

        .submit-btn:hover::before {
            left: 100%;
        }

    .submit-btn:active {
        transform: translateY(-2px);
    }

    .submit-btn i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .submit-btn:hover i {
        transform: translateX(5px) rotate(15deg);
    }

/* Form Group Focus Effects */
.contact-form .form-group:focus-within label {
    color: #007bff;
    transform: translateY(-2px);
}

/* Floating Label Effect */
.contact-form .form-group {
    position: relative;
}

    .contact-form .form-group input:focus + label,
    .contact-form .form-group textarea:focus + label,
    .contact-form .form-group input:not(:placeholder-shown) + label,
    .contact-form .form-group textarea:not(:placeholder-shown) + label {
        transform: translateY(-25px) scale(0.85);
        color: #007bff;
    }

/* Map Section Styles */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
    margin: 0;
}

.map-container {
    max-width: 100%;
    margin: 0;
}

.map-iframe-container {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .map-iframe-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    }

    .map-iframe-container iframe {
        display: block;
        width: 100%;
        height: 450px;
        border: none;
    }

/* Contact Banner Section */
.contact-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

    .contact-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* Responsive Contact Banner */
@media (max-width: 991px) {
    .banner-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .banner-content {
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    .banner-title {
        font-size: 20px;
    }
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-banner .auto-container {
    position: relative;
    z-index: 2;
}
