body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #ff0000;
    --dark-primary-color: #be0000;
    --btn-hover-color: #8e0000;
    --black: #000;
    --secondary-black: #1a1a1a;
    --white: #ffffff;
    --infrastructure-card-bg: #181818;
    --bg-alt: #f1f5f9;
    --text-dark: #0f172a;
    --section-bold-heading: #1f2937;
    --text-muted: #303133;
    --navy-blue: #0b073c;
    --navy-blue-bg: linear-gradient(135deg, #0b073c, #0e065a);
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    margin-left: 25px;
    transition: 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-brand img {
    width: 280px;
    height: 70px;

}

.custom-toggler {
    border: none !important;
    padding: 0;
    background: transparent !important;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-custom {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .navbar-brand img {
        height: 60px !important;
        width: auto !important;
        margin-top: 0;
    }

    @media (max-width: 380px) {
        .navbar-brand img {
            height: 40px !important;
        }
    }

    .navbar-custom .container {
        margin-top: 0 !important;
        padding-top: 0 !important;
        display: flex;
        align-items: center;
    }

    .custom-toggler {
        margin-top: 0 !important;
        height: 40px;
    }

    .navbar-collapse {
        margin-top: 10px !important;
    }
}


.navbar-custom {
    background: transparent !important;
    transition: all 0.35s ease;
    z-index: 999;
}

.navbar-custom .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    transition: 0.3s;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    background: var(--white) !important;
    border: none;
    padding: 0;
    margin-left: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.dropdown-item {
    color: var(--black) !important;
    padding: 10px 18px;
    font-weight: 500;
    transition: 0.25s;
}

@media (min-width: 992px) {
    .dropdown-item:hover {
        background: var(--primary-color) !important;
        color: var(--white) !important;
    }
}

@media (max-width: 991px) {

    .dropdown-item:hover,
    .dropdown-item:active,
    .dropdown-item:focus {
        background: transparent !important;
        color: var(--primary-color) !important;
    }
}

.navbar-toggler {
    border: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.hamburger-x {
    font-size: 32px;
    color: var(--white);
}

.navbar-custom.scrolled {
    background: var(--white) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.navbar-custom.scrolled .nav-link,
.navbar-custom.scrolled .nav-link:not(.active) {
    color: var(--black) !important;
}

.navbar-custom.scrolled .nav-link.active,
.navbar-custom.scrolled .nav-link:hover {
    color: var(--primary-color) !important;
}


.navbar-custom.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-custom.scrolled .hamburger-x {
    color: var(--black);
}

.dropdown-item.active {
    background: var(--white);
    color: var(--dark-primary-color) !important;
}

.dropdown-item.active:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

@media (max-width: 991px) {

    .navbar-collapse {
        background: var(--white) !important;
        padding: 15px;
        border-radius: 8px;
    }

    .navbar-custom .nav-link {
        color: var(--black) !important;
        background: transparent !important;
    }

    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link:active,
    .navbar-custom .nav-link:focus {
        color: var(--primary-color) !important;
        background: transparent !important;
    }

    .dropdown-menu {
        background: var(--white) !important;
    }

    .dropdown-item {
        color: var(--black) !important;
        background: transparent !important;
    }

    .dropdown-item:hover,
    .dropdown-item:active,
    .dropdown-item:focus {
        background: var(--primary-color) !important;
        color: var(--white) !important;
    }
}

/* smooth dropdown */
@media (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px) scale(0.98);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .navbar .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
}

/* ---------------- HERO BANNER SECTION ---------------- */
.banner-section {
    position: relative;
    height: 100vh;
    background: var(--black);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

/* ---------------- RIGHT left TOP round ---------------- */
.glow-right-top {
    position: absolute;
    top: -140px;
    right: -140px;
    width: 360px;
    height: 360px;
    pointer-events: none;
    z-index: 1;
}

.glow-right-top::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30%;
    background: rgba(255, 0, 0, 0.646);
    filter: blur(55px);
    animation: pulseGlow 5s ease-in-out infinite;
}

.glow-img {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 150px;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 2;

    animation: rotateIcon 10s linear infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* ------ right side circle animation ------ */
@keyframes rotateIcon {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ------ left side dot ----- */
.glow-left-center {
    position: absolute;
    top: 20px;
    left: 0;
    width: 560px;
    height: 560px;
    pointer-events: none;
    z-index: 1;

}

.glow-left-center::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.55);
    filter: blur(85px);
    animation: pulseGlow-left 5s ease-in-out infinite;
}


.left-glow-img {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 30px;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: triangleMove 10s linear infinite;
}

/* ----- dot animation left side ----- */
@keyframes pulseGlow-left {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

@keyframes triangleMove {
    0% {
        transform: translate(-50%, -60%);
    }

    33% {
        transform: translate(-20%, -10%);
    }

    66% {
        transform: translate(-80%, -10%);
    }

    100% {
        transform: translate(-50%, -60%);
    }
}

/* -----------bottom round ---------------- */
.glow-bottom-center {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
}

.bottom-glow-img {
    width: 150px;
    height: auto;
    display: block;

    animation: centerround 8s linear infinite;
}

@keyframes centerround {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 950px) {

    .banner-section {
        position: relative;
        overflow: hidden;
    }

    .banner-section::before {
        content: "";
        position: absolute;
        top: -180px;
        left: 100%;
        transform: translateX(-50%);
        width: 420px;
        height: 420px;
        background: rgba(255, 0, 0, 0.75);
        filter: blur(120px);
        z-index: 0;
    }

    .carousel-inner {
        position: relative;
        overflow: hidden;
    }

    .carousel-inner::before {
        content: "";
        position: absolute;
        top: 40%;
        left: 0;
        transform: translateX(-50%);
        width: 220px;
        height: 220px;
        background: rgba(255, 0, 0, 0.75);
        filter: blur(160px);
        border-radius: 50%;
        z-index: 0;
    }


}

@media (max-width: 425px) {

    .banner-section::before {
        content: "";
        position: absolute;
        top: -180px;
        left: 100%;
        transform: translateX(-50%);
        width: 220px;
        height: 420px;
        background: rgba(255, 0, 0, 0.75);
        filter: blur(120px);
        z-index: 0;
    }

}


.hero-container {
    position: relative;
    z-index: 3;
}

.hero-small {
    font-size: 14px;
    opacity: 0.8;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-red {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-red:hover {
    background: var(--dark-primary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.hero-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.hero-img-wrap img {
    width: 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 44, .6);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(255, 107, 44, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 44, 0);
    }
}

.bottom-glow-img-only {
    position: absolute;
    left: 50%;
    bottom: 8%;
    width: 40px;
    transform: translateX(-50%);
    animation: rotateOnly 10s linear infinite;
    z-index: 2;
}

@keyframes rotateOnly {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.hero-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.hero-dots {
    bottom: 40px;
    z-index: 10;
}

.hero-dots .dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #777 !important;
    border: none !important;
    margin: 0 6px !important;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot.active {
    background-color: var(--primary-color) !important;
    width: 25px !important;
    border-radius: 10px !important;
}

@media (max-width: 768px) {
    .hero-dots {
        margin: auto;
    }
}

@media (max-width: 575px) {

    .hero-dots {
        bottom: 20px;
        width: 100%;
        margin: auto;
    }

    .hero-dots .dot {
        width: 8px !important;
        height: 8px !important;
    }

    .hero-dots .dot.active {
        width: 20px !important;
    }
}

@media (max-width: 991px) {
    .banner-section {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 36px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-small {
        display: block;
        text-align: center;
    }

    .glow-right-top,
    .glow-left-center {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .btn-red {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/*======================= INNER SECTION - BANNER SECTION ====================== */
.page-banner-area {
    min-height: 450px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.page-banner-area nav {
    position: absolute;
    bottom: 0px;
    right: 30px;
}

@media (max-width: 991px) {
    .page-banner-area nav {
        right: 0px;
    }
}

.banner-title {
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: capitalize;
    font-size: 45px;
    font-weight: 700;
    color: rgb(250, 242, 242);
    text-shadow: 1px 1px 2px rgb(219, 219, 219);
}

.banner-desc {
    font-size: 1.05rem;
    color: var(--white);
    max-width: 600px;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .banner-title {
        margin-top: 40px;
        margin-bottom: 10px;
        font-size: 32px;
    }

    .banner-desc {
        max-width: 100%;
        font-size: 1rem;
    }
}

@media (max-width: 532px) {
    .banner-title {
        margin-top: 40px;
        margin-bottom: 10px;
        font-size: 28px;
    }

    .banner-desc {
        max-width: 100%;
        font-size: .9rem;
    }
}


/* rotate circle */

.rotate-wrap {
    position: absolute;
    left: 0px;
    bottom: 200px;
    width: 220px;
    height: 220px;
    pointer-events: none;
}

.rotate-wrap img {
    width: 70%;
    height: 100%;
    object-fit: contain;
    animation: spin 30s linear infinite;
    transform-origin: left;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 575px) {
    .rotate-wrap {
        width: 150px;
        height: 150px;
        left: 0px;
        bottom: 60px;
    }

    .rotate-wrap img {
        width: 70%;
        height: 100%;
        object-fit: contain;
        animation: spin 50s linear infinite;
        transform-origin: center;
    }
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
    background: rgba(228, 0, 0, 0.176);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 10px;
    margin: 0;
    border: 1px solid rgba(147, 0, 0, 0.192);
    box-shadow: rgba(247, 247, 247, 0.2) 0px 7px 29px 0px;
    font-size: 16px;
    text-transform: capitalize;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #bfbfbf;
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: " »";
    color: var(--white);
    padding: 0 12px;
}

.banner-shapes .circle {
    width: 770px;
    height: 770px;
    position: absolute;
    top: -300px;
    left: -200px;
    background: var(--white);
    border-radius: 50%;
    z-index: -2;
}

@media (max-width: 991px) {
    .breadcrumb {
        padding: 8px 13px;
        border-radius: 0;
    }

    .banner-shapes .circle {
        width: 400px;
        height: 400px;
    }
}

.banner-shapes img {
    position: absolute;
    max-width: 10%;
    z-index: -1;
}

.banner-shapes .shape-one {
    left: 6%;
    top: 35%;
    animation: down-up-two 15s infinite;
}

.banner-shapes .shape-two {
    right: 6%;
    top: 65%;
    animation: upDownLeft 20s infinite;
}

/* =========================== Core Features section ===================== */
.core-features {
    background: #f0f8fe;
    background-image: url('./image/freature-bg-line.png');
}

.core-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--secondary-black);
    line-height: 1.2;
    text-transform: capitalize;
    margin: 15px 0 25px;
}

@media (max-width: 768px) {
    .core-title {
        font-size: 30px;
        font-weight: 700;
        margin: 0;
    }
}

.feature-item-five {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-align: center;
    padding: 35px 20px;
    border-radius: 7px;
    margin-bottom: 30px;
    background-color: var(--white);
}

.feature-item-five:before {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
}

.feature-item-five i {
    line-height: 1;
    font-size: 60px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 10px;
    color: #f84747;
    display: inline-block;
}

.feature-item-five:hover {
    background-image: url('../images/background/feature-bg.png');
    background-size: cover;
    background-position: center;
    background-color: #f84747;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-15px);
    transform: translateY(-59px);
    transform: scale(1.1);
    filter: brightness(1.2);
}

.feature-item-five:hover i,
.feature-item-five:hover h5,
.feature-item-five:hover h5 a {
    color: var(--white);

}

.feature-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature-icon:hover {
    color: var(--white);
}


.feature-item-five h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--section-bold-heading);
    line-height: 1.4;
    text-transform: capitalize;

}

@media (max-width: 768px) {
    .feature-item-five {
        padding: 15px;
        margin-bottom: 20px;
    }

    .feature-item-five h5 {
        font-size: 16px;
    }
}

/*========================= ABOUT US SECTION ======================== */
.about-section {
    padding: 50px 0px;
}

.about-sub-heading {
    font-size: 18px;
    font-weight: bold;
    color: var(--section-bold-heading);
}

.core-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.core-subtitle .dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .core-subtitle {
        font-size: 0.8rem;
    }

    .core-subtitle .dot {
        width: 4px;
        height: 4px;
    }
}

.about-image-one {
    position: relative;
    width: 80%;
    height: 70%;
    background-size: cover;
}

.about-image-one-services {
    position: relative;
    background-size: cover;
}

.about-image-one img:first-child,
.about-image-one-services img:first-child {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-image-one .image-left,
.about-image-one-services .image-lef {
    position: absolute;
    left: -30px;
    bottom: -25px;
    max-width: 120px;
}

.about-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-squire-shape {
    position: relative;
    z-index: 1;
}

.bg-squire-shape::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #ef3805;
    z-index: -1;
    transform: rotate(-10deg);
    border-radius: 16px;
    animation: semi_rotated_two 20s infinite ease-in-out;
}

.about-content-one p {
    font-size: 16px;
    line-height: 1.7;
    color: #7a7a7a;
    line-height: 1.80;
}

.about-btn {
    position: relative;
    padding: 12px 34px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s ease;
}

.about-content-one {
    padding: 0;
}

.about-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    color: var(--white);
    background: radial-gradient(circle, rgba(255, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 97%);
    box-shadow: rgba(248, 5, 5, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    z-index: -1;
    transition: width 0.4s ease;
}

.about-btn:hover {
    color: var(--white);
}

.about-btn:hover::before {
    width: 100%;
}

.wow {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.wow.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {

    .about-image-one,
    .about-image-one-services {
        width: 50%;
        height: 50%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px 0px;
    }

    .about-content-one {
        width: 90%;
        margin: auto;
    }

    .about-content-one p {
        font-size: 15px;
    }

    .about-image-one {
        width: 50%;
        height: 40%;
    }

    .about-image-one-services {
        width: 60%;
        height: 50%;
    }

    .about-image-one .image-left,
    .about-image-one-services .image-left {
        display: none;
    }

    .about-btn {
        background: var(--primary-color);
        color: var(--white);
    }

    .about-btn:hover {
        background: var(--dark-primary-color);
        border: 2px solid var(--dark-primary-color);
        color: var(--white);
    }
}

@media (max-width: 532px) {
    .about-image-one {
        width: 70%;
    }

    .about-image-one-services {
        width: 90%;
        height: auto;
    }

    .about-content-one {
        width: 100%;
    }
}


@keyframes semi_rotated_two {

    0%,
    100% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(-5deg);
    }
}

/* ================= FOOTER SECTION STYLE START ===================== */
.main-footer {
    background: #0b0b0b;
    background-image: url("../images/shapes/multiple-3d-squar-borders.webp");
    color: #cfcfcf;
    position: relative;
    padding-top: 30px;
}

.main-footer p {
    color: #bdbdbd;
    line-height: 1.7;
    font-size: 15px;
}

.footer-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;

}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    margin-top: 8px;
}


.footer-logo img {
    max-width: 170px;
}

.social-style-two {
    padding: 5px 0px;
}

.social-style-two a {
    width: 30px;
    height: 30px;
    background-color: var(--white);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
    list-style: none;
    text-decoration: none;
    margin: 2px;
    font-size: 15px;
}

.social-style-two a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.widget_nav_menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.widget_nav_menu ul li {
    margin-bottom: 10px;
}

.widget_nav_menu ul li a {
    color: #bdbdbd;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.widget_nav_menu ul li a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: 0.3s;
}

.widget_nav_menu ul li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}


.widget_newsletter input {
    width: 80%;
    padding: 14px 18px;
    border-radius: 6px;
    border: none;
    outline: none;
    margin-bottom: 12px;
    background: #1c1c1c;
    color: var(--white);
}

.widget_newsletter input::placeholder {
    color: #9a9a9a;
}

.widget_newsletter .theme-btn {
    width: 80%;
    padding: 14px;
    border-radius: 6px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.widget_newsletter .theme-btn:hover {
    background: var(--dark-primary-color);
}


/* --------- FOOTER - TERMS AND COPYRIGHTS SECTION ------------*/
.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.footer-bottom-terms ul li {
    position: relative;
}

.footer-bottom-terms ul li a {
    color: #bdbdbd;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom-terms ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom-terms ul li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -14px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0;
}

.footer-bottom p {
    margin: 0;
    color: #bdbdbd;
    font-size: 14px;
}

@media (max-width: 767px) {
    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-terms ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom-terms ul {
        gap: 15px;
    }

    .footer-bottom-terms ul li:not(:last-child)::after {
        content: "|";
        position: absolute;
        right: -9px;
        color: rgba(255, 255, 255, 0.3);
    }

}

.footer-contact-info {
    color: var(--white);
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon i {
    color: var(--primary-color);
    font-size: 15px;

}

.footer-contact-icon:hover {
    transform: translateY(-3px);


}

.footer-contact-text {
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-text a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.25s ease;

}

.footer-contact-text a:hover {
    color: var(--primary-color);
}

.footer-phone {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-slash {
    margin: 0 6px;
    color: #bdbdbd;
}

/* ================== PROJECT SECTION START ===============*/
.project-section-area {
    padding: 50px 0;
}

.project-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: block;
}

.laptop-frame {
    background: var(--black);
    padding: 35px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    border-radius: 5px;
}

.laptop-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 -120px 120px rgba(0, 0, 0, 0);
    transition: 0.4s;
}

.project-card:hover .laptop-frame::after {
    box-shadow: inset 0 -140px 120px rgba(0, 0, 0, 0.85);
}

.card-overlay {
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.project-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-left h5 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.overlay-left p {
    font-size: 12px;
    margin: 5px 0 0;
}

.project-arrow-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.project-arrow-btn:hover {
    background: var(--dark-primary-color);
    box-shadow: rgba(179, 179, 180, 0.82) 0px 7px 29px 0px;
}

.project-card:hover .card-image {
    transform: scale(1.05);
}

.image-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.image-popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
}

.close-btn:hover {
    color: var(--dark-primary-color);
}

/* ------------ Smooth Fading for Filtering ------- */
.project-card.hide-item {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    font-size: 20px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    z-index: 10000;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.popup-nav:hover {
    background: var(--dark-primary-color);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .project-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .laptop-frame::after {
        box-shadow: inset 0 -140px 120px rgba(0, 0, 0, 0.85) !important;
    }

    .card-overlay {
        opacity: 1 !important;
        transform: translateY(0) !important;
        bottom: 20px;
    }

    .overlay-left {
        max-width: 75%;
    }

    .card-image {
        height: 200px;
    }

    .popup-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(128, 128, 128, 0.164);
        color: var(--white);
        border: none;
        font-size: 10px;
        padding: 8px 10px;
        cursor: pointer;
        border-radius: 5px;
        transition: 0.3s;
        z-index: 10000;
    }

    .popup-nav:hover {
        background: var(--dark-primary-color);
        border-radius: 5px;
    }
}


@media (max-width: 576px) {
    .project-row {
        grid-template-columns: 1fr;
    }
}

/* =============== CONTACT US SECTION STYLE START ============== */
.contact-section {
    padding: 50px 0;
    background-image: url("../images/shapes/pricing-bg-dots.png");
}

.contact-info-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-desc {
    color: gray;

}

.highlight-text {
    color: var(--primary-color);
}

.info-box {
    border: 1px solid #333;
    padding: 40px;
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.icon-circle {
    min-width: 40px;
    height: 40px;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 16px;
}

.info-text p {
    margin: 0 0 4px 0;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.info-text a {
    display: block;
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.info-text a:hover {
    color: var(--dark-primary-color);
    text-decoration: none;
}

.contact-card {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    color: #333;
}

.contact-card h3 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.btn-send {
    background-color: var(--dark-primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    width: 100%;
    font-weight: 600;
    transition: 0.3s;
}

.btn-send:hover {
    background-color: var(--btn-hover-color);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .contact-info-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .info-box {
        padding: 25px;
    }

    .icon-circle {
        min-width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 15px;
    }

    .info-text p {
        font-size: 0.85rem;
    }

    .info-text a {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .form-control {
        padding: 10px 12px;
    }

    .btn-send {
        padding: 10px;
        font-size: 0.9rem;
    }
}


/* --------- contact map section style start ---------*/
.map-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.map-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0px;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

@media (min-width: 992px) {
    .map-wrapper {
        max-width: 75%;
    }
}

@media (min-width: 1400px) {
    .map-wrapper {
        max-width: 50%;
    }
}

/* =============== SERVICE SECTION STYLE START - INDEX PAGE =====================*/
.service-area {
    background-color: rgba(227, 227, 227, 0.174);
    overflow-x: hidden;
}

.slanted-title {
    text-transform: uppercase;
    transform: skewX(-10deg);
    display: inline-block;
    color: #fbfafa;
    margin-bottom: 40px;
    font-size: calc(1.5rem + 1.5vw);
}

.swiper {
    padding: 60px 20px 100px !important;
}

.swiper-slide:nth-child(odd) .service-card {
    animation: floating 4s ease-in-out infinite;
}

.swiper-slide:nth-child(even) .service-card {
    animation: floating-reverse 4s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floating-reverse {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }
}

.swiper-pagination-bullet {
    transition: all 0.3s ease;
    background-color: rgb(26, 26, 26);

}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    height: 8px;
    border-radius: 10px;
    background: var(--dark-primary-color);

}

.service-card {
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 430px;
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #0e0e0e;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-10deg);
}

.inner-service-section {
    max-width: 1000px;
    margin: auto;
}

.service-inner-card {
    padding: 20px 30px;
}

.service-card-inner {
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #0e0e0e;
    margin: 0 auto;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white);
    flex-shrink: 0;
}

.service-text h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c2c2c;
    text-transform: uppercase;
    font-weight: 600;

}

.service-text p {
    color: #505050;
    text-transform: capitalize;
    width: 100%;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.service-list li {
    color: #505050;
    font-size: 15px;
    margin-bottom: 5px;
    position: relative;
    text-align: left;
    padding-left: 22px;
}

.service-list li::before {
    content: "◈";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--navy-blue);
    font-size: .75rem;
}

@media (min-width: 1200px) {
    .five-cols .col-xl-custom {
        width: 20%;
        flex: 0 0 auto;
    }
}

@media (min-width: 992px) {
    .zigzag-card:nth-child(odd) {
        transform: translateY(-20px);
    }

    .zigzag-card:nth-child(even) {
        transform: translateY(20px);
    }

    .service-card {
        animation: floating 4s ease-in-out infinite;
    }

    .zigzag-card:nth-child(even) .service-card {
        animation: floating-reverse 4s ease-in-out infinite;
    }
}

@media (max-width: 991px) {
    .zigzag-card {
        transform: none !important;
        margin-bottom: 20px;
    }

    .service-card {
        animation: none !important;
        height: auto;
        min-height: 300px;
    }
}

/* ----------- SERCICES CARD COLOR VARIATIONS ------- */
/* blue */
.card-blue {
    background-color: #eef5ff;
}

.card-blue:hover {
    box-shadow: 0 0 18px 4px rgba(83, 149, 255, 0.279) !important;
}

.icon-blue {
    background-color: #4d5ce7;
    box-shadow: 0 0 18px 4px rgba(92, 130, 255, 0.724) !important;
}

.btn-blue {
    box-shadow: 0 0 18px 4px rgba(83, 149, 255, 0.279);
}

.btn-blue:hover {
    background-color: #4d5ce7;
    color: var(--white);
}

/* skyblue */
.card-sky {
    background-color: #ddf4fd;
}

.card-sky:hover {
    box-shadow: 0 0 18px 4px rgba(63, 163, 202, 0.466) !important;
}

.icon-sky {
    background-color: #16b4f2;
    box-shadow: 0 0 18px 4px rgba(81, 206, 255, 0.726);
}

.btn-sky {
    box-shadow: 0 0 18px 4px rgba(81, 206, 255, 0.292);
}

.btn-sky:hover {
    background-color: #16b4f2;
    color: var(--white);
}

/* yellow */
.card-yellow {
    background-color: #fdfaef;
}

.card-yellow:hover {
    box-shadow: 0 0 18px 4px rgba(250, 202, 72, 0.274) !important;
}

.icon-yellow {
    background-color: #f2ba22;
    box-shadow: 0 0 18px 4px rgba(250, 203, 72, 0.724);
}

.btn-yellow {
    box-shadow: 0 0 18px 4px rgba(250, 202, 72, 0.274);
}

.btn-yellow:hover {
    background-color: #f2ba22;
    color: var(--white);
}

/* purple */
.card-purple {
    background-color: #f9f2ff;
}

.card-purple:hover {
    box-shadow: 0 0 18px 4px rgba(186, 113, 255, 0.247) !important;
}

.icon-purple {
    background-color: #8400ff;
    box-shadow: 0 0 18px 4px rgba(187, 113, 255, 0.8);
}

.btn-purple {
    box-shadow: 0 0 18px 4px rgba(186, 113, 255, 0.247);
}

.btn-purple:hover {
    background-color: #8400ff;
    color: var(--white);
}

/* orange */
.card-orange {
    background-color: #fff3e8;
}

.card-orange:hover {
    box-shadow: 0 0 18px 4px rgba(244, 148, 70, 0.279) !important;
}

.icon-orange {
    background-color: #ff7506;
    box-shadow: 0 0 18px 4px rgba(244, 148, 70, 0.733);
}

.btn-orange {
    box-shadow: 0 0 18px 4px rgba(244, 148, 70, 0.279);
}

.btn-orange:hover {
    background-color: #ff7506;
    color: var(--white);
}

/* green */
.card-green {
    background-color: #dffbf0;
}

.card-green:hover {
    box-shadow: 0 0 18px 4px rgba(41, 239, 166, 0.292) !important;
}

.icon-green {
    background-color: #41d8a8;
    box-shadow: 0 0 18px 4px rgba(41, 239, 166, 0.708);
}

.btn-green {
    box-shadow: 0 0 18px 4px rgba(41, 239, 166, 0.292);
}

.btn-green:hover {
    background-color: #41d8a8;
    color: var(--white);
}

/* pink */
.card-pink {
    background-color: #ffedf9;
}

.card-pink:hover {
    box-shadow: 0 0 18px 4px rgba(253, 88, 190, 0.265) !important;
}

.icon-pink {
    background-color: #ae2469;
    box-shadow: 0 0 18px 4px rgba(253, 88, 190, 0.669);
}

.btn-pink {
    box-shadow: 0 0 18px 4px rgba(253, 88, 190, 0.265);
}

.btn-pink:hover {
    background-color: #9e0551;
    color: var(--white);
}

.read-more-btn {
    text-decoration: none;
    color: black;
    align-items: center;
    transition: 0.3s;
    border-radius: 20px;
    background-color: transparent;
    padding: 10px 20px;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floating-reverse {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }
}

@media (max-width: 768px) {
    .card-pink {
        box-shadow: 0 0 18px 4px rgba(253, 88, 190, 0.265) !important;
    }

    .card-green {
        box-shadow: 0 0 18px 4px rgba(41, 239, 166, 0.292) !important;
    }

    .card-orange {
        box-shadow: 0 0 18px 4px rgba(244, 148, 70, 0.279) !important;
    }

    .card-purple {
        box-shadow: 0 0 18px 4px rgba(186, 113, 255, 0.247) !important;
    }

    .card-yellow {
        box-shadow: 0 0 18px 4px rgba(250, 202, 72, 0.274) !important;
    }

    .card-sky {
        box-shadow: 0 0 18px 4px rgba(63, 163, 202, 0.466) !important;
    }

    .card-blue {
        box-shadow: 0 0 18px 4px rgba(83, 149, 255, 0.279) !important;
    }
}


/* ============= scroll to top =============== */
.prgoress_indicator {
    position: fixed;
    right: 30px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--primary-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: var(--primary-color);
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}

/* =================== VISION, MISSION & VALUE SECTION STYLE START - ABOUT US PAGE ==================== */


/* ------ Vision & mission style ----------- */
.vision-mission-dark-bg {
    background: #181b21;
    padding: 50px 0px;
    overflow: hidden;
}

.vmv-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    padding-bottom: 150px;
}

/* LEFT CONTENT */
.vmv-text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vmv-item {
    padding: 0;
}

.vision-mission-icon-and-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.vmv-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: rgb(248, 71, 71);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(250, 81, 39, 0.35);
}

.vmv-icon i {
    color: #fff;
    font-size: 20px;
}

.vmv-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.vision-mission-heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.vmv-info p {
    color: #c7c7c7;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.vmv-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vmv-frame {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.vmv-frame img {
    max-width: 100%;
    object-fit: contain;
    display: block;
}


@media (max-width: 991px) {

    .vision-mission-dark-bg {
        padding: 60px 0;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 80px;
    }

    .vision-mission-heading {
        font-size: 28px;
    }

    .vmv-text-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 30px;
    }

    .vmv-frame img {
        max-width: 95%;
        margin: auto;
    }
}


@media (max-width: 768px) {

    .vision-mission-dark-bg {
        padding: 50px 0;
    }

    .vmv-frame img {
        max-width: 80%;
        margin: auto;
    }

    .vmv-text-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 30px;
    }

    .vmv-grid {
        gap: 30px;
        padding-bottom: 80px;
    }

    .vision-mission-icon-and-heading {
        gap: 12px;
    }

    .vmv-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .vmv-icon i {
        font-size: 18px;
    }

    .vision-mission-heading {
        font-size: 24px;
    }

    .vmv-info p {
        font-size: 15px;
        line-height: 1.7;
    }

}

@media (max-width: 720px) {
    .vmv-text-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 575px) {

    .vmv-grid {
        padding: 0 15px 80px;
    }

    .vmv-frame img {
        max-width: 100%;
    }

    .vision-mission-icon-and-heading {
        flex-direction: row;
        align-items: center;
    }

    .vision-mission-heading {
        font-size: 22px;
    }

    .vmv-info p {
        font-size: 14px;
    }


}

/* ------ Value section style ----------- */
.vmv-section {
    padding: 30px 0 50px;
    background-color: var(--white);
    position: relative;
    z-index: 1;

}

.values-section {
    padding: 40px;
    margin-top: 20px;
    background: #f0f8fe;
    border-radius: 50px;
    text-align: center;
    z-index: 2;
    margin-top: -120px;
    box-shadow: rgba(222, 221, 221, 0.728) 0px 2px 8px 0px;
}

.values-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--section-bold-heading);
}

.values-header p {
    color: rgb(101, 101, 101);
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: left;
}

.value-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 30px;
    color: #f84747;
    margin-bottom: 15px;
}

.value-card h4 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--section-bold-heading);
}

