/* Table Of Contents 
 1.Home page
    1.1.Home Hero section
    1.2.Home:Service Section
    1.3.Home: Service Bridge section
    1.4.Home: Skillset section
    1.5.Home: Admin section
    1.6.Home: Testimonials Section
    1.7.Home: About Section
    1.8.Home: Blog section
*/

/* Home Hero section  */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-con-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.left-hero {
    position: relative;
    display: grid;
    align-items: center;
    place-content: center;
    height: 100%;
    padding-left: 100px;
    gap: 20px;
}

.title h1 {
    color: #004c1d;
    font-size: 50px;
    position: relative;
    text-align: left;
    margin: 0;
    font-weight: 600;
    line-height: 50px;
}

.text-color {
    color: #aa882c;
}

.hero-desc {
    color: #000;
    position: relative;
    text-align: left;
    font-weight: 400;

}

.circle-section {
    display: flex;
    justify-content: end;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
}

.circle-container {
    position: relative;
    width: 500px;
    height: 500px;
}

/* Simple Circles */
.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin-clockwise 10slinear infinite;
    background: linear-gradient(white, white) padding-box, linear-gradient(45deg, #0d6b0d, #980d2d, #aa882c) border-box;
    border: 8px solid transparent;
}

/* Second (Simple) Circle */
.circle-2 {
    width: 650px;
    height: 650px;
    animation: spin-clockwise 20s linear infinite;
}

/* Fourth (Simple) Circle */
.circle-4 {
    width: 400px;
    height: 400px;
    animation: spin-counterclockwise 20s linear infinite;
}

/* Curved Text Circles */
.text-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-circle svg {
    width: 100%;
    height: 100%;
}

.text-circle text {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

/* Outermost Text Circle */
.text-outer {
    position: relative;
    z-index: 99;
    width: 650px;
    height: 650px;
    animation: spin-counterclockwise 45s linear infinite;
}

/* Binary (neesh inc in 1s & 0s) Circle */
.text-binary {
    width: 600px;
    height: 600px;
    animation: spin-clockwise 240s linear infinite;
}

/* Innermost Text Circle */
.text-inner {
    width: 550px;
    height: 550px;
    animation: spin-counterclockwise 60s linear infinite;
}

.right-mid-inner{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 250px;
    /* animation: scaleFade 3s infinite ease-in-out; */
    }

    .right-mid-img{
        background: url('../images/logo-icon.webp') 50% 50% no-repeat;
        background-size: contain;
        width: 100%;
        height: 250px;
        animation: fadeIn 5s ease-in-out forwards;
    }

/* Animations */
@keyframes spin-clockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin-counterclockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}



@media (max-width: 1300px) {
    .left-hero {
        padding-left: 50px;
    }

    .circle-container {
        width: 450px;
        height: 450px;
    }

    .text-outer {
    width: 500px;
    height: 500px;}

    .circle-2 {
    width: 500px;
    height: 500px;}

    .text-binary {
    width: 450px;
    height: 450px;}

    .text-inner {
        width: 400px;
        height: 400px;}

    .circle-4 {
        width: 250px;
        height: 250px;
    }

    .right-mid-inner{
        width: 150px;
        }
    
    .right-mid-img{
        height: 150px;
    }
}

@media (max-width: 1100px) {
    .left-hero {
        padding-left: 30px;
    }

    .title h1 {
        font-size: 40px;
    }

    .left-hero {
        z-index: 99;
    }

    .circle {
        left: 67%;
    }

    .text-circle {
        left: 67%;
}

.right-mid-inner {
    position: absolute;
    left: 67%;}
}

@media (max-width: 860px) {
    .hero-section {
        padding: 130px 0px 30px;
        height: 50vh;
    }

    .right-hero {
        position: absolute;
        width: 100%;
}

    .circle-section{
        opacity: 0.3;
        justify-content: center;
    }

    .text-circle {
        left: 50%;
    }

    .circle {
        left: 50%;
    }

    .left-hero {
        padding: 0px 30px;
    }

    .hero-con-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        height: 100%;
    }

    .title h1 {
        text-align: center;
    }

    .hero-desc {
        text-align: center;
    }

    .hero-btn {
        text-align: center;
    }

    .right-mid-inner {
        display: none;
    }
}

