/* header style start  */
.navbar {
    position: fixed;
    top: 3rem;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-c-cstm {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 2rem;
    height: 75px;
    border-radius: 0.5rem;
}

.logo img {
    max-width: 122px;
    height: 100%;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-links a {
    font: 500 1.143rem var(--font-primary-title);
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #f57f20;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    font: 1rem var(--font-primary-title);
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f57f20;
    color: #fff;
    border-radius: 0.5rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown>a::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        top: 0;
        padding: 0 1rem;
    }

    body {
        padding-top: 60px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        transition: left 0.3s ease;
        gap: 1rem;
        display: flex;
        padding: 0;
        justify-content: flex-start;
        padding-top: 5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        border-radius: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown>a::after {
        transition: transform 0.3s ease;
    }

    .dropdown.active>a::after {
        transform: rotate(180deg);
    }
}

/* header style end  */


#hero,
#aboutsec,
#vision-mission,
#team,
#partners,
#portfolio {
    background: #fff;
}

#testimonials {
    background: linear-gradient(to bottom, #FFFFFF 0%, #cac8c8 100%);
}

.logo-wrapper {
    width: fit-content;
}

.logo-wrapper a {
    display: block;
    width: 50%;
}

.about-content-wrap h2,
.vision-container h2,
.mission-container h2,
.s-title-wrapp h2,
.team-title h2,
.testimonials-title-wrap h2,
.the--partners-wrapper h6,
.p-title {
    background-image: linear-gradient(to right, #20295E 0%, #F58022 100%);
    color: #08ffff00;
    -webkit-background-clip: text;
    background-clip: text;
}




/* hero sec start */

.hero-sec {
    height: 100vh;
    background: url("images/hero-bg-line.png") no-repeat bottom/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-wrap {
    position: relative;
    max-width: 850px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-content-wrap h1 {
    font: 500 4.5rem var(--font-primary-title);
    background-image: linear-gradient(to right, #20295E 0%, #F58022 100%);
    color: #08ffff00;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-content-wrap p {
    font: 1.1429rem var(--font-secondary);
    line-height: 1.4;
    max-width: 650px;
}

.contact-button {
    background-color: #e0e0e0;
    border-radius: 2rem;
    box-shadow: inset 4px 4px 10px #bcbcbc, inset -4px -4px 10px #ffffff;
    color: #000;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease-in-out;
    border: 0.1rem solid rgb(206, 206, 206);
    text-decoration: none;
}

.contact-button:hover {
    box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff;
    color: #F58227;
}

.contact-button:focus {
    outline: none;
    box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff;
}

.dive-deeper {
    position: absolute;
    bottom: -10rem;
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .hero-content-wrap h1 {
        font: 2rem var(--font-primary-title);
    }

    .hero-content-wrap p {
        font: 1rem var(--font-secondary);
    }

    .about-wrap {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {}

@media screen and (min-width: 769px) and (max-width: 991px) {}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

/* hero sec end  */



/* about style  start */

.about {
    padding: 5rem 0;
}

.about-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content-wrap {
    padding: 0 5rem 0 0;
    /* flex: 1; */
    max-width: 735px;
    width: 100%;
}

.about-image-wrap {
    max-width: 435px;
    width: 100%;

}

.about-image-wrap img {
    width: 100%;

}


.about-content-wrap h2 {
    font-size: 3rem;
    font-family: var(--font-primary-title);
    text-wrap-style: pretty;
}

.about-content-wrap p {
    font: 1.1429rem var(--font-secondary);
    line-height: 1.4;
    text-wrap-style: pretty;
}

.about-content-wrap p:not(:last-child) {
    margin: 2rem 0 1rem;
}

@media screen and (min-width: 360px) and (max-width: 559px) {

    .about-wrap {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }

    .about-content-wrap {
        padding: 2rem 0;
    }

    .about-content-wrap h2 {
        font-size: 1.9rem;
        text-align: center;
        text-wrap-style: pretty;
    }

    .about-image-wrap img {
        width: 100%;
    }

    .about-content-wrap p {
        font: 1rem var(--font-secondary);
        text-align: center;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .about-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .about-image-wrap img {
        width: 100%;
    }

    .about-content-wrap h2 {
        font-size: 3rem;
        text-align: center;
    }

    .about-content-wrap p {
        text-align: center;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .about-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .about-image-wrap img {
        width: 100%;
    }

    .about-content-wrap h2 {
        font-size: 3rem;
        text-align: center;
    }

    .about-content-wrap p {
        text-align: center;
    }

    .about-content-wrap {
        padding: 0 5rem 0 5rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .about-content-wrap h2 {
        font-size: 3rem;
    }
}

/* about style end  */


/* about page style start  */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h2 {
    font: 2.5rem var(--font-primary-title);
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-intro h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-intro p {
    max-width: 600px;
    margin: 0 auto;
    font: 1.1rem var(--font-secondary);
    line-height: 1.4;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font: 1.1429rem var(--font-secondary);
    line-height: 1.4;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}



.about-list p {
    font: 1.1rem var(--font-secondary);
}

.about-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.about-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
}

.about-list li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--secondary-color) !important;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-color));
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-content p {
    font: 1.1rem var(--font-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.4;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .about-intro h2,
    .cta-content h2 {
        font-size: 1.9rem;
    }

    .services-list ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p,
    .about-intro p {
        font-size: 1rem;
    }

    .about-intro h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* about page style end  */


/* vision and mission start  */
#vision-mission {
    padding: 100px 0;
    background-color: #fff;
}

.vission-mission-wrapper {
    display: flex;
    gap: 5rem;
    justify-content: center;
}

.vision-container,
.mission-container {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.vision-container h2,
.mission-container h2 {
    font: 3.5rem var(--font-primary-title);
    margin: 0 0 2rem;
}

.vision-container p,
.mission-container p {
    font: 1.29rem var(--font-secondary);
}


@media screen and (min-width: 360px) and (max-width: 559px) {

    .vission-mission-wrapper {
        display: flex;
        flex-direction: column;
    }

    .vision-container p,
    .mission-container p {
        font: 1rem var(--font-secondary);
    }

    #vision-mission {
        padding: 0 0 5rem;
    }

    .vision-container h2,
    .mission-container h2 {
        font: 2rem var(--font-primary-title);
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {

    .vision-container h2,
    .mission-container h2 {
        font: 3rem var(--font-primary-title);
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {

    .vision-container h2,
    .mission-container h2 {
        font: 3rem var(--font-primary-title);
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

/* vission and mission end  */



/* services style start  */
.s-title-wrapp {
    display: flex;
    justify-content: center;
    text-align: center;
    background: #fff;
    padding: 5rem 0 0;
}

.s-title-wrapp h2 {
    font: 3rem var(--font-primary-title);
    max-width: 600px;
    width: 100%;
}

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5rem 0 0 0;
}

.line-progress {
    z-index: -2;
    width: 3px;
    height: 100%;
    background-color: #b3b3b3;
    position: absolute;
}

.line-progress-bar {
    z-index: -1;
    width: 3px;
    height: 50vh;
    background: linear-gradient(#0d6efd, #ffc107, #f58227);
    position: fixed;
    top: 0;
    bottom: 50vh;
}

.linefade-overlay-top {
    z-index: 1;
    width: 100%;
    height: 6rem;
    background-image: linear-gradient(to bottom, var(--green), rgba(255, 255, 255, 0));
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
}

.line-fade-overlay-bottom {
    z-index: 1;
    width: 100%;
    height: 6rem;
    background-image: linear-gradient(to top, #0e0f1f, rgba(255, 255, 255, 0));
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}


.service-each {
    z-index: 2;
    display: flex;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    min-height: 250px;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
}

.service-each>*:first-child,
.service-each>*:last-child {
    flex: 1;
}

.service-each>*:nth-child(2) {
    flex: 0 0 12rem;
}

.content-centre {
    justify-content: center;
    align-items: stretch;
    display: flex;
    overflow: unset;
    position: relative;
}

.line-circle {
    width: 2rem;
    height: 2rem;
    position: sticky !important;
    position: -webkit-sticky;
    top: 50vh;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-circle {
    width: 1.5rem;
    height: 1.5rem;
    background: #F58227;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #fff;
}

.service-title {
    font: 2rem var(--font-primary-title);
}

.content-right p {
    font: 1.1429rem var(--font-secondary);
    line-height: 1.4;
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .s-title-wrapp h2 {
        font-size: 1.9rem;
        text-align: center;
    }



    .line-progress {
        left: 0.875rem;
    }

    .service-each {
        width: 100%;
        display: grid;
        grid-row-gap: 1.5rem;
        grid-template-rows: auto auto;
        grid-template-columns: 4rem 1fr;
    }

    .content-left {
        grid-area: 1 / 2 / 2 / 3;
    }

    .content-centre {
        justify-content: flex-start;
    }

    .content-centre {
        grid-area: 1 / 1 / 3 / 2;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {}

@media screen and (min-width: 769px) and (max-width: 991px) {}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

/* services style end  */


/* portfolio section style start */
#portfolio {
    padding: 6rem 0 5rem;
}

.p-title {
    font: 400 3rem var(--font-primary-title);
    max-width: 800px;
    width: 100%;
    margin: 0 0 1.5rem;
}

.portfolio-sec-wrp {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.portfolio-sec-card {
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portfolio-sec-card:hover {
    cursor: pointer;
}


.portfolio-card-image-wrap {
    border-radius: 1rem;
    overflow: hidden;
}

.portfolio-card-content-wrap h5 {
    font: 500 2rem var(--font-secondary);
}

.portfolio-card-content-wrap p {
    font: 400 1.2rem var(--font-secondary);
    color: #666;
}

.portfolio-btn {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    margin: 2rem 0 0;
}

.portfolio-card-image-wrap img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .lightbox-image {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .lightbox-image {
        width: 100%;
        max-width: 100%;
    }
}

/* portfolio section style end  */



/* team style start  */
#team {
    padding: 5rem 0 0;
}

.card-team-wrap {
    width: 100%;
    display: flex;
    text-decoration: none;
    color: unset;
}

.card-team-wrap:hover {
    color: unset;
}

.team-title-wrapper {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.team-title h2 {
    font: 3rem var(--font-primary-title);
    max-width: 450px;
    width: 100%;
    text-wrap-style: pretty;
}

.team-text-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}


.team-text-btn p {
    max-width: 550px;
    width: 100%;
    font: 1.1429rem var(--font-secondary);
    line-height: 1.4;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-wrapper {
    padding: 5rem 0;
}

.card-team {
    position: relative;
    background: linear-gradient(to bottom, #F58227 0%, #FFAA66 60%);
    height: 460px;
    border-radius: 2.5rem;
    max-width: 300px;
    width: 100%;
}

.card-team:hover {
    cursor: pointer;
}

.card-team-title {
    margin: 5rem 0 0;
}

.card-image {
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 80%;
}

.card-team-title h3 {
    font: 1.7rem var(--font-primary-title);
    margin: 0;
}

.card-team-title p {
    font: 1rem var(--font-primary-title);
    margin: 0;
}


.swiper-button-prev,
.swiper-button-next {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #000;
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.custom-navigation {
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide-nav {
    display: flex;
    align-items: center;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    width: 5rem;
}

.progress-fill {
    height: 100%;
    background: var(--secondary-color);
    width: 0%;
    transition: width 0.3s ease;
}

.nav-prev,
.nav-next,
.nav-prev-testimonials,
.nav-next-testimonials {
    cursor: pointer;
    padding: 8px;
}

.nav-prev.disabled,
.nav-next.disabled {
    color: grey;
    opacity: 0.5;
}

@media screen and (min-width: 360px) and (max-width: 559px) {

    .team-title-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .team-title h2 {
        font: 1.9rem var(--font-primary-title);
    }

    .team-text-btn {
        font: 1rem var(--font-secondary);
    }

    .team-text-btn {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .card-team {
        max-width: 100%;
        width: 100%;
    }

    .b-wrapp h3 {
        font: 1.29rem var(--font-primary-title);
        text-align: center;
        z-index: 1;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .team-title h2 {
        font: 2.5rem var(--font-primary-title);
    }

    .team-text-btn {
        font: 1rem var(--font-secondary);
    }

    .card-team {
        max-width: 330px;
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .team-title h2 {
        font: 2.5rem var(--font-primary-title);
    }

    .team-text-btn {
        font: 1rem var(--font-secondary);
    }

    .card-team {
        max-width: 330px;
        width: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .card-team {
        height: 425px;
    }
}

/* team style end  */




/* partners section  */
.the--partners-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
    height: min-content;
    padding: 70px 120px 150px;
}

.the--partners-wrapper h6 {
    font-size: 1.7rem;
    font-size: 3rem;
    font-family: var(--font-primary-title);
    text-align: center;
}

.logos {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.logos::before,
.logos::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 1;
}

.logos::before {
    left: 0;
    background: linear-gradient(to right, rgb(255 255 255 / 100%), transparent);
}

.logos::after {
    right: 0;
    background: linear-gradient(to left, rgb(255 255 255 / 100%), transparent);
}



.the--partners-wrapper {
    overflow: hidden;
    padding: 60px 20px;
}

.logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    overflow: hidden;
}

.logo-row-left {
    animation: scrollLeft 25s linear infinite;
}

.logo-row-right {
    animation: scrollRight 25s linear infinite;
}

.logo-row a {
    flex-shrink: 0;
    display: inline-block;
    padding: 15px 0;
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
}

.logo-row a:hover {
    transform: translateY(-5px) scale(1.05);
    z-index: 10;
}

.logo-row img {
    height: 100px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
    pointer-events: none;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.logo-row-left,
.logo-row-right {
    display: flex;
    min-width: 200%;
}

.logo-set {
    display: flex;
    justify-content: space-evenly;
    min-width: 50%;
}

@media (max-width: 768px) {
    .the--partners-wrapper h6 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .logo-row {
        gap: 15px;
    }

    .logo-set {
        gap: 15px;
    }

    .logo-row a {
        padding: 10px 15px;
    }

    .logo-row img {
        height: 60px;
        max-width: 100px;
    }

    .logo-set.duplicate {
        display: none;
    }

    .logos::before,
    .logos::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 10px;
        pointer-events: none;
        z-index: 1;
    }


}

@media (max-width: 480px) {
    .logo-row {
        gap: 10px;
    }

    .logo-set {
        gap: 10px;
    }

    .logo-row img {
        height: 50px;
        max-width: 80px;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {

    .the--partners-wrapper {
        padding: 0 1rem;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {}

@media screen and (min-width: 769px) and (max-width: 991px) {}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

/* partners section end */




/* testimonial style start  */
#testimonials {
    padding: 5rem 0;
}

.testimonials-title-wrap {
    text-align: center;
    display: flex;
    justify-content: center;
}

.testimonials-title-wrap h2 {
    font: 3rem var(--font-primary-title);
    max-width: 650px;
    width: 100%;
}

.testimonial-sliders {
    padding: 5rem 0 0;
}

.card-testimonials {
    max-width: 350px;
    width: 100%;
    height: 400px;
    border-radius: 2rem;
    background: rgba(217, 217, 217, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.5);
    color: #333;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.progress-fill-testimonials {
    height: 100%;
    background: var(--secondary-color);
    width: 0%;
    transition: width 0.3s ease;
}

.swipper-testimonials .swiper-slide {
    background: unset;
}

.avatar-container-testimonial {
    width: 45px;
    height: 100%;
    border-radius: 100%;
}

.avatar-container-testimonial img {
    width: 100%;
    height: 100%;
}

.testimonials-avtar-wrap {
    display: flex;
    align-items: center;
}

.avatar-detail {
    display: flex;
    flex-direction: column;
    margin: 0 0 0 1rem;
    text-align: left;
    gap: 0.1rem;
}

.testimonial-content-wrapp {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-content-wrapp p {
    font: 1rem var(--font-secondary);
    text-align: left;
}

.avatar-detail :nth-child(1) {
    font: 1.29rem var(--font-secondary);
}

.avatar-detail :nth-child(2) {
    font: 1rem var(--font-secondary);
    color: #888686;

}

.nav-prev-testimonials.disabled,
.nav-next-testimonials.disabled {
    color: grey;
    opacity: 0.5;
}


@media screen and (min-width: 360px) and (max-width: 559px) {

    .testimonials-title-wrap h2 {
        font: 1.9rem var(--font-primary-title);
        max-width: 600px;
        width: 100%;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {}

@media screen and (min-width: 769px) and (max-width: 991px) {}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .card-testimonials {
        height: 325px;
    }

    .testimonial-content-wrapp p {
        font: 0.9rem var(--font-secondary);
    }

    .avatar-detail :nth-child(1) {
        font: 1rem var(--font-secondary);
    }

}

/* testimonials style end  */


/* team page style start */

.team-page-wrapper {
    padding: 120px 0;
}

.team-page-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem 1rem;
}

.team-page-card {
    max-width: 440px;
    width: 100%;
    background: #000;
    border-radius: 4rem;
    position: relative;
    overflow: hidden;
}

.team-page-card-contents {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    /* background: linear-gradient(1deg, #000000bd, #0000003b); */
    background: linear-gradient(to bottom, #F58227 0%, #FFAA66 60%);
    height: 100%;
}

.avatar-title-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-detail-wrap h5 {
    /* color: #fef9f9; */
    color: #000;
    font: 1.29rem var(--font-primary-title);
}

.avatar-detail-wrap p {
    /* color: #BFBFBF; */
    color: #000;
    font: 1rem var(--font-secondary);
    margin: 0;
}

.team-page-content p {
    line-height: 1.2;
    /* color: #d2cccc; */
    color: #000;
    font: 0.9rem var(--font-secondary);
    line-height: 1.4;
}

.avatar-image-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.breacrumb-area {
    height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    background: #F1F1F1;
    overflow: hidden;
}

.b-wrapp {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b-wrapp h3 {
    z-index: 1;
    font: 3rem var(--font-primary-title);
}

.blurry-1 {
    filter: blur(9.9023vh);
    position: absolute;
    height: 100%;
    left: 0;
}

.blurry-2 {
    filter: blur(9.9023vh);
    position: absolute;
    height: 100%;
    right: 0;
}



.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.pagination button {
    margin: 0 5px;
    padding: 1rem;
    background-color: #f58227;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 1rem;
}

.pagination button:disabled {
    background-color: #cccccc;
}

.page-number {
    margin: 0 5px;
    padding: 1rem;
    cursor: pointer;
    border-radius: 1rem;
}

.page-number.active {
    background-color: #007bff;
    color: white;
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .b-wrapp h3 {
        font: 1.29rem var(--font-primary-title);
        text-align: center;
        z-index: 1;
    }
}

/* Team page style end  */


/* servicess page style start  */
.service-page {
    background: #E5E5E5;
}

.service-page-card-wrapper {

    position: relative;
    padding: 120px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.service-card {
    max-width: 400px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 2.5em;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    transition: background-color 0.4s ease-in-out;
    text-decoration: none;
}

.service-card-number {
    display: flex;
    justify-content: flex-end;
}

.service-card-number h6 {
    font: 1.5rem var(--font-primary-title);
    color: #000;
    text-align: end;
    width: fit-content;
    padding: 1rem;
    border-radius: 1rem;
    transition: background-color 0.4s ease-in-out;
}

.service-contents-wrap {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-contents-wrap .title {
    font: 1.29rem var(--font-primary-title);
    color: #000;
    transition: color 0.4s ease-in-out;
}

.service-contents-wrap .detail {
    font: 1rem var(--font-secondary);
    color: #000;
    transition: color 0.4s ease-in-out;
}

.service-card:hover {
    background: #f57f20;
    cursor: pointer;
}

.contact-text-call a {
    text-decoration: none;
    background: none;
}

.service-card:hover .service-contents-wrap .title {
    color: #ffffff;
}

.service-card:hover .service-contents-wrap .detail {
    color: #ffffff;
}

.service-card:hover .service-card-number h6 {
    background: #E5E5E5;
}

/* services page style end  */



/* service detail page style start */

.service-d-section {
    padding: 80px 0;
    background-color: var(--white);
}

.service-d-intro {
    margin: 0rem 0rem 3rem;
}

.service-d-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.service-d-intro h2::after {
    content: '';
    width: 100%;
    height: 4px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.service-d-intro p {
    font: 1.1429rem var(--font-secondary);
    margin: 1rem 0;
    line-height: 1.4;
}

.service-d-content {
    max-width: 900px;
}

.service-d-text p {
    line-height: 1.8;
    font: 1rem var(--font-secondary);
    margin: 0 0 1.3rem 2.3rem;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.services-list p {
    font: 1.1rem var(--font-secondary);
}

.services-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.services-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
}

.services-list li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.service-detail-point-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail-point-title i {
    font-size: 1.6rem;
}

.service-detail-point-title h3 {
    font: 1.6rem var(--font-secondary);
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .service-d-intro h2 {
        font-size: 2rem;
    }

    .services-list ul {
        grid-template-columns: 1fr;
    }

    .service-detail-point-title h3 {
        font: 1.2rem var(--font-secondary);
        font-weight: 400;
    }

}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .service-d-intro p {
        font-size: 1rem;
    }

    .service-d-intro h2 {
        font-size: 1.9rem;
    }

}

/* service detail page style end */


/* contact page style start  */
.contact-page {
    padding: 120px 0;
}

.form-wrap {
    display: flex;
}

.top-f-input {
    display: flex;
}

.input-container {
    position: relative;
    margin: 2rem 2rem 2rem 0;
}

.top-f-input .input-container {
    margin: 0 2rem 0 0;
}

.input-field {
    display: block;
    width: 100%;
    padding: 10px 10px 10px 0;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    background-color: transparent;
}

.input-label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    color: rgba(204, 204, 204, 0);
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #F58227;
    transition: all 0.3s ease;
}

.input-field:focus+.input-label {
    top: -20px;
    font-size: 12px;
    color: #F58227;
}

.input-field:focus+.input-label+.input-highlight {
    width: 100%;
}

.last-input-c .input-field {
    padding: 0 0 85px 0;
}

.title-text h4 {
    font: 2rem var(--font-primary-title);
}

.title-text p {
    max-width: 450px;
    width: 100%;
    margin: 0 0 2rem;
    font: 1rem var(--font-secondary);
    line-height: 1.4;
}

.input-field::placeholder,
.input-highlight {
    color: #000;
}

.wrp-contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item p {
    font: 1rem var(--font-secondary);
    max-width: 300px;
    line-height: 1.4;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background-color: #FFD8B9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    color: #FF9A56;
    font-size: 20px;
}

.contact-text {
    font: 1rem var(--font-secondary);
    color: #000;
    line-height: 1.4;
}

.contact-text a {
    color: #000;
}

.contact-text:hover a {
    color: #FF9A56;
}

.contact-item h4 {
    font: 1.5rem var(--font-primary-title);
}


.wrp-contact hr {
    width: 2px;
    color: #000;
    height: 100%;
}

.wrp-contact {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: stretch;
}

.wrp-contact hr {
    width: 2px;
    background-color: #000;
    height: auto;
    margin: 0 30px;
    border: none;
    align-self: stretch;
}

.map {
    padding: 5rem 0 0;
    display: flex;
    justify-content: center;
}

.submit-button {
    background-color: #e0e0e0;
    border-radius: 0.5rem;
    box-shadow: inset 4px 4px 10px #bcbcbc, inset -4px -4px 10px #ffffff;
    color: #000000;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease-in-out;
    border: 0.1rem solid rgb(206, 206, 206);
    text-decoration: none;
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .wrp-contact {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* contact page style end  */



/* portfolio page style start */
.tab-navigation {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    background: #e9ecef;
}

.tab-btn.active {
    background: var(--secondary-color);
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.grid-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    max-height: 300px;
}

.grid-item:hover {
    transform: translateY(-5px);
}

/* Cursor Tooltip Styles */
.cursor-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transform: translate(-50%, -100%) translateY(-10px);
    transition: opacity 0.2s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cursor-tooltip.show {
    opacity: 1;
}

.cursor-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.grid-item:hover .image-overlay {
    transform: translateY(0);
}

.portfolio-tab-btn {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.7rem 1.5rem;
    margin: 0;
    font-family: var(--font-secondary);
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50px;
    overflow: hidden;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    width: 700px;
    height: 500px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.lightbox-info h5 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.lightbox-info p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .portfolio-card-content-wrap h5 {
        font: 500 1.2rem var(--font-secondary);
    }

    .portfolio-card-content-wrap p {
        font: 400 1rem var(--font-secondary);
    }
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -40px;
        right: 0;
    }

    .lightbox-info {
        bottom: -50px;
        font-size: 14px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: -50px;
    }

    .lightbox-next {
        right: -50px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* portfolio style end  */



/* careers page style start  */
.careers-head {
    padding: 5rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.careers-head-btn {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.7rem 1.5rem;
    margin: 0;
    font-family: var(--font-secondary);
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50px;
    overflow: hidden;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.careers-head-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.careers-head-btn.active {
    background-color: #000;
    color: #fff;
}

.careers-head-btn.active:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.careers-head h3 {
    font: 500 2.286rem var(--font-primary-title);
    margin: 20px 0 10px 0;
}

.careers-head p {
    font: 400 1.143rem var(--font-secondary);
    margin: 0 0 30px 0;
}

.career-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.accordion-item:first-of-type {
    border-radius: 0;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background: #fff;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 20px;
}

.accordion-title-content {
    flex: 1;
}

.job-title {
    font: 500 1.714rem var(--font-primary-title);
    color: #000;
    margin: 0 0 10px 0;
}

.accordion-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.accordion-header.active .accordion-toggle {
    transform: rotate(0deg);
}

.job-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.job-tag {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    background-color: #ffffff;
    color: #000;
    border-radius: 2rem;
    border: 1px solid #000;
}

.accordion-title p {
    font: 400 1.143rem var(--font-secondary);
    margin: 10px 0;
    color: #555;
    line-height: 1.5;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fff;
}

.accordion-content.active {
    max-height: 100%;
    transition: max-height 0.4s ease-in;
}

.accordion-body {
    padding: 0 25px 25px;
    border-top: 1px solid #eee;
}

.job-description {
    font: 400 1.143rem var(--font-secondary);
    margin: 20px 0;
    color: #555;
    line-height: 1.6;
}

.job-requirements {
    margin-bottom: 25px;
}

.job-requirements h4 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    font: 400 1.071rem var(--font-secondary);
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    color: #555;
}

.job-requirements li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.apply-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.apply-btn:hover {
    background: #e06d1a;
    transform: translateY(-2px);
}

.no-jobs {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    background: #fff;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.no-jobs h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.careers-page {
    padding: 0 0 3rem;
}

@media (max-width: 768px) {
    .careers-head h3 {
        font-size: 1.8rem;
    }

    .career-tabs {
        gap: 10px;
        justify-content: center;
    }

    .careers-head-btn {
        padding: 0.6rem 1.2rem;
        font-size: 11px;
    }

    .accordion-header {
        padding: 15px 20px;
    }

    .accordion-body {
        padding: 0 20px 20px;
    }

    .job-title {
        font-size: 1.2rem;
    }

    .accordion-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .accordion-toggle {
        position: absolute;
        right: 20px;
        top: -10px;
    }
}

/* careers page style end  */


/* footer style start  */
.footer {
    background: #fff;
    padding: 3rem 0 0;
    font-family: 'Play', sans-serif;
    text-align: center;
}

.list-wrapper {
    text-align: left;
    margin-bottom: 20px;
}

.address {
    display: flex;
    gap: 0.5rem;
}

.contact-num a {
    text-decoration: none;
    color: unset;
    transition: color 0.3s ease;
}

.contact-num a:hover {
    color: var(--secondary-color);
}

.address i {
    margin: 0.3rem 0;
}

.address p {
    max-width: 250px;
    width: 100%;
    font: 1rem var(--font-secondary);
    line-height: 1.4;
}

.footer-column h2 {
    margin-bottom: 2rem;
    font: 1.29rem var(--font-primary-title);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    font: 1rem var(--font-secondary);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

hr {
    height: 3px;
    border: none;
    background: linear-gradient(to right, #20295E 0%, #F58022 100%);
}

.copyright-social-l {
    display: flex;
    justify-content: space-between;
}

.copyright-social-l p {
    text-align: left;
    width: fit-content;
    margin: 0;
    font: 1rem var(--font-secondary);
}

.social {
    display: flex;
    align-items: center;
}

.copyright-social-l a {
    text-decoration: none;
    color: gray;
    transition: 0.5s;
    width: fit-content;
}

.copyright-social-l a:hover {
    color: var(--secondary-color);
}

.copyright-social-l a i {
    font-size: 1.5em;
    margin: 0.5rem;
}

footer {
    border-top: #e8e8e8 1px solid;
}

@media (max-width:720px) {
    .list-wrapper {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer {
        text-align: left;
        padding: 5%;
    }

    .copyright-social-l {
        flex-direction: column;
        align-items: flex-start;
    }

    .copyright-social-l p {
        margin-bottom: 15px;
    }
}

/* footer style end  */

#button-s-top {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}

#button-s-top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button-s-top:hover {
    cursor: pointer;
    background-color: #333;
}

#button-s-top:active {
    background-color: #555;
}

#button-s-top.show {
    opacity: 1;
    visibility: visible;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}



/* new requirement  */

.blogs-section {
    padding: 5rem 0;
}

.advertising-section {
    padding: 2rem 0;
}

.card-container {
    max-width: 400px;
}

.content-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.meta-category {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.meta-date {
    color: #999;
    font-size: 14px;
}

.meta-separator {
    width: 4px;
    height: 4px;
    background-color: #ddd;
    border-radius: 50%;
}

.card-title {
    color: #333;
    margin-bottom: 12px;
    font: 700 1.4rem var(--font-secondary);
}

.card-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-action {
    display: inline-flex;
    align-items: center;
    color: #23295c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-action:hover {
    color: #1e7e34;
}

.card-action::after {
    content: '...';
    margin-left: 2px;
}

.adv-d-intro p {
    font: 1.1429rem var(--font-secondary);
    margin: 1rem 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .card-container {
        max-width: 100%;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 16px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 14px;
    }

    .card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .card-description {
        margin-bottom: 14px;
    }

    .meta-category,
    .meta-date,
    .card-action {
        font-size: 13px;
    }
}

/* Alternative card styles for reusability */
.content-card.card-style-minimal {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.content-card.card-style-elevated {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.content-card.card-style-compact .card-image {
    height: 180px;
}

.content-card.card-style-compact .card-content {
    padding: 16px;
}

/* Demo container for multiple cards */
.demo-container {
    display: flex;
    gap: 20px;
    padding: 0;
}

@media (max-width: 768px) {
    .demo-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

.adv-d-section {
    padding: 80px 0 0 0;
    background-color: var(--white);
}

/* blog d page  */

.blogs-wrp-detl {
    display: flex;
    justify-content: space-around;
    padding: 150px 20px;
}

.blog-container {
    max-width: 800px;
    /* margin: 0 auto; */
    background: #fff;
    min-height: 100vh;
}

.blog-header {
    padding: 40px 0 20px;
    border-bottom: 1px solid #e9ecef;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.meta-category {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-date {
    color: #999;
    font-size: 14px;
}

.meta-separator {
    width: 4px;
    height: 4px;
    background-color: #ddd;
    border-radius: 50%;
}

.blog-title {
    color: #2c3e50;
    margin-bottom: 0;
    font: 3rem var(--font-primary-title);
}

.blog-hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 40px 0;
}

.blog-content p {
    color: #555;
    margin-bottom: 24px;
    font: 1.2rem var(--font-secondary);
    line-height: 1.8;
}

.blog-link {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #0056b3;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box .blog-text {
    margin-bottom: 0;
    font-style: italic;
}

/* Sidebar styles */
.sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
    width: 350px;
}

.sidebar-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 2px solid #f37920;
    padding-bottom: 10px;
}

.latest-post {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    transition: transform 0.2s ease;
}

.latest-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.latest-post:hover {
    transform: translateY(-2px);
}

.latest-post-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

.latest-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-post:hover .latest-post-image img {
    transform: scale(1.05);
}

.latest-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
}

.latest-post-category {
    color: #f37920;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.latest-post-date {
    color: #999;
}

.latest-post-title {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.latest-post-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Design for Sidebar */
@media (max-width: 1024px) {
    .sidebar {
        width: 100%;
        padding: 25px;
        display: flex;
        gap: 1rem;
    }

    .blogs-wrp-detl {
        padding: 120px 20px;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        padding: 20px;
    }

    .latest-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .latest-post-meta .meta-separator {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header {
        padding: 30px 0 15px;
    }

    .blog-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .blog-hero-image {
        height: 300px;
    }

    .blog-content {
        padding: 30px 0;
    }

    .blog-text {
        font-size: 1.1rem;
    }

    .highlight-box {
        margin: 20px 0;
        padding: 15px;
    }

    .blogs-wrp-detl {
        padding: 120px 20px;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 20px 0 10px;
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .blog-hero-image {
        height: 250px;
    }

    .blog-content {
        padding: 20px 0;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .meta-separator {
        display: none;
    }

    .blogs-wrp-detl {
        padding: 120px 20px;
        flex-direction: column;
    }
}

/* Additional styling for better readability */
.blog-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 40px 0 20px;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 22px;
    color: #34495e;
    margin: 30px 0 15px;
    font-weight: 600;
}

.blog-content ul,
.blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 8px;
}

.read-more-section {
    background: #f8f9fa;
    padding: 30px;
    margin-top: 40px;
    border-radius: 8px;
    text-align: center;
}

.read-more-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.read-more-text {
    color: #666;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #0056b3;
}