.value-card p {
    font-size: 14px;
    color: #777;
}


.value-card {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card:before {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
}

.value-card i {
    line-height: 1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    font-size: 30px;
    color: #f84747;
    margin-bottom: 15px;
}

.value-card:hover {
    background-image: url('../images/background/feature-bg.png');
    background-size: cover;
    background-position: center;
    background-color: #f84747;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-15px);
    transform: translateY(-59px);
    transform: scale(1.1);
    filter: brightness(1.2);
}

.value-card:hover i,
.value-card:hover h4,
.value-card:hover p {
    color: var(--white);

}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .values-header h2 {
        font-size: 24px;
    }

    .values-header p {
        font-size: 14px;
    }

}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .values-section {
        border-radius: 30px;
        padding: 40px 20px;
    }
}

/* =================== CAREER SECTION STYLE START ================ */

/* ------------- Job opening position -------------- */
.job-card {
    background: var(--white);
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.job-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #666;
}

.job-meta i {
    color: var(--dark-primary-color);
    margin-right: 5px;
}

.job-desc strong {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.job-desc ul {
    padding-left: 18px;
    font-size: 13px;
    color: #555;
}

.job-desc li {
    margin-bottom: 5px;
}

.apply-btn {
    margin-top: auto;
    background: var(--dark-primary-color);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.apply-btn:hover {
    background: var(--btn-hover-color);
    transform: translateY(-2px);
}

/* ------------ Application form section ---------- */
.career-form-section {
    padding: 60px 0;
}

.career-form {
    max-width: 500px;
    margin: auto;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.career-form input,
.career-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.career-form input:focus,
.career-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.career-form-button {
    width: 100%;
    text-align: center;
}

.career-submit-btn {
    background: var(--dark-primary-color);
    color: var(--white);
    border: none;
    padding: 11px;
    border-radius: 8px;
    font-weight: 500;
}

.career-submit-btn:hover {
    background: var(--btn-hover-color);
}

@media (max-width: 768px) {
    .job-meta {
        flex-direction: column;
        gap: 6px;
    }
}

.open-position-section {
    background-color: rgba(255, 206, 206, 0.233);
    width: 100%;

}

/* ---------------------WEB DEVELOPMENT SERVICE STYLE-------------------------- */
/* -------------- work process section ----------- */
.work-process-area {
    position: relative;
    padding-bottom: 50px;
}

.section-title {
    text-align: center;
}

.work-process-wrap {
    position: relative;
    z-index: 1;
}

.work-process-item {
    text-align: center;
    padding: 0 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.work-process-item.mt-30 {
    margin-top: 30px;
}

.work-process-item.mt-45 {
    margin-top: 45px;
}

.work-process-item.mt-55 {
    margin-top: 55px;
}

.work-process-item.mt-70 {
    margin-top: 70px;
}

.work-process-item .icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 15px;
}

.work-process-item .icon .number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70%, -60%) rotate(-50deg);
    font-size: 85px;
    font-weight: 700;
    opacity: 0.15;
    color: transparent;
    -webkit-text-stroke: 1px #293043;
    z-index: -1;
}

.work-process-item .icon i,
.work-process-item .icon svg,
.work-process-item .icon img {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin: auto;
    transition: 0.4s ease;
}

.work-process-item .icon img {
    padding: 14px;
    object-fit: contain;
    display: block;
}

.work-process-item:hover .icon img {
    background: var(--dark-primary-color);
}

.work-process-item .icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--dark-primary-color);
    transform: scale(0);
    transition: 0.5s;
    z-index: -1;
    text-align: center;
}