@media (max-width: 600px) {
.circle-container {
    width: 400px;
    height: 400px;
}

.text-outer {
    width: 350px;
    height: 350px;
}

.circle-2 {
    width: 350px;
    height: 350px;
}

.text-binary {
    width: 300px;
    height: 300px;
}

.circle-4 {
    width: 150px;
    height: 150px;
}

.text-inner {
    width: 250px;
    height: 250px;
}

.circle{
    border: 2px solid transparent;
}
}

@media (max-width: 380px) {
    .circle-container {
        width: 300px;
        height: 300px;
    }
    
    .text-outer {
        width: 290px;
        height: 290px;
    }
    
    .circle-2 {
        width: 290px;
        height: 290px;
    }
    
    .text-binary {
        width: 250px;
        height: 250px;
    }
    
    .circle-4 {
        width: 100px;
        height: 100px;
    }
    
    .text-inner {
        width: 200px;
        height: 200px;
    }
    
    }

/*Home: Service Section  */

.service-section {
    position: relative;
    overflow: hidden;
}

.service-con-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 20px;
}

.service-inner {
    padding: 50px;
    position: relative;
    height: 100%;
    display: grid;
    align-items: center;
    text-align: center;
}

.service-icon {
    width: 100%;
    margin: 0 auto;
}

.service-icon img {
    width: 150px;
    height: 100%;
}

.service-type {
    color: #004c1d;
    font-size: 30px;
    position: relative;
    font-weight: 600;
}

.service-text-b {
    color: #000;
    position: relative;
    font-weight: bold;
}

.service-text {
    color: #000;
    position: relative;
    font-weight: 400;
}


@media (max-width: 1100px) {
    .service-inner {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .service-section {
        padding-top: 50px;
    }

    .service-con-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 0px;
    }

    .service-inner {
        gap: 3px;
    }

    .service-icon img {
        width: 100px;
    }

}


/*Home : Service Bridge section */
.bridge-section {
    position: relative;
}

.bridge-con-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    border: 1px solid #7a5c1f;
}

.bridge-inner-left {
    display: grid;
}

.bridge-text-box {
    display: grid;
    grid-template-columns: 0.1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: #7a5c1f;
    color: #fff;
    text-align: center;
    align-items: center;
}

.bridge-text-box:hover {
    background: #004c1d;
}

.bridge-text-box.active {
    background: #004c1d;
}

.bridge-inner-right {
    padding: 20px;
    min-height: 400px;
    align-items: center;
    display: flex;
}


.bridge-icon {
    width: 100%;
    text-align: center;
}

.bridge-icon img {
    width: 200px;
    height:100%;
}

ul.service-list {
    padding: 0;
}

.bridge-topic-mobile {
    display: none;

}

@media (max-width: 1200px) {
    .bridge-inner-right {
        padding: 10px 20px;
       
    }
}

@media (max-width: 1100px) {
    .bridge-inner-right {
        padding: 10px 20px;
        min-height: 450px;
    }
}

@media (max-width: 850px) {
    .bridge-inner-right {
        
    }

    .bridge-icon img {
        width: 150px;
    }
}

@media (max-width: 767px) {
    .bridge-inner-left {
        display: flex;
    }

    .bridge-inner-right {
        padding: 0px;
        align-items: baseline;
        min-height: 300px;
    }


    .bridge-text-box {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }

    .bridge-topic {
        display: none;
    }

    .bridge-con-inner {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 0;
        border: none;
    }

    .bridge-topic-mobile {
        display: block;
        padding: 15px 10px;
        color: #fff;
        background: #004c1d;
        text-align: center;
        font-weight: 600;
    }

    .bridge-icon {
        margin-top: 20px;
    }

    .bridge-text {
        padding: 0;
    }

    li.text-list {
        list-style-type: none;
        text-align: center;
    }
}


/*Home: Skillset section  */


.Skillset-section {
    position: relative;
}

