:root {
    --primary-color: #ff6f00;
    --secondary-color: #121212;
    --accent-color: #ffc247;
    --text-color-light: #fff;
    --text-color-dark: #333;
    --font-heading: "Poppins", sans-serif;
    --font-body: "Manrope", sans-serif;
    --color-body: #0b0b0b;
}


/* General Body */

body {
    font-family: var(--font-body);
    background-color: var(--secondary-color);
    color: var(--color-body);
    margin: 0;
    padding: 0;
}


/* Header */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color-light);
}

.zi-banner {
    background: url("../img/banner1.png") no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.zi-banner h1 {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    color: var(--text-color-light);
    margin-bottom: 20px;
}

.zi-banner p {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-color-light);
    margin-bottom: 20px;
}

.zi-banner .stats-counter {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 120px;
}

.stats-counter .stat {
    text-align: center;
}

.stats-counter .stat h3 {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--text-color-light);
    font-weight: bolder;
}

.stats-counter .stat p {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-color-light);
}

.zi-banner-form {
    position: relative;
    background: rgba(121, 121, 121, 0.2);
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 47%);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid #ffffff38;
}


/* .zi-banner-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: -1;
    border-radius: 8px;
} */

@media (min-width: 998px) and (max-width: 1875px) {
    .zi-banner {
        height: unset;
    }
    header.zi-header {
        top: 0;
    }
}

.pricing-card:hover h5 {
    color: #000;
}

.zi-banner-form {
    text-align: center;
}

.zi-banner-form h3 {
    font-family: var(--font-heading);
    font-size: 33px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

input,
textarea {
    background-color: rgba(43, 43, 43, 0.7);
    color: var(--text-color-light);
    border: none;
    padding: 12px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 15px;
    border-radius: 4px;
}

input::placeholder,
textarea::placeholder {
    color: #c7c7c7;
}

textarea.form-control {
    border-radius: 10px !important;
    height: 120px;
}

input {
    height: 48px !important;
    border-radius: 10px !important;
}


/* Navigation */

.nav-link {
    font-family: var(--font-body);
    color: var(--text-color-light);
    margin-right: 20px;
}

.nav-link:hover {
    color: var(--primary-color);
}

header.zi-header {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0px 0;
    z-index: 1;
}

header.zi-header .nav {
    align-items: anchor-center;
}


/* Button Base Styling */

.btn1 {
    z-index: 2;
    border: 1px solid #d0d0d0;
    border-radius: 50px;
    color: #fff;
    padding: 9px 40px;
    position: relative;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.btn1 span {
    position: relative;
    pointer-events: none;
    z-index: 91;
}

.btn1::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle closest-side, #ff6f00, transparent);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn1:hover::before {
    width: 300px;
    height: 300px;
}

.btn1:hover {
    color: #ffffff;
    border-color: #ff6f00;
}

.btn1:active::before {
    transition: 0s;
    width: 0;
    height: 0;
}

.btn2 {
    z-index: 2;
    border: 1px solid #d0d0d0;
    border-radius: 50px;
    color: #fff;
    padding: 9px 40px;
    position: relative;
    background: var(--primary-color);
    font-size: 16px;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.btn2 span {
    position: relative;
    pointer-events: none;
    z-index: 91;
}

.btn2::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle closest-side, #ffffff, transparent);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn2:hover::before {
    width: 300px;
    height: 300px;
}


/* Change text color and border on hover */

.btn2:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn2:active::before {
    transition: 0s;
    width: 0;
    height: 0;
}

a.nav-link {
    font-family: var(--font-body);
    color: var(--text-color-light) !important;
}

.text-orange {
    color: var(--primary-color) !important;
}

.zi-banner-form .btn2 {
    padding: 12px 60px;
    margin: 10px 0 0;
}

.zi-banner .row {
    margin-top: 150px !important;
}

.stats-counter h3 {
    font-weight: bolder;
}


/* Banner End */

.main-heading {
    font-size: 45px;
    font-weight: bold;
}

.main-pera {
    font-size: 18px;
}


/* Solutions Section */

.zi-solutions-banner {
    background-color: #0b0b0b;
    padding: 70px 0;
    color: #fff;
}


/* Services List */


/* Services List Style */

.services-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}


/* Styling for each list item */

.services-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
}

.services-list i {
    color: #ff6f00;
    margin-right: 10px;
}


/* Adjust the list for smaller screens (mobile) */

@media (max-width: 768px) {
    .services-list li {
        margin-bottom: 20px;
    }
    .services-list {
        display: block;
        border-radius: 10px;
        color: #000;
        padding: 0 0 0px;
    }
}