.work-process-item:hover .icon i {
    background: var(--dark-primary-color);
}

.work-process-item:hover .icon::before {
    transform: scale(1);
    animation: rotateCircle 5s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

.work-process-item h4 {
    margin-bottom: 10px;
    color: var(--section-bold-heading);
    font-size: 21px;
}

.work-process-item .approach-heading {
    font-size: 20px !important;
    font-weight: 600;
}

.work-process-item p {
    font-size: 16px;
    margin: 0;
    color: rgb(107, 107, 107);
}

.work-process-shape {
    position: absolute;
    top: -2%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.work-process-shape img {
    width: 100%;
    height: auto;

    opacity: 0.99;
    filter: contrast(240%) saturate(120%) brightness(95%);

    transform: scale(1.10);
}

.work-process-item .icon {
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    .work-process-shape {
        display: none;
    }

    .work-process-item.mt-30,
    .work-process-item.mt-45,
    .work-process-item.mt-55,
    .work-process-item.mt-70 {
        margin-top: 0 !important;
    }

    .work-process-item {
        background: var(--white);
        padding: 20px;
        border-radius: 18px;
        box-shadow: 0 5px 10px rgba(252, 217, 217, 0.623);
        margin-bottom: 25px;
        transition: 0.3s ease;
    }

    .work-process-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(255, 181, 181, 0.447);
    }

    .work-process-item h4 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .work-process-item p {
        font-size: 15px;
        line-height: 1.6;
    }

    .work-process-item .icon .number {
        display: none;
    }

    .work-process-item .icon i,
    .work-process-item .icon img {
        width: 80px;
        height: 80px;
        line-height: 90px;
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .work-process-item .approach-heading {
        font-size: 18px !important;
        font-weight: 600;
    }

    .work-process-item .icon {
        margin-bottom: 1px;
        padding: 10px;
    }

    .work-process-item h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .work-process-item p {
        font-size: 13px;
    }

    .work-process-item .icon i,
    .work-process-item .icon img {
        width: 70px;
        height: 70px;
        font-size: 35px;
        line-height: 80px;
    }

    .work-process-item {
        margin-top: 0 !important;
    }

    .work-process-item .icon .number {
        font-size: 65px;
    }

}

/* --------------  SERVICES SECTION - CARD STYLE ------------- */
.what-we-do-service-section {
    padding: 50px 0;
    margin: auto;
}

.main-grid {
    margin: 0 auto;
    padding: 20px 0px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.web-card {
    position: relative;
    color: var(--white);
    background: var(--infrastructure-card-bg);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: 0.4s ease;
}

.web-card::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: inherit;
    z-index: 0;
}

.web-dev-card-bg1::before {
    /* background: linear-gradient(135deg, var(--black), #6a0320); */
    background: linear-gradient(135deg, var(--black), #08018a8c);
    box-shadow: rgba(14, 24, 218, 0.518) 0px 2px 8px 0px;
}

.web-dev-card-bg2::before {
    background: linear-gradient(135deg, var(--black), #3f018a8c);
    box-shadow: rgba(92, 14, 218, 0.518) 0px 2px 8px 0px;
}

.web-dev-card-bg3::before {
    background: linear-gradient(135deg, var(--black), #7b7b258c);
    box-shadow: rgba(218, 215, 14, 0.518) 0px 2px 8px 0px;
}

.web-dev-card-bg4::before {
    background: linear-gradient(135deg, var(--black), #ab67018c);
    box-shadow: rgba(218, 150, 14, 0.518) 0px 2px 8px 0px;
}

.web-dev-card-bg5::before {
    background: linear-gradient(135deg, var(--black), #4a8a018c);
    box-shadow: rgba(126, 218, 14, 0.518) 0px 2px 8px 0px;
}

.web-dev-card-bg6::before {
    background: linear-gradient(135deg, var(--black), #018a4a8c);
    box-shadow: rgba(14, 218, 150, 0.518) 0px 2px 8px 0px;
}

.web-dev-card-bg7::before {
    background: linear-gradient(135deg, var(--black), #8a01818c);
    box-shadow: rgba(218, 14, 187, 0.518) 0px 2px 8px 0px;
}

.web-dev-card-bg8::before {
    background: linear-gradient(135deg, var(--black), #6a0320);
    box-shadow: rgba(218, 14, 68, 0.518) 0px 2px 8px 0px;
}

/* --------- services icon colors------- */
.web-header i {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    border: 1.5px solid rgba(239, 62, 62, 0.6);
    text-shadow: 0 0 10px rgba(202, 0, 0, 0.6);
    box-shadow: 0 4px 12px rgba(239, 62, 62, 0.45);
    background: transparent;
    transition: all 0.3s ease;
}

.web-card:hover .web-header i {
    background: #fff;
    box-shadow: none;
    text-shadow: none;
    border: none;
}

.web-dev-card-bg1:hover i {
    color: rgb(35, 0, 210);
}

.web-dev-card-bg2:hover i {
    color: #47009f;
}

.web-dev-card-bg3:hover i {
    color: #919100;
}

.web-dev-card-bg4:hover i {
    color: #b85901;
}

.web-dev-card-bg5:hover i {
    color: #45a802;
}

.web-dev-card-bg6:hover i {
    color: #007931;
}

.web-dev-card-bg7:hover i {
    color: #8a0181;
}

.web-dev-card-bg8:hover i {
    color: #8a012f;
}


.dm-card-bg::before {
    background: linear-gradient(135deg, var(--black), #3f018a8c);
    box-shadow: rgba(73, 0, 243, 0.438) 0px 2px 8px 0px;
}

.web-card:hover::before {
    transform: scale(1);
    transform-origin: bottom right;
}

.web-card:hover {
    transform: translateY(-6px);
}

.web-header {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.web-header h3 {
    font-size: 1.4rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.web-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.web-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.web-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
    transition: 0.3s ease;
}

.web-card ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
}

.web-card ul li:hover {
    color: var(--white);
    transform: translateX(4px);
}

@media (max-width: 768px) {

    .main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;

    }

    .web-card {
        padding: 25px;
    }

    .web-card::before {
        transform: scale(1);
    }

    .web-card:hover {
        transform: none;
        box-shadow: rgba(0, 77, 243, 0.2) 0px 2px 8px;
    }

    .web-header {
        justify-content: flex-start;
    }

    .web-header h3 {
        font-size: 1.2rem;
    }

    .web-card p {
        font-size: 0.9rem;
    }

    .web-card ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {

    .main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 97%;
        padding: 0 5px;

    }
}

/* ------------ Deployment process section -------------- */
.process-box {
    padding: 30px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card {
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.icon-wrapper {
    margin-bottom: 25px;
}

.icon-wrapper i {
    font-size: 2.2rem;
    color: var(--dark-primary-color);
    transition: 0.3s;
}

.card-content {
    position: relative;
}

.step-no {
    position: absolute;
    right: -10px;
    top: -20px;
    font-size: 5rem;
    font-weight: 800;
    color: #ffdddd5d;
    line-height: 1;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: sans-serif;
}

.process-card:hover .step-no {
    top: -90px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--section-bold-heading);
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
    line-height: 1.2;
}

.process-card p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(245, 210, 210, 0.742) 0px 4px 12px;
}

@media (max-width: 1024px) {

    .process-card {
        padding: 10px 20px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .process-card p {
        font-size: 0.6rem;
    }
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .process-card:hover .step-no {
        top: -80px;
    }

    .process-card {
        width: 80%;
        margin: auto;
        padding: 15px 20px;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .process-card p {
        font-size: 0.95rem;
    }

}

@media (max-width: 532px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .icon-wrapper i {
        font-size: 2rem;
    }

}

/* ============= WHY CHOOSE US SECTION STYLE START - INNER SERVICE =============== */
.print-process-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
}

.print-process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #0a0a0a;
    background-image: url("../images/shapes/x-type-multiple-lines.webp");
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #1a1a1a;
    align-items: center;
    position: relative;
    overflow: hidden;

}

.print-process-wrapper::before {
    content: "";
    position: absolute;
    right: -140px;
    width: 360px;
    height: 360px;
    background: rgba(255, 0, 0, 0.6);
    border-radius: 50%;
    filter: blur(90px);
    animation: brandingani 6s ease-in-out infinite;
    z-index: 0;
}

.print-process-wrapper>* {
    position: relative;
    z-index: 2;
}

@keyframes brandingani {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.print-process-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}

.print-process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.print-process-image:hover img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .print-process-section {
        margin: 0 auto !important;
        padding: 0 !important;
        max-width: 100%;
    }

    .print-process-wrapper {
        grid-template-columns: 1fr;
        padding: 30px 15px 50px 15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        margin: 0 auto 20px;
        width: 80%;
        background-position: center;
    }

    .print-process-image {
        width: 75%;
        height: 80%;
        margin: 0 auto 0px;
        border-radius: 12px;
    }
}


@media (max-width: 768px) {
    .print-process-image {
        width: 75%;
        height: 80%;
        margin: auto;
    }

    .print-process-wrapper {
        margin: 0 auto 20px;
        width: 80%;
    }
}

@media (max-width: 532px) {
    .print-process-image {
        height: auto;
        width: 100%;
        margin: auto;
    }

    .print-process-wrapper {
        margin: 0 auto 20px;
        width: 95%;

    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(190, 0, 0, 0.05);
    border-color: var(--dark-primary-color);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-primary-color), #6a0320);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--white);
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.benefit-text p {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 0px;
}

@media (max-width: 992px) {
    .branding-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 992px) {
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .benefit-item {
        gap: 10px;
    }

}

/* ================= TERMS & CONDITIONS SECTION STYLE START =============== */
.terms-section {
    padding: 100px 20px;
    margin-top: 40px;
}

.terms-container {
    max-width: 950px;
    margin: auto;
}


.last-updated {
    color: #666666;
    margin-bottom: 40px;
    font-size: 14px;
    padding-left: 10px;
}

.terms-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.terms-box h2 {
    margin-top: 30px;
    color: #c62828;
    font-size: 20px;
}

.terms-box p {
    line-height: 1.8;
    font-size: 15px;
    color: #333333;
}

@media (max-width: 768px) {

    .terms-container h1 {
        font-size: 28px;
    }


    .terms-box {
        padding: 15px;
        border: none;

    }

    .terms-section {
        padding: 100px 0px;
        margin-top: 40px;
    }

    .last-updated {
        margin-bottom: 5px;
    }

}

/* ============= SITEMAP SECTION STYLE START ============== */
.sitemap-list {
    list-style: none;
    padding-left: 0;
}

.sitemap-list li {
    margin-bottom: 10px;
}

.sitemap-list a {
    text-decoration: none;
    color: var(--black);
    transition: 0.3s;
    margin-left: 10px;
}

.sitemap-list a:hover {
    color: var(--primary-color);
}


/* ========== White Navbar Only For Terms Page ========= */
.terms-page .navbar-custom {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-page .nav-link {
    color: var(--black) !important;
}

.terms-page .nav-link:hover {
    color: var(--primary-color);
}

.terms-page .navbar-brand img {
    filter: none;
}

.terms-page .dropdown-menu {
    background: var(--white);
}

.terms-page .dropdown-item {
    color: var(--black);
}

.terms-page .dropdown-item:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}


/* ================== PROJECT SECTION STYLE START =============== */
.gallery-filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 26px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--dark-primary-color);
    color: var(--white);
}

.filter-btn:hover {
    background: var(--dark-primary-color);
    color: var(--white);
}

#gallery-grid {
    display: flex;
    flex-wrap: wrap;
    transition: all 0.5s ease;
    min-height: 400px;
}

.gallery-block {
    position: relative;
    margin-bottom: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    transform-origin: center;
}


.gallery-block.hidden {
    opacity: 0;
    transform: scale(0);
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none;
    visibility: hidden;
}

.gallery-block .inner-box {
    position: relative;
}

.gallery-block .inner-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
}

.gallery-block .inner-box .image img {
    position: relative;
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-block .inner-box:hover .image img {
    transform: scale(1.05);
}

.gallery-block .inner-box .image .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--white);
    overflow: hidden;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.70);
    transition: transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    transform-origin: right center;
}

.gallery-block .inner-box:hover .overlay-box {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}

.gallery-block .inner-box .overlay-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: table;
    padding: 10px 0;
}

.gallery-block .inner-box .overlay-inner .content {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.gallery-block .inner-box .overlay-box .category {
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.gallery-block .inner-box .overlay-box h4 {
    font-weight: 500;
    line-height: 1.4em;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.gallery-block .inner-box .overlay-box h4 a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-block .inner-box .overlay-box h4 a:hover {
    color: var(--primary-color);
}

.gallery-plus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    transition: all 0.4s ease;
}

.gallery-plus-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}


.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img-wrap {
    position: relative;
    max-width: 80vw;
    max-height: 80vh;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 20px 16px;
    text-align: center;
}

.lightbox-caption h4 {
    display: none;
}

.lightbox-caption span {
    display: none;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 44px;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: color 0.3s, transform 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    z-index: 9999;
}

.lightbox-nav:hover {
    background: var(--dark-primary-color);
    border-color: var(--dark-primary-color);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 768px) {
    .lightbox-main-area {
        flex-direction: column;
        align-items: center;
    }

    .lightbox-nav-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        margin-top: 20px;
        width: 100%;
        position: relative;
    }

    .lightbox-nav {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        margin: 0;
    }
}


@media (max-width: 1024px) {
    .gallery-filter-btns {
        gap: 8px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .gallery-block .inner-box .image img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .gallery-filter-btns {
        gap: 6px;
        margin-bottom: 24px;
    }

    .filter-btn {
        padding: 7px 14px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .gallery-block .inner-box .image img {
        height: 220px;
    }

    .gallery-plus-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .lightbox-container {
        flex-direction: column;
        gap: 10px;
        max-width: 95vw;
    }

    .lightbox-img-wrap {
        max-width: 95vw;
    }

    .lightbox-img-wrap img {
        max-height: 60vh;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .lightbox-container {
        flex-direction: row;
    }

    .lightbox-close {
        top: 12px;
        right: 16px;
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .gallery-block .inner-box .image img {
        height: 200px;
    }

    .lightbox-img-wrap img {
        max-height: 55vh;
    }

    .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
}

.lightbox-main-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.lightbox-img-wrap {
    max-width: 70vw;
}

@media (max-width: 532px) {
    .lightbox-main-area {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
    }

    .lightbox-img-wrap {
        order: 1 !important;
        max-width: 95vw;
        width: 100%;
    }

    .lightbox-nav-container {
        order: 2 !important;
        display: flex;
        justify-content: center;
        gap: 30px;
        width: 100%;
        margin-top: 10px;
    }

    .lightbox-nav {
        position: relative;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* =========== WHY CHOOSE US SECTION STYLE START - INDEX PAGE ================ */
.why-choose-section {
    padding: 50px 0px 80px;
    background: rgba(255, 250, 250, 0.639);
}

.why-choose-us-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-content-right {
    padding-left: 48px;
}

.whychoose-box-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.whychoose-single-column {
    grid-template-columns: 1fr;
}

.why-choose-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid #f1d6d6;
    border-radius: 16px;
    background: #fff5f5;
    transition: 0.25s ease;
}

.why-choose-box:hover {
    border-color: var(--dark-primary-color);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(190, 0, 0, 0.15);
    transform: translateY(-4px);
}

.whychoose-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fce6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whychoose-icon i {
    color: var(--dark-primary-color);
    font-size: 18px;
}

.whychoose-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--dark-primary-color);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.whychoose-body {
    flex: 1;
}

.whychoose-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--section-bold-heading);
    margin-bottom: 4px;
}

.whychoose-title-inner {
    font-size: 18px;
    font-weight: 600;
    color: var(--section-bold-heading);
    margin-bottom: 4px;
}

.whychoose-desc {
    font-size: 14px;
    color: #777;
}

@media (max-width: 992px) {
    .why-choose-section {
        padding: 40px 0px;
        flex-direction: column;
    }

    .why-choose-content-right {
        padding-left: 0;
        padding-top: 15px;
    }
}

@media (max-width: 992px) {
    .why-choose-us-container {
        display: block;
    }

    .whychoose-box-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}

@media (max-width: 532px) {
    .why-choose-us-container {
        display: block;
    }

    .whychoose-box-list {
        grid-template-columns: 1fr;
    }

    .why-choose-box {
        gap: 12px;
        padding: 7px 10px;
        box-shadow: 0 2px 10px rgba(190, 0, 0, 0.07);
    }
}

/* ================= CTA SECTION STYLE START ===================*/
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--black), #6a0320);
    padding: 70px 0;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -140px;
    background: rgba(255, 255, 255, 0.04);
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -80px;
    background: rgba(255, 255, 255, 0.04);
}

.shape-3 {
    width: 160px;
    height: 160px;
    top: 20px;
    left: 28%;
    background: rgba(255, 255, 255, 0.025);
}

.ring-1 {
    width: 600px;
    height: 600px;
    top: -250px;
    right: -200px;
}

.ring-2 {
    width: 400px;
    height: 400px;
    top: -160px;
    right: -110px;
}

.ring-3 {
    width: 360px;
    height: 360px;
    bottom: -180px;
    left: -120px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    margin: 0 auto;
}

.cta-left {
    flex: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    max-width: 700px;
}

.cta-title span {
    position: relative;
    display: inline-block;
}

.cta-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

.cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    max-width: 700px;
    font-weight: 300;
}

.cta-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-right a {
    text-decoration: none;
}

.cta-action-btn {
    background: var(--white);
    color: var(--dark-primary-color);
    padding: 15px 34px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.03em;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.cta-action-btn:hover {
    box-shadow: rgba(134, 1, 38, 0.938) 0px 7px 29px 0px;
}

.btn-white:hover {
    transform: translateY(-2px);
}

.btn-outline-w {
    background: transparent;
    color: #fff;
    padding: 13px 34px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline-w:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}


.trust-row {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.25s;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.13);
}

.trust-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 20px;
    height: 20px;

}

.trust-icon i {
    width: 20px;
    height: 20px;
    color: var(--white);
    text-align: center;
}


.trust-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cta-wrapper-section::before {
    content: "";
    position: absolute;
    left: -140px;
    width: 360px;
    height: 360px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    filter: blur(90px);
    animation: ctagradient 6s ease-in-out infinite;
    z-index: 0;
}

.counter::after {
    content: "+";
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    padding-left: 4px;
}

@keyframes ctagradient {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 10px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: left;
        gap: 10px;
    }

    .cta-desc {
        max-width: 100%;
    }

    .cta-right {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .trust-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-card {
        padding: 10px 12px;
    }


}

@media (max-width: 480px) {
    .trust-row {
        grid-template-columns: 1fr;
    }

    .cta-title {
        max-width: 100%;
        font-size: 28px;
    }

    .cta-right {
        justify-content: center;
    }
}

/* ================= FAQ SECTION STYLE START ============= */
.faq-section {
    padding: 50px 10px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    background-color: #fff;
}


.faq-contact-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--dark-primary-color);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(190, 0, 0, 0.2);

}