.Skillset-inner-up {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.Skillset-inner-down {
    display: flex;
    gap: 30px;
    padding: 0 150px;
    justify-content: center;
}


.Skillset-box {
    padding: 20px;
    width: 100%;
    text-align: center;
}

.Skillset-icon img {
    width: 100px;
    height:100%;
}

.Skillset-title {
    margin: 10px 0;
}

@media (max-width: 767px) {
    .Skillset-inner-up {
        display: grid;
        gap: 20px;
        padding: 20px 0;
    }

    .Skillset-inner-down {
        display: grid;
        gap: 20px;
        padding: 0 0px;
    }

    .Skillset-box {
        padding: 0px;
    }

}


/*Home: Admin section */
.admin-section {
    position: relative;
    overflow: hidden;
}

.admin-con-inner {
    margin-top: 40px;
}

.admin-panel {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 0;
}

.admin-text-box {
    padding: 10px;
    background: #004c1d;
    color: #fff;
    border-right: 1px solid #ffffff61;
    height: 100%;
    display: grid;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.admin-text-box.active {
    background: #7a5c1f;
}

.admin-details {
    border: 3px solid #aa882c;
    padding: 30px;
    min-height: 300px;
    display: flex;
    align-items: center;
}


.admin-desc-inner {
    display: grid;
    grid-template-columns: 0.5fr 2fr 1fr;
    gap: 10px;
    align-items: center;
}

.admin-icon {
    text-align: center;
    width: 150px;
}

.admin-icon img {
    width: auto;
    height: 100%;
    max-width: 100%;
    border: 4px solid #004c1d;
    border-radius: 100%;
}

.ad-name {
    font-weight: 600;
}

.ad-details {
    margin: 10px 0;
}


.ad-button-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 80%;
}

button.green-btn.expand {
    width: 100%;
    background: #004c1d;
    padding: 10px;
    border:2px solid #004c1d;
}

button.gold-btn.expand {
    padding: 10px;
    width: 100%;
    background: #7a5c1f;
    border:2px solid #7a5c1f;
}

button.green-btn.expand:hover {
    background: transparent;
    color:#004c1d;
    transition: opacity 1s ease;
}

button.gold-btn.expand:hover {
    background: transparent;
    color:#7a5c1f;
    transition: opacity 1s ease;
}

.admin-experience-col{
    height: 100%;
    display: grid;
    align-items: center;
    border-left: 2px solid #004c1d;
    text-align: right;
}

.experience-icon {
    display: flex;
    justify-content: right;
    gap:10px;
    width: 100%;
}

.experience-icon img {
    width: 50px;
    height: 100%;
    max-width: 100%;
    border: none;
}

.admin-experience.text-style {
    font-weight: 600;
}

@media (max-width: 1024px) {
    .ad-button-area {
        width: 100%;
    }

    .admin-text-box {
        padding: 5px;
    }

    .admin-details {
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .ad-button-area {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .admin-panel {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        text-align: center;
        justify-content: center;
        gap: 10px;
    }

    .admin-experience-col{
        border-left: none;
        text-align: center;
        gap:10px;
    }

    .experience-icon {
        text-align: center;}

    .experience-icon {
        justify-content: center;}

    .admin-details {
        margin-top: 20px;
    }

    .admin-desc-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap:20px;
    }

    .admin-experience.text-style {
        border-left: none;
        text-align: center;
    }

    button.gold-btn.expand {
        width: 60%;
        padding: 10px 5px;
    }

    button.green-btn.expand {
        width: 60%;
    }

    .admin-icon {
        width: 100%;
    }

    .admin-icon img {
        height: 150px;
       height: 150px}
}


/*Home: Testimonials Section  */
.testimonials-section {
    text-align: center;
}

.testimonials-con-inner {
    margin-top: 30px;
    border-top: 2px solid #004c1d;
    border-bottom: 2px solid #004c1d;
    padding: 30px;
}

.testimonials-box {
    /* display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap: 20px;
    align-items: center; */
    padding: 20px;
    height: 100%;
}

.testimonials-icon {
    /* display: grid; */
    display: none;
    place-content: center;
}

/* .testimonials-icon img {
    width: 150px;
    border: 4px solid #004c1d;
    border-radius: 100%;
    height:100%;
} */

.testimonial-details {
    color: #000;
    text-align: center;
    width: 70%;
    left: 0;
    right: 0;
    position: relative;
    margin: 0 auto;
}

.testimonial-author {
    font-weight: 600;
    margin: 10px 0 5px;
    font-size: 20px;
}

.slick-prev:before, .slick-next:before {
    color: #004c1d;
}

.slick-initialized .slick-slide {
    display: grid;
}

.testimonial-text {
    font-size: 16px;
}

.slick-dots {
    display: none;
}

@media (max-width: 1310px) {
    .testimonials-con-inner {
        padding: 0px;
    }
}

@media (max-width: 800px) {
    .testimonial-details {
        width: 100%;}
}


/* About Section  */
.about-section{
    padding: 0px 100px 50px;
}

.about-con-inner{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 20px;
    align-items: center;
}

.about-inner-left{
    text-align: left;
    display: grid;
    place-content: center;
}

.about-title {
    font-size: 50px;
    color: #004c1d;
    font-weight: 600;
}

.about-title-inner{
    font-size: 25px;
    color: #aa882c;
}

.about-text{
    margin-bottom: 20px;
}

.about-btn{

}

@media (max-width: 1300px) {
.about-section{
    padding: 0px 50px 50px;
}
}

@media (max-width: 1100px) {
    .about-section{
        padding: 0px 30px 50px;
    }
    }
      
@media (max-width: 767px) {
    .about-con-inner{
    grid-template-columns: 1fr;
    text-align: center;
}

.about-inner-left {
    place-content: center;
}
}

/*Home: Blog section  */
.blog-section {
    background: url('../images/neesh Inc blog bg.jpg') 50% 50% no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    position: relative;
}

.blog-t1, .blog-desc {
    color: #fff;
}

.blog-full-inner {
    position: relative;
}

.blog-full {
    margin: 50px;
}

.blog-col {
    position: relative;
    overflow: hidden;
    margin: 10px;
}

.blog-col-img {
    width: 100%;
    background: url() 50% 50% no-repeat;
    background-size: cover;
    background-clip: content-box;
    position: relative;
    height: 250px;
}

.blog-category {
    background: #7a5c1f;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    width: 50%;
    border-radius: 0px 0 0 0;
}

a.category-button {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
}

.blog-category:hover {
    background: #004c1d;

}

.blog-info {
    position: relative;
    z-index: 99;
    background: #fff;
    border-radius: 0 0 10px 10px;
    min-height: 110px;
    padding: 20px;
}

.blog-title {
    color: #004c1d;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
    display: grid;
}

.button-blog {
    position: absolute;
    bottom: 20px;
    width: 85%;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.blog-btn {
    width: 100%;
}

.button-blog a {
    text-decoration: none;
}

.arrows-blog {
    position: absolute;
    width: 100%;
    display: flex;
    gap: 20px;
    z-index: 1;
    place-items: center;
    place-content: space-between;
    top: 50%;
}

.left-arrow-blog {
    background: url('../images/left-arrow.png') center center no-repeat;
    background-repeat: no-repeat;
    cursor: pointer;
    background-size: 30px;
    width: 30px;
    height: 30px;
    position: relative;
}

.right-arrow-blog {
    background: url('../images/right-arrow.png') center center no-repeat;
    background-repeat: no-repeat;
    cursor: pointer;
    background-size: 30px;
    width: 30px;
    height: 30px;
    position: relative;
}

@media (max-width: 767px) {
    .blog-full {
        margin: 30px;
    }

    .blog-info {
        min-height: 120px;
    }

    .blog-title {
        text-align: center;
    }
    
    .button-blog {
        place-content: center;
    }
}

@media (max-width: 380px) {
    .blog-col-img {
        height: 160px;
    }

    .blog-title {
        font-size: 14px;
    }

    .blog-info {
        min-height: 90px;
    }
}