:root {
    --white-color: #fff;
    --black-color: #000;
    --footer-bg: #181818;
    --blue-color: #5C1C76;
    --font-family: "Plus Jakarta Sans", sans-serif;
    --border-color: #5D4D4D;
    --border-transparent-color: #AB949433;
    --gradient-color: linear-gradient(50.26deg, #5F1D79 7.68%, #D73379 47.18%, #EA9F36 96.96%);
    --gradient-light-color: linear-gradient(39.39deg, rgba(95, 29, 121, 0.9) 19.7%, rgba(215, 51, 121, 0.9) 62.12%, rgba(234, 159, 54, 0.9) 115.58%);
    --gradient-text-color: linear-gradient(137.52deg, #E03B86 33.17%, #F3A348 105.31%);
    --gradient-black-color: linear-gradient(253.75deg, rgba(0, 0, 0, 0) 23.01%, #000000 102.1%);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white-color);
    font-family: var(--font-family);
}

.common-gradient-btn {
    background: linear-gradient(51.38deg, #5F1D79 -23.25%, #D73379 29.99%, #EA9F36 97.08%);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--white-color);
    font-weight: 700;
    border-radius: 0.625rem;
    box-shadow: none;
    border: none;
}

.common-gradient-btn:hover {
    background: linear-gradient(51.38deg, #EA9F36 -23.25%, #D73379 29.99%, #5F1D79 97.08%);
}

/* Header start here */
.header .sub-header {
    background-color: var(--black-color);
    padding: 0.875rem 0; 
}

.header .sub-header .sub-header-content {
    display: flex;
    justify-content: flex-end;
}

.header .sub-header .sub-header-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;    
}

.header .sub-header .sub-header-content ul li {
    border-right: 1px solid var(--border-color);
    padding-right: 0.625rem;
}

.header .sub-header .sub-header-content ul li:last-child {
    border-right: none;
    padding-right: 0;
}

.header .sub-header .sub-header-content ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.header .navbar-header {
    background-color: var(--white-color);
}

.header .navbar-header .navbar-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .navbar-header .navbar-header-menu ul {
    list-style: none;
    display: flex;
    gap: 3.5rem;
    margin: 0;
    padding: 0;
}

.header .navbar-header .navbar-header-menu ul li {
    position: relative;
    cursor: pointer;
}

.header .navbar-header .navbar-header-menu ul li:hover::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.188rem;
    width: 100%;
    background: var(--gradient-color);
}

.header .navbar-header .navbar-header-menu ul li a {
    font-size: 1.5rem;
    color: var(--black-color);
    text-decoration: none;
    line-height: 6rem;
    height: 100%;
    display: block;
}

.header .navbar-header .navbar-header-menu ul li:hover,
.header .navbar-header .navbar-header-menu ul li:focus {
    background: var(--gradient-text-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
/* Header end here */

/* Home */
.home-banner {
    /* max-height: 34.375rem; */
}

.home-banner .home-banner-img {
    /* max-height: 34.375rem; */
    height: 100%;
}

.home-banner .carousel-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-black-color);
    z-index: 1;
}

.home-banner .carousel-inner .carousel-item .carousel-caption {
    z-index: 9;
    right: 0;
    bottom: 0;
    text-align: left;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0.75rem;
}

.home-banner .carousel-inner .carousel-item .carousel-caption .carousel-inner-content {
    max-width: 42rem;
}

.carousel-inner-content h5 {
    color: var(--white-color);
    font-size: 2.625rem;
    font-weight: 700;
}

.banner-tag {
    position: relative;
    padding: 0.375rem 1rem;
    border-radius: 4.5rem;
    background: #E03B8633;
    z-index: 0;
    color: var(--white-color);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: -0.5rem;
}

.banner-tag::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px; /* Border thickness */
    background: linear-gradient(137.52deg, #E03B86 33.17%, #F3A348 105.31%);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    pointer-events: none;
}

.carousel-inner-content p {
    font-size: 1.125rem;
    line-height: 2rem;
    color: var(--white-color);
    padding: 1rem 0;
    margin-bottom: 0;
}

.home-we-are {
    padding: 5rem 0
}

.home-latest-work {
    padding: 5rem 0;
}

.home-title {
    font-size: 2rem;
    color: var(--black-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.work-img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}

.slick-slide {
    margin: 0 10px;
}

.work-modal-card {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.work-modal-card .slider-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(183.69deg, rgba(0, 0, 0, 0) 55.67%, #000000 96.97%);
}

.work-modal-card .slider-card-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.work-modal-card .slider-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem;
}

.work-modal-card .slider-card-content .slider-card-name {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.work-modal-card .slider-card-content .slider-card-name h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--white-color);
    font-weight: 600;
}

.home-latest-work .slick-arrow {
    border: 1px solid var(--border-color);
    height: 40px;
    width: 40px;
    padding: 10px;
    color: var(--black-color);
    border-radius: 100%;
    position: absolute;
    top: -45px;
}

.home-latest-work .slick-next {
    right: 0;
}

.home-latest-work .slick-next::before {
    content: "";
    background-image: url("../img/next-arrow.svg");
    height: 22px;
    width: 24px;
    display: block;
    background-size: contain;
    opacity: 1;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 26px;
    transform: translate(-50%, -50%);
}

.home-latest-work .slick-prev {
    right: 56px;
    left: auto;
}

.home-latest-work .slick-prev::before {
    content: "";
    background-image: url("../img/prev-arrow.svg");
    height: 22px;
    width: 24px;
    display: block;
    background-size: contain;
    opacity: 1;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 26px;
    transform: translate(-50%, -50%);
}

.home-our-services {
    padding: 70px 0;
    background: linear-gradient(39.39deg, rgba(95, 29, 121, 0.1) 19.7%, rgba(215, 51, 121, 0.1) 62.12%, rgba(234, 159, 54, 0.1) 115.58%);
}

.home-service-row-gap {
    row-gap: 3rem;
}

.our-services-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.view-all-btn {
    padding: 10px 24px;
    font-size: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    background-color: transparent;
    border-radius: 8px;
}

.view-all-btn:hover {
    background-color: #5F1D79;
    color: var(--white-color);
}

.work-modal .modal-body {
    padding: 0;
}

.work-modal .modal-body .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white-color);
    z-index: 9999;
}

.modal-work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-service-card .service-card .home-service-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.home-service-card .service-card .home-service-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.home-service-card .service-card .home-service-img span {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 1px solid var(--white-color);
    border-radius: 60px;
    padding: 6px 14px;
    font-size: 14px;
    text-align: center;
    color: var(--white-color);
    font-weight: 500;
}

.home-service-card .service-card h4 {
    font-size: 22px;
    padding: 18px 0 6px;
    margin: 0;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.home-service-card .service-card p {
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.home-service-card .service-card .common-gradient-btn {
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
}

.home-top-countries {
    background: linear-gradient(92.5deg, #5F1D79 9.46%, #D73379 55.95%, #EA9F36 114.55%);
    padding: 60px 0 0;
    position: relative;
}

.home-top-countries::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: var(--white-color);
    opacity: 0.2;
}

.top-countries-content {
    width: 35%;
}

.top-countries-content .home-title {
    font-size: 38px;
    color: var(--white-color);   
    margin-bottom: 1rem; 
}

.top-countries-content p {
    font-size: 18px;
    line-height: 32px;
    color: var(--white-color);
    opacity: 0.67;
    margin-bottom: 24px;
    font-weight: 400;
}

.countries-tab-content {
    position: relative;
}

.countries-tab-content img {
    position: relative;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.img-box {
    background-color: var(--white-color);
    height: 10rem;
    width: 10rem;
    display: block;
    border-radius: 10px;
    opacity: .1;
    position: absolute;
    top: 0;
    right: 0;
}

.justify-space-between {
    justify-content: space-between;
}

.countries-tab {
    position: relative;
    top: -20%;
}

.countries-tab-list {
    margin-top: 12%;
    width: 50%;
}

.countries-tab-list button {
    background: transparent;
    padding: 1.5rem 0;
    font-size: 40px;
    font-weight: 300;
    color: var(--white-color);
    opacity: 0.5;
    position: relative;
    width: 100%;
    text-align: left;
}

.countries-tab-list button:hover {
    color: var(--white-color) !important;
    opacity: 1;
}

.countries-tab-list button.active {
    background-color: transparent !important;
    opacity: 1;
    font-weight: 600;
}

.countries-tab-list button.active::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background-color: var(--white-color);
}
/* Home */

/* Footer start here */
.footer {
    background: var(--footer-bg);
    padding-top: 3.75rem;
    position: relative;
}

.footer-main .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.footer-logo-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.footer-logo-content p {
    width: 60%;
    color: var(--white-color);
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
}

.footer-main .footer-inner .footer-social {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-main .footer-inner .footer-menu {
    display: flex;
    margin: 0;
    gap: 2.5rem;
    list-style: none;
}

.footer-main .footer-inner .footer-menu li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1rem;
}

.footer-main .footer-inner .footer-menu li a:hover {
    background: var(--gradient-text-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-sub {
    border-top: 1px solid var(--border-transparent-color);
    padding: 1.25rem 0;
}

.footer-sub .footer-inner p {
    text-align: center;
    color: var(--white-color);
    font-size: 0.875rem;
    line-height: 1.75rem;
    margin: 0;
}
/* Footer end here */

/* About start here */
.about-banner {
    background-image: url(../img/exhibition-stand/1.jpg);
    background-size: cover;
    padding: 5rem 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
}

.about-banner::before {
    content: "";
    position: absolute;
    background: var(--gradient-black-color);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.about-banner h1 {
    color: var(--white-color);
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 99;
    font-size: 3.125rem;
    font-weight: 700;
}

.about-content-inner {
    padding: 3.75rem 0;
}

.about-content-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--black-color);
}

.about-content-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5rem;
}

.about-content-inner .about-content-first p {
    font-size: 1.125rem;
    color: var(--black-color);
    line-height: 2rem;
}

.about-content-inner .about-content-second {
    margin-top: 3.75rem;
}

.about-content-inner .about-content-second ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-content-inner .about-content-second ul li {
    color: var(--black-color);
    font-size: 1.125rem;
    line-height: 2rem;
}

.about-content-third {
    margin-top: 3.75rem;
}

.about-content-our-work {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(31%, 1fr));
    gap: 2.25rem;
}

.about-content-our-work img {
    border-radius: 0.75rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* About end here */

/* Service start here */
.service-content {
    padding: 3.75rem 0;
}

.service-content-inner {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.service-content-header {
    display: flex;
    gap: 3rem;
}

.service-content-header .service-content-header-title {
    padding-left: 1.5rem;
    position: relative;
    flex: 0 0 45%;
}

.service-content-header .service-content-header-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0.25rem;
    background: var(--gradient-text-color);
}

.service-content-header .service-content-header-title h2 {
    font-size: 2rem;
    line-height: 2.875rem;
    color: var(--black-color);
    font-weight: 700;
    margin: 0;
}

.service-list-img img {
    width: 100%;
    border-radius: 1rem;
}

.service-content-header p {
    font-size: 1.125rem;
    line-height: 1.875rem;
    color: var(--black-color);
    margin: 0;
}

.service-list-container {
    display: flex;
    gap: 3.75rem;
    align-items: center;
}

.service-list-container .service-list-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-list-content-tag {
    display: flex;
    justify-content: center;
}

.service-list-container .service-list-content .service-tag {
    background: var(--gradient-text-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #000;
    padding: 0.75rem 2.875rem;
    text-transform: uppercase;
    width: fit-content;
    border-radius: 4.375rem;
}

.service-list-container .service-list-content h3 {
    font-size: 2rem;
    color: var(--black-color);
    line-height: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.service-list-container .service-list-content h3 span {
    font-size: 1rem;
    color: var(--black-color);
    line-height: 1.25rem;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
    text-align: center;
}

.service-list-container .service-list-content .service-list-p {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-list-container .service-list-content .service-list-p p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--black-color);
    margin: 0;
    text-align: center;
}

.service-list-container.service-list-container-right .service-list-content,
.service-list-container.service-list-container-left .service-list-content {
    flex: 0 0 50%;
}

.service-list-container.service-list-container-right .service-list-content h3,
.service-list-container.service-list-container-right .service-list-content h3 span,
.service-list-container.service-list-container-right .service-list-p p {
    text-align: left;
}

.service-list-container.service-list-container-left .service-list-content h3,
.service-list-container.service-list-container-left .service-list-content h3 span,
.service-list-container.service-list-container-left .service-list-p p {
    text-align: left;
}

.footer-service-banner {
    background-color: var(--blue-color);
    border-radius: 0.75rem;
    margin-top: -6.25rem;
    padding: 3.125rem 3.75rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.footer-service-banner p {
    font-size: 1.5rem;
    color: var(--white-color);
    line-height: 2rem;
    flex: 0 0 70%;
    margin: 0;
}
/* Service end here */

/* Contact start here */
.contact-form {
    padding: 60px 0;
}

.contact-form-inner {
    display: flex;
    gap: 5rem;
}

.contact-form-left {
    width: 55%;
}

.contact-form-left h5 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--black-color);
}

.contact-form-left input,
.contact-form-left textarea {
    padding: 16px 20px;
    border: 1px solid #CCD1DF;
    border-radius: 8px;
}

.contact-form-right {
    width: 45%; 
    display: flex;
    justify-content: flex-end;
    margin: 1.5rem 0;
}

.contact-form-right-inner {
    max-width: 430px;
    width: 100%;
    border: 1px solid #EEF0F8;
    background-color: #FAFBFF;
    padding: 2rem;
    border-radius: 1rem;
}

.contact-form-right-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-card-content {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.company-card-content span {
    font-size: 14px;
    color: #82899A;
    font-weight: 600;
}

.company-card-content p {
    margin: 0;
    color: #1E273B;
    font-size: 1rem;
    line-height: 24px;
    font-weight: 700;
}

.company-card-content a {
    margin: 0;
    color: #1E273B;
    font-size: 1rem;
    line-height: 24px;
    font-weight: 700;
    text-decoration: none;
}
/* Contact end here */

/* Self service */
.self-service-content {
    padding: 3.75rem 0 6rem;
}

.self-service-content h1 {
    font-size: 2rem;
    line-height: 2.875rem;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.self-service-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 1rem;
}

.self-service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* End Self service */

@media (max-width: 991px) {
    .home-top-countries {
        display: none;
    }

    .home-top-countries .country-card {
        margin-bottom: 1rem;
    }

    .header .navbar-header .navbar-header-inner {
        flex-direction: column;
        align-items: center;
        padding: 16px 0;
        gap: 2rem;
    }

    .header .navbar-header .navbar-header-menu ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .header .sub-header .sub-header-content ul {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .footer-main .footer-inner .footer-menu {
        margin: 0;
        padding: 0;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header .navbar-header .navbar-header-menu ul li a {
        line-height: 24px;
        font-size: 20px;
    }

    .contact-form-inner {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-form-left,
    .contact-form-right {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .header .sub-header .sub-header-content ul li {
        border-right: none;
    }

    .service-content-header .service-content-header-title {
        flex: 0 0 100%;
    }

    .service-list-container {
        gap: 2rem;
        flex-direction: column;
    }

    .about-banner h1 {
        font-size: 30px;
    }
}