.faq-contact-btn:hover {
    background: var(--btn-hover-color);
    transform: translateY(-2px);
}

.faq-list {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1d6d6;
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid #f3e1e1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-header:hover {
    background: #fffafa;
}

.faq-title-text {
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

.faq-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--dark-primary-color);
    border-bottom: 2px solid var(--dark-primary-color);
    transform: rotate(45deg);
    transition: 0.3s ease;
    flex-shrink: 0;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.faq-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.faq-item input {
    display: none;
}

.faq-item input:checked~.faq-body {
    max-height: 300px;
    padding-top: 10px;
}

.faq-item input:checked+.faq-header .faq-arrow {
    transform: rotate(225deg);
    margin-top: 5px;
}

.faq-item input:checked+.faq-header {
    background: #fff5f5;
}

@media (max-width: 1024px) {
    .faq-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width: 768px) {
    .faq-section {
        padding: 30px 10px;
    }

    .faq-header {
        padding: 10px 18px;
    }

    .faq-body {
        padding: 0 20px;
    }

    .faq-title-text {
        font-size: 16px;
    }

    .faq-arrow {
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--dark-primary-color);
        border-bottom: 2px solid var(--dark-primary-color);
        transform: rotate(45deg);
        transition: 0.3s ease;
        flex-shrink: 0;
    }

    .faq-contact-btn {
        padding: 10px 25px;
        background: var(--dark-primary-color);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
    }
}