/* Button Styling */


/* Right Side Image Styling */

.zi-solutions-banner img {
    width: 100%;
}


/* Responsive Layout */

@media (max-width: 768px) {
    .zi-solutions-banner h2 {
        font-size: 2rem;
    }
    .services-list li {
        font-size: 11px;
        margin: 0 0 4px;
        background: #fff !important;
        border-radius: 7px;
        padding: 0 5px 0;
        display: inline-block;
        color: #000;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

.btn-wrp {
    display: flex;
    gap: 15px;
}


/* Tab Section Styling */

.zi-tabs {
    background: url(../img/tabs-banner.png) no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 70px 0;
    background-color: var(--color-body);
    background-position: left;
}

.zi-tabs .nav-pills .nav-link {
    color: #fff;
    background-color: transparent;
    border: 1px solid #ff6f00;
    border-radius: 50px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 20px;
    padding: 15px 20px;
}

.zi-tabs .nav-pills .nav-link.active {
    background-color: #ff6f00;
    color: #fff;
}

.zi-tabs p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.zi-tabs img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .zi-tabs .row {
        flex-direction: column;
    }
    .zi-tabs .nav-pills {
        flex-direction: row;
        justify-content: space-around;
    }
    .zi-tabs h2 {
        font-size: 1.8rem;
    }
    .zi-tabs p {
        font-size: 1rem;
    }
}

.brand-slider {
    background-color: rgba(220, 110, 33, 0.08);
    padding: 20px 0;
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    align-items: center;
}

.brand-slider .slider img {
    filter: invert(1);
    max-width: 90%;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brand-slider .slider div {
        padding: 10px;
    }
    .brand-slider .slider img {
        max-height: 40px;
    }
}

.zi-publishing-platforms {
    background: url(../img/work-banner1.png) no-repeat center center;
    background-size: cover;
    background-color: var(--color-body);
    padding: 70px 0;
    color: #fff;
    text-align: center;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 30px 0 0;
}

.platform-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    border-radius: 50px;
}

.platform-logo:hover img {
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .platforms-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

.platform-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.platform-logo:hover {
    /* transform: translate(0, -10px); */
    filter: brightness(1.2);
}

.platform-logo:hover img {
    /* transform: scale(1.05); */
    transition: transform 0.3s ease;
}

.zi-story {
    padding: 70px 0;
}

.zi-story img {
    width: 100%;
}

.zi-tabs {
    position: relative;
}


/* .zi-tabs::before {
    background: url(../img/tab1.png);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.zi-tabs::after {
    background: url(../img/tab2.png);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
} */

.zi-team {
    background-color: #121212;
    padding: 70px 20px;
    color: #fff;
}

.team-slider {
    width: 100%;
    margin: 0 auto;
}

.team-member {
    text-align: left;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-member h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.team-member p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #fff;
}

.team-member:hover {
    transform: scale(1.05);
}


/* Responsive Design */

@media (max-width: 768px) {
    .team-slider {
        padding: 10px;
    }
    .team-member img {
        max-height: 200px;
    }
    .team-member h4 {
        font-size: 15px;
    }
    .team-member p {
        font-size: 9px;
    }
}

.zi-testimonials {
    background: url(../img/testi-banner.png) no-repeat center center;
    background-size: cover;
    padding: 70px 0;
    color: #fff;
}

.zi-testimonials h6 {
    font-size: 30px;
    font-weight: 600;
}

.zi-testimonials-text {
    text-align: left;
}

.client-rating {
    margin: 20px 0;
}

.testimonial-slider {
    margin-top: 0px;
}

.testimonial-slider {
    padding: 0px 0;
}

.testimonial-card {
    background: #191919;
    padding: 25px;
    margin: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 220px;
}

.testimonial-rating {
    margin-bottom: 10px;
}

.stars img {
    width: 50%;
    margin: 0;
    padding: 0;
}

.testimonial-card h4 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.testimonial-card p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #fff;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.testimonial-date {
    float: right;
    font-size: 12px;
    color: #fff;
}

.video-testimonial-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    overflow: hidden;
}

.video-card {
    padding: 30px 0;
    transition: all 0.5s ease;
    opacity: 0.3;
    transform: scale(0.8);
}