/* ============= SERVICE SECTION HEADING STYLE START ================= */

.why-webdesign-header,
.why-webdesign-header-darkbg {
    max-width: 720px;
    margin: 0 auto 60px;
}

.why-webdesign-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.why-webdesign-subtitle .dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.subtitle-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.why-webdesign-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--section-bold-heading);
    line-height: 1.3;
    margin-bottom: 12px;
}

.why-webdesign-heading-darkbg {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}

.why-webdesign-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0 auto;
}

.why-webdesign-description-darkbg {
    font-size: 15px;
    color: #a5a5a5;
    line-height: 1.8;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .why-webdesign-heading {
        font-size: 28px;
    }
}

@media (max-width: 532px) {
    .why-webdesign-heading {
        font-size: 24px;
        line-height: 1.4;
    }

    .why-webdesign-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .why-webdesign-subtitle {
        font-size: 11px;
    }
}

/* ============= TESTIMONIAL SECTION STYLE START ============== */
.testimonial {
    padding: 60px 10px;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.testimonial-left {
    flex: 0 0 50%;
    z-index: 1;
}

.testimonial-left img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    display: block;
}

.testimonial-right {
    flex: 0 0 60%;
    background: rgba(255, 219, 219, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: rgba(255, 49, 49, 0.253) 0px 2px 8px 0px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    position: relative;
    margin-left: -10%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.testimonial-item {
    display: none;
    width: 100%;
    height: auto;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.testimonial-item p {
    margin: 15px 0;
    color: #430000;
}

.testimonial-item h5 {
    margin: 10px 0 2px;
    font-weight: 700;
    color: var(--dark-primary-color);
}

.testimonial-item span {
    font-size: 13px;
    color: #606060;
}

.stars {
    color: #ffb400;
    font-size: 22px;
}

.quote-watermark {
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 160px;
    color: rgba(255, 0, 0, 0.05);
}

.testimonial-nav {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.testimonial-nav button {
    border: none;
    background: var(--white);
    width: 40px;
    height: 40px;
    margin-left: 5px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;

}

.testimonial-nav button:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: rgba(255, 0, 0, 0.635) 0px 3px 8px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 1440px) {
    .testimonial-right {
        margin-left: -15%;
    }
}

@media (max-width: 991px) {
    .testimonial-container {
        flex-direction: column;
    }

    .testimonial-left {
        width: 100%;
        flex: none;
    }

    .testimonial-left img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-right {
        width: 100%;
        flex: none;
        margin-left: 0;
        margin-top: -50px;
        padding: 30px 20px;
        min-height: auto;
    }

    .quote-watermark {
        font-size: 80px;
    }
}

@media (max-width: 532px) {
    .testimonial-right {
        margin-top: 20px;
    }

    .testimonial-nav {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
}

/* ============== INDUSTRIES WE SUPPORT SECTION STYLE START ================ */
.industries-section {
    padding: 60px 15px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #c5c4c473;
    transition: 0.4s ease;
    position: relative;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.industry-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    transition: 0.3s;
}

.industry-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 20px;
}

.industry-card:hover i {
    transform: scale(1.2);
    text-shadow: #db000083 1px 0 10px;
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industry-card {
        padding: 20px;
    }

    .industry-card h4 {
        font-size: 1rem;
    }

    .industry-card p {
        font-size: 0.85rem;
    }

    .industry-card i {
        font-size: 24px;
    }
}

/* =================== TECHNOLOGY FEATURE SECTION STYLE START ============== */
.technology-box {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: center;
    align-items: center;
    margin: auto;
    gap: 20px;
    margin-top: 20px;
}

.technology-box-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 150px));
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    width: 100%;
}

.tech-card-light {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-icon i {
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.tech-icon img {
    font-size: 2.2rem;
    transition: all 0.3s ease;
    height: 30px;
}

.tech-card-light h3 {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-top: 15px;
}

.tech-card-light:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.t-html .tech-icon i {
    color: #E34F26 !important;
}

.t-css .tech-icon i {
    color: #1572B6 !important;
}

.t-bootstrap .tech-icon i {
    color: #7952B3 !important;
}

.t-js .tech-icon i {
    color: #F7DF1E !important;
}

.t-wp .tech-icon i {
    color: #21759B !important;
}

.t-shopify .tech-icon i {
    color: #96BF48 !important;
}

.t-php .tech-icon i {
    color: #777BB4 !important;
}

.t-react .tech-icon i {
    color: #61DAFB !important;
}

.t-node .tech-icon i {
    color: #339933 !important;
}

.t-angular .tech-icon i {
    color: #DD0031 !important;
}

.t-mongo .tech-icon i {
    color: #47A248 !important;
}

.t-adobe .tech-icon i {
    color: #31A8FF !important;
}

@media (max-width: 1024px) {
    .technology-box {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .technology-box {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .technology-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tech-card-light {
        padding: 20px 10px;
    }

    .tech-icon i {
        font-size: 1.8rem;
    }
}

/* ================== CLIENTS SECTION STYLE START =============== */
.client-section {
    padding: 40px 0;
}

.clientSwiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 120px;
}

.client-logo img {
    max-width: 160px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}


@media (min-width: 1400px) {
    .client-logo img {
        max-width: 190px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .client-logo {
        height: 70px;
    }
}

/* =============== INNER CLIENT SECTION STYLE START ================== */
.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    align-items: center;
}

.client-logo-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.client-logo-inner img {
    width: 80%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .client-grid {
        gap: 30px;
        grid-template-columns: repeat(3, 1.3fr);
    }

    .client-logo-inner {
        height: 100px;
    }
}

@media (max-width: 532px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .client-logo-inner {
        height: 90px;
    }
}