.video-wrapper {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 9/16;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-center.video-card {
    opacity: 1;
    transform: scale(1.1);
    z-index: 10;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-arrow:hover {
    background: #ff7b23;
    border-color: #ff7b23;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 123, 35, 0.5);
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

i.fas.fa-chevron-right {
    color: #fff;
}

i.fas.fa-chevron-left {
    color: #fff;
}

@media (max-width: 1024px) {
    .slick-prev {
        left: 10px;
    }
    .slick-next {
        right: 10px;
    }
    .video-card {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .video-testimonial-section {
        padding: 40px 0;
    }
    .video-card {
        padding: 10px 0;
        opacity: 0.5;
        transform: scale(0.85);
    }
    .slick-center.video-card {
        transform: scale(1);
    }
    .custom-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.5);
    }
    .slick-prev {
        left: 5px;
    }
    .slick-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 24px;
    }
    .video-slider {
        padding: 0 20px;
    }
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .platforms-grid.slick-initialized {
        display: block;
    }
    .platforms-grid .platform-logo {
        padding: 10px;
        text-align: center;
    }
    .platform-logo img {
        max-width: 100px;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    /* .zi-tabs {
        background: #0b0b0b;
    } */
    .container {
        max-width: 1140px;
    }
    .zi-banner h1 {
        font-size: 55px;
    }
    .zi-banner .stats-counter {
        margin-top: 60px;
    }
}

@media (max-width: 1199px) {
    .contact-list li {
        font-size: 15px;
    }
    .zi-tabs {
        background: #0b0b0b;
    }
    .zi-banner .stats-counter {
        margin-top: 40px;
    }
    .main-heading {
        font-size: 38px;
    }
    .zi-banner h1 {
        font-size: 48px;
    }
    .slick-prev {
        left: -30px;
    }
    .slick-next {
        right: -30px;
    }
    .platforms-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .zi-contact-banner img {
        display: none;
    }
    .zi-contact-banner .row {
        margin-top: 50px !important;
    }
    .team-member p {
        font-size: 15px;
    }
    nav.navbar.navbar-expand-lg.navbar-light {
        background: rgb(0 0 0 / 0%) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease-in-out;
    }
    nav.navbar .btn1 {
        border: none;
        padding: 0;
        margin: 0;
        width: auto;
        border-radius: none;
    }
    .navbar-collapse {
        backdrop-filter: blur(15px);
        margin-top: 10px;
        padding: 20px;
        border-radius: 10px;
    }
    nav.navbar.navbar-expand-lg.navbar-light img {
        width: 70%;
    }
    .navbar-toggler {
        border: none !important;
        padding: 0;
        outline: none !important;
        box-shadow: none !important;
        width: 40px;
        height: 40px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navbar-toggler-icon {
        background-image: none !important;
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--primary-color, #ff6f00) !important;
        position: relative;
        transition: all 0.3s ease-in-out;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: var(--primary-color, #ff6f00);
        transition: all 0.3s ease-in-out;
    }
    .navbar-toggler-icon::before {
        transform: translateY(-9px);
        left: 0;
    }
    .navbar-toggler-icon::after {
        transform: translateY(9px);
        left: 0;
    }
    .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
        top: 0;
    }
    .btn2 {
        padding: 10px 10px;
        font-size: 14px;
    }
    .btn1 {
        padding: 10px 10px;
        font-size: 14px;
    }
    .client-rating img {
        width: 100%;
    }
    .tab-content>.active .row {
        flex-direction: row;
        flex-wrap: wrap-reverse;
    }
    .tab-content>.active .col-md-4 {
        text-align: center;
        margin-bottom: 40px;
    }
    .zi-tabs {
        background: #0b0b0b;
    }
    .zi-banner {
        height: auto;
        padding: 80px 0 0;
        text-align: center;
    }
    .zi-banner .row {
        margin-top: 50px !important;
        justify-content: center;
    }
    .zi-testimonials-text {
        text-align: center;
        margin-bottom: 30px;
    }
    .client-rating {
        justify-content: center;
        display: flex;
    }
    .slick-prev {
        left: 10px;
    }
    .slick-next {
        right: 10px;
    }
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .btn-wrp {
        justify-content: center;
    }
    .main-pera {
        font-size: 12px;
    }
    .main-heading {
        font-size: 30px;
    }
    .main-heading br {
        display: none;
    }
    .zi-banner h1 {
        font-size: 35px;
    }
    .stats-counter {
        flex-wrap: wrap;
        margin-top: 50px !important;
    }
    .stats-counter .stat {
        width: 50%;
        margin-bottom: 20px;
    }
    .stats-counter .stat h3 {
        font-size: 35px;
    }
    .btn-wrp {
        flex-direction: column;
        align-items: center;
    }
    .btn1,
    .btn2 {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    .zi-tabs .nav-pills {
        flex-direction: row !important;
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    .zi-tabs .nav-pills .nav-link {
        margin-right: 10px;
        font-size: 14px;
        padding: 10px 20px;
    }
    .video-card {
        opacity: 1 !important;
        transform: scale(1) !important;
        padding: 10px 5px;
    }
    .video-testimonial-section {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .zi-banner h1 {
        font-size: 28px;
    }
    .zi-banner-form {
        padding: 25px 15px;
        margin: 0 10px;
    }
    .zi-banner-form h3 {
        font-size: 22px;
    }
    .stats-counter .stat {
        width: 100%;
    }
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-card {
        min-height: auto;
        margin: 5px;
    }
    .video-slider {
        padding: 0 10px;
    }
}

.zi-story {
    padding: 80px 0;
    overflow: hidden;
}

.book-wrapper {
    perspective: 1000px;
}

.floating-book {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease;
    animation: floatAnimation 4s ease-in-out infinite;
}

.tilt-left {
    transform: rotate(-5deg);
}

.tilt-right {
    transform: rotate(5deg);
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.anim-delay-1 {
    animation-delay: 0s;
}

.anim-delay-2 {
    animation-delay: 0.5s;
}

.anim-delay-3 {
    animation-delay: 1s;
}

.anim-delay-4 {
    animation-delay: 1.5s;
}

.floating-book:hover {
    transform: scale(1.1) rotate(0deg) !important;
    animation-play-state: paused;
    cursor: pointer;
}

@media (max-width: 767px) {
    .book-wrapper {
        padding: 10px;
    }
    .floating-book {
        max-width: 150px;
        margin: 0 auto;
        display: block;
    }
}

.nexus-footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)), url("assets/img/footer-bg.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0 20px;
    font-family: sans-serif;
    border-top: 2px solid rgba(255, 111, 0, 0.3);
}

.footer-logo {
    max-width: 220px;
}

.footer-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 25px;
}

.footer-heading {
    color: #ff6f00;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    font-family: "Poppins";
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #ff6f00;
    padding-left: 5px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ff6f00;
    margin-right: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #ff6f00;
    color: #fff;
    transform: translateY(-3px);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-list li i {
    color: #ff6f00;
    margin-right: 15px;
    margin-top: 4px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 13px;
    color: #888;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}


/* Mobile Responsive */

@media (max-width: 991px) {
    .nexus-footer {
        padding: 50px 0 20px;
        text-align: left;
    }
    .footer-heading {
        margin-top: 20px;
        margin-bottom: 15px;
    }
}

a {
    text-decoration: none !important;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.stars-container {
    display: flex;
    gap: 4px;
}

.stars-container i {
    background-color: #00b67a;
    color: #fff;
    padding: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .stars-container i {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

.testimonial-rating {
    display: flex;
    justify-content: left;
    /* Center karne ke liye */
    margin-bottom: 15px;
    margin: 0 21px 10px;
}

.stars-container {
    display: inline-flex;
    gap: 4px;
    /* Stars ke darmian halki space */
    margin: 0 0 0 -20px;
}

.stars-container i {
    background-color: #00b67a;
    color: #fff;
    padding: 6px;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    width: auto;
    height: auto;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .stars-container i {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}


/* End Home CSS */

.zi-services-banner {
    height: auto;
    padding: 70px 0;
}

.zi-cta {
    background: url(../img/cta-banner.png) no-repeat center center;
    background-size: cover;
    align-items: center;
    padding: 70px 0;
    background-color: #0b0b0b;
}

.zi-cta .btn-wrp {
    justify-content: center;
}

img {
    max-width: 100%;
}

.zi-counter {
    background-color: #0a0a0a;
}

.zi-counter .stat {
    text-align: center;
}

.zi-counter .stat h3 {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--text-color-light);
    font-weight: bolder;
}

.zi-counter .stat p {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-color-light);
}

.zi-different-section {
    background-color: var(--color-body);
    color: #fff;
    padding: 70px 0;
}

.nexus-card {
    background-color: #191919;
    padding: 40px 30px;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease;
}

.nexus-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.nexus-card p {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
}

.nexus-card:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.nexus-card.orange-bg h3,
.nexus-card.orange-bg p {
    color: #ffffff;
}

.zi-contact-banner {
    background: url(../img/contact-banner.png) no-repeat center center;
    background-size: cover;
    padding: 70px 0;
    color: #fff;
    height: auto;
}

.zi-contact-banner .row {
    margin-top: 0;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
    margin: 0 0 14px !important;
}

.contact-layout {
    background: #0b0b0b;
    padding: 80px 0;
}


/* FORM CARD */

.form-card {
    background: #141414;
    padding: 35px;
    border-radius: 10px;
}

.form-control {
    background: #eee;
    border: none;
    margin-bottom: 15px;
    padding: 8px;
}

.btn-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-submit:hover {
    background: var(--primary-color);
}

.contact-layout i {
    color: var(--primary-color);
    margin-right: 5px;
}

.zi-portfolio {
    background: var(--color-body);
    padding: 70px 0;
}

.portfolio-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.book-item {
    text-align: center;
    color: #fff;
}

.book-item img {
    width: 100%;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 390px;
    object-fit: cover;
}

.book-item img:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.book-item h6 {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
}

.book-item p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 12px;
}


/* Responsive */

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.nexus-card {
    position: relative;
    text-align: center;
    padding: 28px 22px 22px;
}

.nexus-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.nexus-card .card-icon i {
    font-size: 40px;
    line-height: 1;
}

.proofreading-hero {
    position: relative;
    padding: 70px 0 55px;
    background: url(../img/cta-banner.png) no-repeat center center;
    background-size: cover;
    align-items: center;
}


/* right side warm tint (screenshot jaisa) */


/* .proofreading-hero::after {
    content: "";
    position: absolute;
    inset: -20% -10% -20% 45%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 136, 0, 0.28), transparent 55%), radial-gradient(circle at 60% 70%, rgba(255, 136, 0, 0.18), transparent 60%);
    filter: blur(2px);
    pointer-events: none;
} */

.proofreading-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.proof-title {
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
    line-height: 1.15;
    text-transform: uppercase;
    font-size: clamp(22px, 3.2vw, 40px);
}

.proof-title span {
    color: #ff7a00;
    /* orange line */
}

.proof-desc {
    max-width: 860px;
    margin: 0 auto 26px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}


/* books row */

.book-strip {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    padding-top: 8px;
}

.book-strip img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(0);
    transition: 0.25s ease;
}

.book-strip img:hover {
    transform: translateY(-6px);
}


/* responsive */

@media (max-width: 992px) {
    .book-strip {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        scrollbar-width: thin;
    }
    .book-strip img {
        width: 110px;
        height: 155px;
    }
}

@media (max-width: 576px) {
    .proofreading-hero {
        padding: 55px 0 45px;
    }
    .book-strip img {
        width: 105px;
        height: 148px;
    }
}


/* Pricing Card Styling */

.pricing-card {
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.pricing-card:hover {
    border-color: #e67e22;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 20px;
    border: 1px solid #e67e22;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px 0;
    overflow-x: hidden;
    height: 290px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.pricing-card ul li::before {
    content: "✓ ";
    color: #e67e22;
}


/* Buttons */

.btn-orange {
    background-color: #e67e22;
    color: white;
    width: 100%;
    border-radius: 20px;
}

.btn-outline-orange {
    border: 1px solid #e67e22;
    color: #e67e22;
    width: 100%;
    border-radius: 20px;
}

.btn-outline-orange:hover {
    background: #e67e22;
    color: white;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #ff6f00;
    transition: 0.5s;
}

.dropdown-menu {
    padding: 0;
}

.pricing-card:hover h3 {
    color: #000;
}

.pricing-card:hover li {
    color: #000;
}

.pricing-card:hover a.btn.btn1 {
    background: #ff6f00;
}

.pricing-card:hover .price {
    background: #e67e22;
    color: #fff;
}

.pricing-card:hover {
    border-color: #e67e22;
    background: #fff;
    color: #000;
}

.term2 {
    padding: 60px 0px;
    background-color: rgb(0 0 0 / 95%);
}

.term3 h2 {
    color: #ff6f00;
    /* font-size: 35px; */
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    line-height: 2;
}

.term3 h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
}

.term3 p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "SF UI Text", sans-serif;
    margin-top: 10px;
}

.term4 {
    list-style: disc;
    padding-left: 15px;
}

.term4 li {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: "SF UI Text", sans-serif;
    line-height: 2;
}

.term4 li a {
    color: #ff6f00;
}


/* @media (max-width: 1440px) {
         .zi-banner {
             height: 170vh;
         }
     } */

.navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0ms linear 180ms;
    pointer-events: none;
}

.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0ms;
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    .navbar .dropdown-menu,
    .navbar .dropdown-menu.show {
        transition: none !important;
        transform: none !important;
    }
}

a.nav-link:hover {
    color: #ff6f00 !important;
    transition: 0.3s;
}