/*
*******************************************
*******************************************

** - Default CSS
** - Navbar Area CSS
** - Side Navbar Area CSS
** - Service Dropdown Area CSS
** - Sidebar Service Dropdown Area CSS
** - Page Header Area CSS
** - Main Content Area CSS

    <!-- Home Page -->

** - Header Area CSS
** - ECS Service Area CSS
** - Why Choose Area CSS
** - Client Section Area CSS
** - Lets Talk Area CSS
** - Footer Area CSS

    <!-- Home Page -->

** - About Page Area CSS
** - Global Digital Expertise Area CSS
** - Work Process Area CSS
** - Clientsays Area CSS

** - Service Page CSS

** - Portfolio Page CSS

** - Careers Page  CSS

** - Contact Us Area CSS

** - Software Development Area CSS

** - Website Development Area CSS

** - Website Redesign Area CSS

** - Scroll Bar

*******************************************
*******************************************
*/

/*================================================
Default CSS
=================================================*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

:focus {
    outline: 0 !important;
}

a {
    text-decoration: none;
}

/* Default Button */

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #000;
    background-color: rgb(235, 134, 52);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 4px;
    padding: 7px 30px 7px 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding-top: 10px;
}

.default-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #07436b;
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
}

.default-btn2 span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgb(235, 134, 52);
    color: #000 !important;
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
}

.default-btn:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.default-btn:hover span {
    width: 225%;
    height: 562.5px;
}

#progBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, orangered, #ff6633);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    transition: transform .1s linear;
    right: 0;
}

/*================================================
Navbar Area CSS
=================================================*/

#Navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 9999;
    background-color: white;
    backdrop-filter: blur(10px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.website-name {
    display: flex;
    align-items: center;
}

.website-name img {
    width: 200px;
    height: 60px;
}

.navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-menu ul {
    display: flex;
    padding-top: 23px;
    column-gap: 20px;
}

.login-btn button {
    border: none;
    outline: none;
    text-decoration: none;
    background-color: orangered;
    color: #fff;
    padding: 5px 20px;
    border-radius: 10px;
}

.navbar-menu ul a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    position: relative;
    padding: 0 10px;
}

.navbar-menu ul a:after {
    content: "";
    position: absolute;
    background: linear-gradient(135deg, orangered, aliceblue);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -2px;
    transition: 0.3s;
    border-radius: 10px;
}

.navbar-menu ul a:hover:after {
    width: 100%;
}

.navbar-menu ul a li {
    list-style: none;
}

.contact-btn button {
    background-color: rgb(24, 231, 231);
    text-shadow: 1px 1px 2px black;
    color: #fff;
    border: none;
    padding: 8px 30px;
    border-radius: 5px;
}

.navbar-menu-toggle {
    display: none;
    font-size: 28px;
}

@media screen and (max-width: 1260px) {
    .navbar-menu-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
    }
}

.toggleITSolution {
    display: flex;
    justify-content: center;
    align-items: center;
}

.it-solution-box {
    position: absolute;
    top: 80px;
    right: 300px;
    width: 56% !important;
    background: white;
    padding: 20px 30px;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 25px;
    z-index: 9999;
}

.it-box-content {
    display: flex;
    justify-content: space-between;
    gap: 20px !important;
}

.it-left {
    border-right: 2px solid orangered;
    padding-right: 30px;
}

.it-left h4,
.it-right h4 {
    color: orangered;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
}

.it-left ul,
.it-right ul {
    list-style: none;
    padding: 0;
}

.it-left ul li,
.it-right ul li {
    padding: 5px 0;
    cursor: pointer;
    font-size: 15px;
}

.it-left ul li a:hover,
.it-right ul li a:hover {
    color: orangered !important;
}

@media screen and (max-width: 1500px) {
    .it-solution-box {
        width: 70% !important;
    }
}

/*================================================
Side Navbar Area CSS
=================================================*/

.side-navbar {
    position: fixed;
    width: 300px;
    height: 100%;
    top: 0;
    left: -100%;
    padding: 20px;
    transition: 0.5s ease;
    z-index: 9999;
    background-color: #fff;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
}

.side-navbar.active {
    left: 0;
}

.side-navbar img {
    width: 100%;
    height: 60px;
}

.side-navbar-link {
    margin-bottom: 30px;
    margin-top: 30px;
}

.side-navbar-links p {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0 20px;
    border-radius: 10px;
    cursor: pointer;
}

.side-navbar-links a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.cross-symbol {
    color: red;
    text-align: right;
    font-size: 20px;
    cursor: pointer;
}

.side-navbar-links a button {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    text-decoration: none;
    background-color: orangered;
    color: #fff;
    border-radius: 10px;
}

.side-navbar {
    overflow-y: auto;
}

.it-submenu {
    overflow: hidden;
    transition: 0.4s ease;
    margin: 0 10px;
}

.it-submenu h6 {
    padding-left: 12px;
    color: orangered;
}

.it-submenu p {
    margin: 6px 0;
    padding: 6px 12px;
    background: transparent;
    border-radius: 6px;
}

.it-submenu a {
    font-size: 15px;
    color: black;
    display: block;
}

.it-toggle a {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.it-toggle.active i {
    transform: rotate(180deg);
    transition: 0.3s;
}

.it-submenu.show {
    max-height: 0px !important;
}

/*================================================
    Page Header Area CSS
=================================================*/

.page-header {
    position: relative;
    height: 40vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/header/page-header.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h4 {
    font-size: 1.2rem;
    color: orange;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.page-header-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .page-header {
        height: 30vh;
    }

    .page-header-content h4 {
        font-size: 1rem;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 25vh;
    }

    .page-header-content h4 {
        font-size: 0.9rem;
    }

    .page-header-content h1 {
        font-size: 1.8rem;
    }

    .page-header-content h4::before,
    .page-header-content h4::after {
        left: -20px;
        right: -20px;
    }
}

@media (max-width: 476px) {
    .page-header {
        height: 25vh;
    }

    .page-header-content h4 {
        font-size: 0.9rem;
    }

    .page-header-content h1 {
        font-size: 1.5rem;
    }
}

/*================================================
Main Content Area CSS
=================================================*/

.main-content {
    background-image: url(../img/home/world-map-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

/*================================================
    Header Area CSS
=================================================*/

.testimonial-wrapper {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3));
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    user-select: none;
}

.testimonial-card {
    width: 100%;
    min-height: 60vh;
    border-top: 3px solid rgb(235, 134, 52);
    border-bottom: 3px solid rgb(235, 134, 52);
    border-left: 1px solid rgb(235, 134, 52);
    border-right: 1px solid rgb(235, 134, 52);
    scroll-snap-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
    z-index: 1;
}

.content-bottom {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    text-align: start;
    z-index: 2;
}

.content-bottom h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 166, 0);
    text-shadow: 1px 1px 2px #000;
}

.content-bottom p {
    font-size: 18px;
    margin-bottom: 12px;
    color: #eee;
}

.content-bottom .btn-box a {
    color: #fff;
}

.arrow-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    color: rgb(235, 134, 52);
    display: grid;
    place-items: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px grey;
}

.arrow-btn#left {
    left: 30px;
}

.arrow-btn#right {
    right: 30px;
}

@media (max-width: 992px) {
    .testimonial-carousel {
        grid-auto-columns: calc((100% / 2));
    }

    .arrow-btn#left {
        left: 20px;
    }

    .arrow-btn#right {
        right: 20px;
    }
}

@media (max-width: 600px) {
    .testimonial-carousel {
        grid-auto-columns: 100%;
    }

}

@media (max-width: 467px) {
    .arrow-btn {
        display: none;
    }

    .testimonial-card {
        min-height: 50vh;
    }
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dragging {
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.dragging .testimonial-card {
    cursor: grab;
}

/*================================================
    ECS Service Area CSS
=================================================*/

.home-service-card {
    box-shadow: 0 6px 30px rgba(20, 40, 80, 0.06);
    transition: transform .28s, box-shadow .28s;
    padding: 24px;
    background: linear-gradient(orangered, orangered) top left,
        linear-gradient(orangered, orangered) top left,
        linear-gradient(orangered, orangered) top right,
        linear-gradient(orangered, orangered) top right,
        linear-gradient(orangered, orangered) bottom left,
        linear-gradient(orangered, orangered) bottom left,
        linear-gradient(orangered, orangered) bottom right,
        linear-gradient(orangered, orangered) bottom right;
    background-size: 2px 20px, 20px 2px;
    background-repeat: no-repeat;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(20, 40, 80, 0.12)
}

.home-service-card h5 {
    color: orangered;
}

.home-service-card ul li::marker {
    color: orangered;
}

.home-service-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.5rem;
    border-radius: 999px;
    background: rgba(0, 86, 214, 0.08);
    color: orangered;
    font-weight: 600
}

.left-list .item {
    padding: .75rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04)
}

.home-long-image {
    width: 100%;
    height: 560px;
    object-fit: contain;
    border-radius: 12px;
    background: transparent
}

.feature-list li {
    margin-bottom: .6rem
}

@media (max-width:991px) {
    .home-long-image {
        height: 380px
    }
}

.home-service-card img {
    width: 50px;
    height: 50px;
}

/*================================================
    Why Choose Area CSS
=================================================*/

.why-choose-img img {
    width: 100%;
    height: 300px;
}

.feature-list li::marker {
    color: orangered;
}

.profess-skills {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pro-skill {
    position: relative;
    display: grid;
    place-items: center;
}

.pro-skill .percentage {
    position: relative;
    width: 150px;
    height: 150px;
}

.pro-skill .percentage svg {
    position: relative;
    width: 150px;
    height: 150px;
    transform: rotate(270deg);
}

.pro-skill .percentage svg circle {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke-width: 2;
    /*stroke: #191919;*/
    stroke: aliceblue;
    transform: translate(5px, 5px);
}

.pro-skill .percentage svg circle:nth-child(2) {
    stroke: tomato;
    stroke-dasharray: 440;
    stroke-dashoffset: calc(440 - (440 * var(--num)) / 100);
    animation: fadeIn 1s linear forwards;
    animation-delay: 2.5s;
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.dot {
    position: absolute;
    inset: 5px;
    z-index: 10;
    transform: rotate(calc(3.6deg * var(--num)));
    animation: animateDot 2s linear forwards;
}

@keyframes animateDot {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(calc(3.6deg * var));
    }
}

.dot::before {
    content: " ";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: tomato;
    border-radius: 50%;
    box-shadow: 0 0 10px tomato, 0 0 30px tomato;
}

.number {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    animation: fadeIn 1s linear forwards;
    animation-delay: 2.5s;
}

.number h2 {
    display: grid;
    place-items: center;
    color: #000;
    font-weight: 600;
    margin-top: 20px;
    font-size: 30px;
}

.pro-skill h5 {
    font-size: 15px;
}

.price-plan li {
    list-style: none;
}

/*================================================
Client Section Area CSS
=================================================*/

.client-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.client-slider {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollClients 50s linear infinite;
}

.client-logo {
    min-width: 180px;
    width: 180px;
    height: 90px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@keyframes scrollClients {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-slider-wrapper:hover .client-slider {
    animation-play-state: paused;
}

@media screen and (max-width: 767px) {
    .client-slider {
        gap: 20px;
        animation-duration: 15s;
    }

    .client-logo {
        min-width: 130px;
        width: 130px;
        height: 65px;
    }
}

@media screen and (max-width: 467px) {
    .client-slider {
        gap: 10px;
        animation-duration: 10s;
    }

    .client-logo {
        min-width: 100px;
        width: 100px;
        height: 50px;
    }
}

/*================================================
Lets Talk Area CSS
=================================================*/

.lets-talk-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: transparent;
}

.click-btn button {
    border: 2px solid #fff;
    color: #fff;
    outline: none;
    width: 200px;
    height: 40px;
    background-color: transparent;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .lets-talk-box {
        display: block;
    }
}

/*================================================
Footer Area CSS
=================================================*/

footer {
    background-image: url(../img/footer/footer-bg-img.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
    color: #ffff;
}

.footer-section {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.share-certificate {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.share-certificate a {
    text-decoration: none;
}

.share-certificate a i {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.share-certificate #facebook {
    font-size: 20px;
    padding: 10px 15px;
    color: #fff;
    background-color: blue;
    border-radius: 50%;
}

.share-certificate #instagram {
    font-size: 20px;
    padding: 10px 13px;
    color: #fff;
    background: linear-gradient(45deg, yellow, red, rgb(233, 6, 233), rgb(243, 8, 117));
    border-radius: 50%;
}

.share-certificate #gmail {
    font-size: 20px;
    padding: 10px 13px;
    color: red;
    background-color: wheat;
    border-radius: 50%;
}

.share-certificate #whatsapp {
    font-size: 20px;
    padding: 10px 13px;
    color: #fff;
    background-color: green;
    border-radius: 50%;
}

.share-certificate #youtube {
    font-size: 20px;
    padding: 10px 11px;
    color: red;
    background-color: white;
    border-radius: 50%;
}

.address-box {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
}

.address-box h6 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.addr-line {
    display: flex;
    gap: 22px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.addr-label {
    min-width: 85px;
    color: White;
    font-weight: 500;
}

.list-unstyled li a {
    color: #ccc;
    font-weight: 500;
}

.list-unstyled li a:hover {
    color: white;
}

.contact-links {
    color: #ccc;
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
}

/*================================================
About Page Area CSS
=================================================*/

.about-herosection {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.kpi {
    border-radius: .75rem;
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 6px 20px rgba(15, 15, 15, 0.04)
}

.kpi h3 {
    font-size: 1.35rem;
    margin-bottom: .25rem
}

.kpi p {
    margin-bottom: 0;
    color: var(--muted)
}

.services-card {
    border-radius: .75rem;
    overflow: hidden;
    border: 1px solid rgba(13, 110, 253, 0.06)
}

.services-card .card-body {
    padding: 1.3rem
}

.team-member {
    transition: transform .28s ease, box-shadow .28s ease
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.08)
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.reveal {
    animation: floatUp .7s ease both;
    text-align: justify;
}

.about-herosection-img {
    width: 100%;
    height: 200px;
}

@media (max-width:767px) {
    .about-herosection {
        padding: 2.5rem 0
    }

    .about-herosection-img {
        height: 130px;
    }
}

/*================================================
Global Digital Expertise Area CSS
=================================================*/

.home_about_collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    height: 400px;
}

.home_about_left_image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    overflow: hidden;
    border-radius: 12px;
}

.home_about_right_top,
.home_about_right_bottom {
    overflow: hidden;
    border-radius: 12px;
}

.home_about_right_top {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.home_about_right_bottom {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.home_about_collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home_about_badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #130f00ff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    width: 160px;
    height: 160px;
    display: grid;
    place-items: center;
    line-height: 1.05;
    z-index: 5;
}

.home_about_badge img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: none;
}

/*================================================
Work Process Area CSS
=================================================*/

.work-process-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.work-process-row .work-process-box {
    position: relative;
    flex: 1 1 calc(20% - 20px);
    min-width: 250px;
    height: auto;
    color: white;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

.work-process-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.work-process-box .content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.work-process-box.bg1 {
    background: url(../img/about/process-img2.jpeg) center/cover no-repeat;
}

.work-process-box.bg2 {
    background: url(../img/about/process-img3.jpeg) center/cover no-repeat;
}

.work-process-box.bg3 {
    background: url(../img/about/process-img4.jpeg) center/cover no-repeat;
}

.work-process-box.bg4 {
    background: url(../img/about/process-img5.jpeg) center/cover no-repeat;
}

.work-process-box.bg5 {
    background: url(../img/about/process-img1.jpg) center/cover no-repeat;
}

@media (max-width: 768px) {
    .work-process-row .work-process-box {
        flex: 1 1 100%;
    }
}

/*================================================
    Clientsays Area CSS
=================================================*/

.clientsay-section {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.clientsay-title .clientsay-title-content {
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

.clientsay-title .clientsay-title-content span {
    color: orangered;
}

.review-box {
    color: #fff;
    position: relative;
    min-height: 220px;
}

.review-slide {
    display: none;
    animation: fade 0.5s ease-in-out;
    border-radius: 15px;
    padding: 25px;
}

.review-slide.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stars {
    color: gold;
    margin-bottom: 10px;
    font-size: 20px;
}

.quote i {
    font-size: 20px;
    color: orangered;
    position: absolute;
    bottom: 80px;
    right: 50px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 15px;
}

.client-logos {
    background-color: #f8fbff;
    border-radius: 15px;
    padding: 15px 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    overflow: hidden;
}

.client-logos img {
    min-width: 50px;
    height: 50px;
    margin-right: 50px;
    border-radius: 5px;
}

.right-image-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.right-image-box {
    position: relative;
    overflow: hidden;
}

.right-image-box img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 2s ease-in-out;
}

.right-image-box:hover img {
    transform: scale(1.2);
}

.right-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: -10px;
    border: 2px solid #fff;
}

.plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: orangered;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 16px;
    margin-left: -5
}

.satisfied-text {
    margin-left: 15px;
    font-size: 14px;
}

.reviewer-details {
    display: flex;
    align-items: center;
}

.reviewer-details h6 {
    padding: 25px 0 0 20px;
    font-weight: 600;
    color: #000;
}

.reviewer-details h6 span {
    color: #fff;
    text-shadow: 0.5px 0.5px 1px #000;
}

@media (max-width: 993px) {
    .right-image-box img {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .clientsay-title h2 {
        font-size: 26px;
    }

    .client-logos {
        flex-wrap: wrap;
        gap: 10px;
    }

    .satisfied-text {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 420px) {
    .clientsay-title .clientsay-title-content {
        font-size: 25px;
        font-weight: 600;
    }
}

/*================================================
Service Page Area CSS
=================================================*/

.services-hero-section .lead {
    color: #6c757d
}

.servicepage-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.5rem;
    border-radius: 999px;
    background: rgba(0, 86, 214, 0.08);
    color: orangered;
    font-weight: 600
}

.servicepage-card {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(18, 38, 63, 0.06);
    transition: transform .28s ease, box-shadow .28s ease;
}

.servicepage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(18, 38, 63, 0.10)
}

.servicepage-card .icon {
    font-size: 28px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 106, 0, 0.06));
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.servicepage-detail {
    padding: 36px;
    border-radius: 16px;
    background: #f8f9fa;
}

.servicepage-detail h3 {
    margin-bottom: 12px
}

.servicepage-process-step {
    min-height: 72px;
    padding: 18px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(18, 38, 63, 0.04)
}

#serviceTabs .nav-link {
    background-color: #fff;
    color: orangered;
    border: 1px solid orangered;
    font-weight: 600;
}

#serviceTabs .nav-link.active {
    background-color: orangered !important;
    color: #fff !important;
    border-color: orangered !important;
}

@media (max-width:767px) {
    .services-hero-section {
        padding: 36px 0
    }
}

.innovation_solution_section {
    background: transparent;
}

.innovation_solution_section img {
    max-height: 520px;
    object-fit: cover;
    border-radius: .8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05)
}

.innovation_solution_section h2 {
    color: #FF7A00;
    font-weight: 600;
}

.innovation_solution_section p {
    color: #555;
    font-size: 1rem;
}

.innovation_solution_section ul {
    padding-left: 1.2rem;
}

.innovation_solution_section ul li {
    margin-bottom: .75rem;
    font-size: .95rem;
    color: #333
}

.innovation_solution_section .btn {
    padding: .6rem 1.4rem;
    font-size: .95rem
}

@media (max-width:991px) {
    .innovation_solution_section {
        padding: 3rem 1rem
    }
}

@media (max-width:767px) {
    .hero {
        padding: 2rem 0
    }
}

/*================================================
Portfolio Page Area CSS
=================================================*/

.web-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    cursor: pointer;
}

.web-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.web-img-center-text {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    padding: 20px 40px;
}

.web-box-title {
    padding-top: 20px;
    font-size: 18px;
    color: orangered;
}

.web-box-text {
    font-size: 15px;
    color: #000;
}

.web-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.90);
    /* backdrop-filter: blur(4px); */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.web-img-box:hover .web-img-center-text {
    opacity: 1;
}

.web-img-box:hover::after {
    opacity: 1;
}

@media(max-width: 768px) {
    .web-img-box {
        height: 250px;
        margin-bottom: 20px;
    }
}

/*================================================
Careers Page Area CSS
=================================================*/

.careers-benefits-perk-card {
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.careers-benefits-perk-card h5 {
    color: orangered;
}

.form-control,
.form-select {
    outline: none !important;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ccc !important;
}

.job-card {
    transition: all 0.3s ease;
    border: none;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.carrers-badge-logo {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skill-chip {
    font-size: 0.82rem;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    background: #fff0e6;
    color: orangered;
    border: 1.5px solid #ffccaa;
    font-weight: 500;
    white-space: nowrap;
}

.job-content {
    width: 100%;
}

.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.actions-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.apply-box-btn1 {
    border: 2px solid rgb(253, 122, 74) !important;
    background-color: transparent !important;
    color: rgb(253, 122, 74) !important;
    outline: none !important;
    padding: 5px 30px !important;
    font-weight: 500;
}

.apply-box-btn1:hover {
    border: none !important;
    background-color: rgb(253, 122, 74) !important;
    color: #ffffff !important;
}

.apply-box-btn2 {
    border: none !important;
    background-color: rgb(253, 122, 74) !important;
    color: #ffffff !important;
    outline: none !important;
    padding: 5px 30px !important;
    font-weight: 500 !important;
}

.apply-box-btn2:hover {
    border: 2px solid rgb(253, 122, 74) !important;
    background-color: transparent !important;
    color: orangered !important;
}

@media (max-width: 1199px) {
    .carrers-badge-logo {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

@media (max-width: 991px) {

    .section-title {
        font-size: 2.1rem;
    }

    .carrers-badge-logo {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {

    .section-title {
        font-size: 1.95rem;
    }

    .skill-chip {
        font-size: 0.79rem;
        padding: 0.35rem 0.7rem;
    }

    .job-card .d-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .carrers-badge-logo {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .actions-wrapper .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.8rem;
    }

    .carrers-badge-logo {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .skill-chip {
        font-size: 0.78rem;
        padding: 0.3rem 0.65rem;
    }

    .actions-wrapper {
        flex-direction: column;
    }

    .actions-wrapper .btn {
        width: 100%;
        justify-content: center;
    }

    .d-flex.align-items-center.justify-content-between.mb-4 {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
}

@media (min-width: 992px) {
    .jobs-grid {
        display: grid;
        grid-template-columns: 1fr 390px;
        gap: 3rem;
    }
}

/*================================================
Recruitment Cycle Area CSS
=================================================*/

.hiring-cycle {
    display: grid;
    place-items: center;
    height: auto;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hiring-cycle h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

.hiring-cycle .intro-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.hiring-process-container {
    position: relative;
    width: 600px;
    height: 600px;
}

.hiring-step {
    position: absolute;
    width: 140px;
    height: 140px;
    background-color: tomato;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hiring-step:hover {
    transform: scale(1.1);
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.center-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.info-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 600px;
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .hiring-process-container {
        width: 500px;
        height: 500px;
    }

    .hiring-step {
        width: 120px;
        height: 120px;
        font-size: 16px;
    }

    .center-circle {
        width: 150px;
        height: 150px;
    }

}

@media (max-width: 992px) {
    .hiring-cycle h1 {
        font-size: 2rem;
    }

    .hiring-cycle .intro-text {
        font-size: 1rem;
    }

    .hiring-process-container {
        width: 400px;
        height: 400px;
    }

    .hiring-step {
        width: 100px;
        height: 100px;
        font-size: 14px;
    }

    .center-circle {
        width: 120px;
        height: 120px;
    }

    .info-box {
        font-size: 0.9rem;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hiring-cycle h1 {
        font-size: 1.8rem;
    }

    .hiring-cycle .intro-text {
        font-size: 0.9rem;
    }

    .hiring-process-container {
        width: 300px;
        height: 300px;
    }

    .hiring-step {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }

    .center-circle {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 350px) {
    .hiring-process-container {
        width: 250px;
        height: 250px;
    }

    .hiring-step {
        width: 60px;
        height: 60px;
        font-size: 10px;
        padding: 5px;
    }

    .center-circle {
        width: 80px;
        height: 80px;
    }

}

/*================================================
Contact Us Area CSS
=================================================*/

.global-project-img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.ec-card {
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06)
}

.ec-contact-form .form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, 0.12);
    border-color: orangered;
}

.ec-office {
    border-left: 4px solid rgba(13, 110, 253, 0.06);
    padding-left: 16px
}

.ec-small {
    font-size: .94rem;
    color: #6c757d
}

@media (max-width:767px) {
    .ec-hero {
        padding: 28px 0
    }
}

@media (max-width:467px) {
    .global-project-img {
        height: 250px;
        object-fit: cover;
    }
}

.business-support button {
    border: 2px solid rgb(253, 122, 74) !important;
    background-color: transparent !important;
    color: rgb(253, 122, 74) !important;
    outline: none !important;
    font-weight: 500;
}

.business-support button:hover {
    border: none !important;
    background-color: rgb(253, 122, 74) !important;
    color: #ffffff !important;
}

.call-btn {
    border: 2px solid rgb(253, 122, 74) !important;
    background-color: transparent !important;
    color: rgb(253, 122, 74) !important;
    outline: none !important;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
}

/*================================================
Software Development Area CSS
=================================================*/

.software-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06)
}

.software-chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid orangered;
    font-size: 13px;
    color: orangered;
    cursor: pointer;
}

.software-process-step {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(37, 37, 37, 0.04)
}

.software-portfolio-card img {
    height: 160px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px
}

/*================================================
Website Development Area CSS
=================================================*/

.website-dev-header-section {
    padding: 4rem 0;
}

.website-dev-service-card {
    border-radius: 14px !important;
    border: none !important;
    cursor: default;
}

.website-dev-service-card:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08)
}

.website-dev-timeline {
    position: relative;
    margin-top: 1.5rem
}

.website-dev-timeline:before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, orangered, rgba(247, 184, 134, 0.15));
    border-radius: 10px
}

.website-dev-timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2.25rem
}

.website-dev-timeline-item .step {
    position: absolute;
    left: 7px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(21, 27, 38, .08);
    font-weight: 700
}

.website-dev-timeline-item h5 {
    margin-bottom: .25rem
}

.website-dev-timeline-item p {
    color: #6c757d;
}

.web-dev-projects-section,
.why-dev-choose-section {
    padding: 70px 0;
    font-family: "Segoe UI", sans-serif;
}

.web-dev-section-header h3 span,
.why-dev-choose-section h3 span {
    color: orangered;
}

.web-dev-section-header p {
    color: #6c757d;
    max-width: 600px;
}

@media (max-width:767.98px) {
    .website-dev-timeline:before {
        left: 14px
    }

    .website-dev-timeline-item {
        padding-left: 50px
    }

    .website-dev-timeline-item .step {
        left: 0
    }
}

/*================================================
Redesign website Area CSS
=================================================*/

.web-redesign-hero {
    position: relative;
}

.web-redesign-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.web-redesign-content-column {
    padding-right: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.web-redesign-features-list {
    margin-bottom: 20px;
}

.web-redesign-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    opacity: 0;
    animation: fadeInLeft 0.6s ease forwards;
}

.web-redesign-feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.web-redesign-feature-item:nth-child(2) {
    animation-delay: 0.15s;
}

.web-redesign-feature-item:nth-child(3) {
    animation-delay: 0.2s;
}

.web-redesign-feature-item:nth-child(4) {
    animation-delay: 0.25s;
}

.web-redesign-feature-item:nth-child(5) {
    animation-delay: 0.3s;
}

.web-redesign-feature-item:nth-child(6) {
    animation-delay: 0.35s;
}

.web-redesign-feature-item:nth-child(7) {
    animation-delay: 0.4s;
}

.web-redesign-feature-item:nth-child(8) {
    animation-delay: 0.45s;
}

.web-redesign-feature-item:nth-child(9) {
    animation-delay: 0.5s;
}

.web-redesign-feature-item:nth-child(10) {
    animation-delay: 0.55s;
}

.web-redesign-feature-item:nth-child(11) {
    animation-delay: 0.6s;
}

.web-redesign-feature-icon i {
    color: orangered;
    margin-top: 2px;
}

.web-redesign-feature-item span {
    font-size: 16px;
    color: #334155;
    font-weight: 500;
}

.web-redesign-illustration-column {
    position: relative;
    padding-left: 40px;
}

.web-redesign-illustration-container {
    position: relative;
    width: 100%;
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.3s;
}

.web-redesign-main-illustration {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.web-redesign-main-illustration:hover {
    transform: scale(1.02);
}

.web-redesign-floating-card {
    position: absolute;
    background: white;
    padding: 4px 15px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
}

.web-redesign-card-text {
    color: #1e293b;
}

.web-redesign-card-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.web-redesign-card-2 {
    top: 35%;
    left: -20px;
    animation-delay: 0.5s;
}

.web-redesign-card-3 {
    bottom: 30%;
    right: -15px;
    animation-delay: 1s;
}

.web-redesign-card-4 {
    bottom: 10%;
    left: -10px;
    animation-delay: 1.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .web-redesign-content-column {
        padding-right: 15px;
        margin-bottom: 60px;
    }

    .web-redesign-illustration-column {
        padding-left: 15px;
    }
}

@media (max-width: 767px) {
    .web-redesign-hero {
        padding: 60px 0;
    }

    .web-redesign-feature-item span {
        font-size: 15px;
    }

    .web-redesign-floating-card {
        padding: 10px 16px;
        font-size: 12px;
    }

    .web-redesign-card-icon {
        font-size: 16px;
    }

    .web-redesign-card-1,
    .web-redesign-card-3 {
        right: 5px;
    }

    .web-redesign-card-2,
    .web-redesign-card-4 {
        left: 5px;
    }
}

@media (max-width: 567px) {
    .web-redesign-floating-card {
        display: none;
    }
}

/*================================================
Redesign Section 2 Area CSS
=================================================*/

.wrd-section2 {
    position: relative;
    padding: 60px 0 !important;
}

.wrd-section2 .features-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrd-section2 .feature-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 20px 20px 5px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 240px;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.wrd-section2 .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.wrd-section2 .feature-card:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
}

.wrd-section2 .card-icon i {
    font-size: 24px;
    color: white;
}

.wrd-section2 .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.3;
}

.wrd-section2 .card-description {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
}

@media (min-width: 992px) {

    .wrd-section2 .feature-card[data-position="1"] {
        top: 0%;
        left: 6%;
    }

    .wrd-section2 .feature-card[data-position="2"] {
        top: 30%;
        left: 6%;
    }

    .wrd-section2 .feature-card[data-position="3"] {
        top: 60%;
        left: 6%;
    }

    .wrd-section2 .feature-card[data-position="4"] {
        top: 90%;
        left: 6%;
    }

    /* Right side */
    .wrd-section2 .feature-card[data-position="5"] {
        top: 0%;
        right: 6%;
    }

    .wrd-section2 .feature-card[data-position="6"] {
        top: 30%;
        right: 6%;
    }

    .wrd-section2 .feature-card[data-position="7"] {
        top: 60%;
        right: 6%;
    }

    .wrd-section2 .feature-card[data-position="8"] {
        top: 90%;
        right: 6%;
    }

    .wrd-section2 .feature-card[data-position="9"] {
        opacity: 0;
        pointer-events: none;
    }
}

.wrd-section2 .mobile-mockup {
    position: relative;
    z-index: 20;
    margin-top: 10%;
}

.wrd-section2 .phone-frame {
    width: 300px;
    height: 620px;
    background: #1a202c;
    border-radius: 45px;
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.wrd-section2 .phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 26px;
    background: #1a202c;
    border-radius: 0 0 20px 20px;
    z-index: 3;
}

.wrd-section2 .phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 34px;
    overflow: hidden;
    padding: 40px 20px 20px;
}

.wrd-section2 .dashboard-header {
    margin-bottom: 24px;
}

.wrd-section2 .dashboard-greeting {
    font-size: 13px;
    color: #718096;
    margin-bottom: 4px;
}

.wrd-section2 .dashboard-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
}

.wrd-section2 .profile-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.wrd-section2 .dashboard-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.wrd-section2 .stat-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wrd-section2 .stat-card.stat-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    color: white;
}

.wrd-section2 .stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    opacity: 0.8;
}

.wrd-section2 .stat-value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.wrd-section2 .stat-change {
    font-size: 12px;
    opacity: 0.9;
}

.wrd-section2 .dashboard-chart {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wrd-section2 .chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.wrd-section2 .chart-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
}

.wrd-section2 .chart-period {
    font-size: 12px;
    color: #718096;
}

.wrd-section2 .mini-chart {
    height: 80px;
}

.wrd-section2 .chart-svg {
    width: 100%;
    height: 100%;
}

.wrd-section2 .dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wrd-section2 .list-item {
    background: white;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wrd-section2 .list-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.wrd-section2 .list-content {
    flex: 1;
}

.wrd-section2 .list-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2px;
}

.wrd-section2 .list-subtitle {
    font-size: 11px;
    color: #718096;
}

.wrd-section2 .list-value {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
}

.wrd-section2 .list-badge {
    background: #ff6b35;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}

.wrd-section2 .connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.wrd-section2 .connect-line {
    stroke: #ff6b35;
    stroke-width: 2;
    stroke-dasharray: 6, 6;
    opacity: 0.15;
    transition: opacity 0.3s ease, stroke-width 0.3s ease;
}

@media (min-width: 768px) and (max-width: 991px) {
    .wrd-section2 .features-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 40px 0;
    }

    .wrd-section2 .feature-card {
        position: static;
        transform: none !important;
        margin: 12px 0;
        width: 300px;
    }

    .wrd-section2 .mobile-mockup {
        margin-bottom: 40px;
    }

    .wrd-section2 .connection-lines {
        display: none;
    }
}

@media (max-width: 767px) {
    .wrd-section2 {
        padding: 40px 16px;
    }

    .wrd-section2 .features-container {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .wrd-section2 .feature-card {
        position: static;
        transform: none !important;
        width: 100%;
        max-width: 400px;
        margin: 12px auto;
    }

    .wrd-section2 .mobile-mockup {
        order: -1;
        margin-bottom: 40px;
    }

    .wrd-section2 .phone-frame {
        width: 280px;
        height: 580px;
        margin: 0 auto;
    }

    .wrd-section2 .connection-lines {
        display: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wrd-section2 .feature-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.wrd-section2 .feature-card[data-position="1"] {
    animation-delay: 0.1s;
}

.wrd-section2 .feature-card[data-position="2"] {
    animation-delay: 0.15s;
}

.wrd-section2 .feature-card[data-position="3"] {
    animation-delay: 0.2s;
}

.wrd-section2 .feature-card[data-position="4"] {
    animation-delay: 0.25s;
}

.wrd-section2 .feature-card[data-position="5"] {
    animation-delay: 0.1s;
}

.wrd-section2 .feature-card[data-position="6"] {
    animation-delay: 0.15s;
}

.wrd-section2 .feature-card[data-position="7"] {
    animation-delay: 0.2s;
}

.wrd-section2 .feature-card[data-position="8"] {
    animation-delay: 0.25s;
}

.wrd-section2 .mobile-mockup {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

/*================================================
Redesign Section 3 Area CSS
=================================================*/

.wrd-section3 {
    line-height: 1.7;
}

.wrd-section3 h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

.wrd-section3 ul {
    padding-left: 18px;
}

.wrd-section3 .img-fluid {
    width: 100%;
    height: 300px;
}

@media (max-width: 768px) {
    .wrd-section3 {
        padding: 50px 15px;
    }
}

@media (max-width: 468px) {
    .wrd-section3 .img-fluid {
        height: 200px;
        margin-top: 10px;
    }
}

/*================================================
    UI/UX Design Section 1 Area CSS
=================================================*/

.uiux_design_section .process-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.uiux_design_section .process-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.uiux_design_section .process-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.uiux_design_section .animation-gif {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    background: #fff;
}

.uiux_design_section .benefit-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.uiux_design_section .portfolio-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.uiux_design_section .portfolio-item img {
    transition: transform 0.5s ease;
}

.uiux_design_section .portfolio-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .uiux_design_section .hero {
        padding: 100px 0 80px;
    }

    .uiux_design_section .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .uiux_design_section h1 {
        font-size: 2.5rem;
    }

    .uiux_design_section .process-card,
    .uiux_design_section .animation-gif {
        margin-bottom: 30px;
    }
}

/*================================================
    API Intergation Area CSS
=================================================*/

/* Section 1 */

.api-section1 {
    background: #f8fbff;
}

.api-section1 .section-tag {
    color: orangered;
    font-weight: 600;
    letter-spacing: 1px;
}

.api-section1 .section-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.api-section1 .section-title span {
    color: orangered;
}

.api-section1 .section-desc {
    color: #555;
    margin: 20px 0 30px;
    line-height: 1.7;
}

.api-section1 .api-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.api-section1 .api-step {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.api-section1 .api-step:hover {
    transform: translateX(6px);
}

.api-section1 .api-step .icon {
    width: 48px;
    height: 48px;
    background: orangered;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.api-section1 .api-step h5 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.api-section1 .api-step p {
    margin: 6px 0 0;
    font-size: 14px;
    color: #666;
}

.api-section1 .api-image-box {
    position: relative;
    padding: 20px;
}

.api-section1 .api-image {
    height: 300px;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.api-section1 .whychoose-api-content h4 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.api-section1 .whychoose-api-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.api-section1 .whychoose-api-content ul {
    list-style: none;
    padding-left: 0;
}

.api-section1 .whychoose-api-content ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.api-section1 .whychoose-api-content ul li i {
    color: orangered;
    margin-right: 8px;
}

@media (max-width: 576px) {
    .api-section1 .section-title {
        font-size: 1.3rem;
    }

    .api-section1 .api-step {
        flex-direction: column;
        text-align: center;
    }

    .api-section1 .api-step .icon {
        margin: auto;
    }

    .api-section1 .api-image {
        height: 200px;
    }
}

/* Section 2 */

.api-section2 {
    background: white;
}

.api-section2 .solution-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px 20px;
}

.api-section2 .solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.api-section2 .solution-icon {
    width: 60px;
    height: 60px;
    background: orangered;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.api-section2 .solution-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.api-section2 .solution-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .api-section2 .solution-card {
        padding: 20px 15px;
    }
}

/* Section 3 */

.api-section3 {
    background: #f8fbff;
}

.api-section3 h6 {
    color: orangered;
    font-weight: 600;
    letter-spacing: 1px;
}

.api-section3 h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.api-section3 p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.api-section3 .benefits-list {
    list-style: none;
    padding: 0;
}

.api-section3 .benefits-list li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
    position: relative;
    padding-left: 28px;
}

.api-section3 .benefits-list li i {
    color: orangered;
    position: absolute;
    left: 0;
    top: 2px;
}

.api-section3 .benefits-image-box {
    position: relative;
    height: 500px;
}

.api-section3 .benefits-image-box img {
    max-height: 100%;
    width: auto;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 992px) {
    .api-section3 .benefits-image-box {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .api-section3 h2 {
        font-size: 1.5rem !important;
    }

    .api-section3 .benefits-image-box {
        height: 250px;
        margin-top: 20px;
    }
}

/* Section 4 */

.api-section4 {
    background: white;
}

.api-section4 .workflow-wrapper {
    position: relative;
}

.api-section4 .workflow-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, orangered, #f86d43);
    transform: translateX(-50%);
    border-radius: 10px;
}

.api-section4 .workflow-item {
    width: 50%;
    padding: 10px 20px;
    position: relative;
}

.api-section4 .workflow-item.left {
    left: 0;
    text-align: right;
}

.api-section4 .workflow-item.right {
    left: 50%;
    text-align: left;
}

.api-section4 .workflow-item::before {
    content: "";
    position: absolute;
    top: 35px;
    width: 14px;
    height: 14px;
    background: orangered;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(255, 69, 0, 0.15);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
}

.api-section4 .workflow-item::after {
    content: "";
    position: absolute;
    top: 41px;
    height: 3px;
    background: linear-gradient(to right, orangered, #f86d43);
    z-index: 1;
    width: 0;
    transition: width 0.6s ease 0.2s;
}

.api-section4 .workflow-item.left::before {
    right: -7px;
}

.api-section4 .workflow-item.left::after {
    right: 0;
}

.api-section4 .workflow-item.right::before {
    left: -7px;
}

.api-section4 .workflow-item.right::after {
    left: 0;
}

.api-section4 .workflow-item.active::before {
    opacity: 1;
    transform: scale(1);
}

.api-section4 .workflow-item.active::after {
    width: 40px;
}

@media (max-width: 992px) {
    .api-section4 .workflow-item::before {
        left: 13px !important;
        right: auto !important;
    }

    .api-section4 .workflow-item::after {
        left: 20px !important;
        width: 0;
    }

    .api-section4 .workflow-item.active::after {
        width: 30px;
    }
}

.api-section4 .workflow-card {
    display: inline-block;
    background: #f8f9ff;
    padding: 25px 25px;
    border-radius: 16px;
    max-width: 350px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.api-section4 .workflow-card.left {
    border-left: 2px solid orangered;
}

.api-section4 .workflow-card.right {
    border-right: 2px solid orangered;
}

.api-section4 .workflow-card i {
    font-size: 28px;
    color: orangered;
    margin-bottom: 12px;
}

.api-section4 .workflow-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.api-section4 .workflow-card p {
    font-size: 14px;
    color: #555;
}

.api-section4 .workflow-card:hover {
    transform: translateY(-8px) scale(1.02);
}

@media (max-width: 992px) {
    .api-section4 .workflow-line {
        left: 20px;
    }

    .api-section4 .workflow-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding-left: 50px;
    }

    .api-section4 .workflow-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .api-section4 .workflow-item.left {
        text-align: left;
    }

    .api-section4 .workflow-item.right {
        text-align: left;
    }

    .api-section4 .workflow-card.left {
        border-left: none;
        border-right: 2px solid orangered;
    }
}

/*================================================
    CMS Section Area CSS
=================================================*/

/* Section 1 */

.cms-section1 {
    background: #f8fbff;
}

.cms-section1 .cms-tag {
    color: orangered;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}

.cms-section1 .cms-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.cms-section1 .cms-title span {
    color: orangered;
}

.cms-section1 .cms-desc {
    color: #555;
    font-size: 16px;
    margin-top: 5px;
}

.cms-section1 .cms-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.cms-section1 .cms-list li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
}

.cms-section1 .cms-list li span {
    color: orangered !important;
}

.cms-section1 .cms-image-wrap {
    height: 900px;
    width: 100%;
}

.cms-section1 .cms-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15%;
}

@media (max-width: 992px) {
    .cms-section1 .cms-title {
        font-size: 32px;
    }

    .cms-section1 .cms-image-wrap {
        display: none;
    }
}

@media (max-width: 576px) {
    .cms-section1 .cms-title {
        font-size: 26px;
    }

    .cms-section1 .cms-desc {
        font-size: 14px;
    }

    .cms-section1 .cms-list li {
        font-size: 14px;
    }
}

/* Section 2 */

.cms-section2 {
    background: white;
}

.cms-section2 .cms-feature-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 24px 24px 10px 24px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
}

.cms-section2 .cms-feature-card h5 {
    color: #ff6a00;
    margin-bottom: 10px;
}

.cms-section2 .cms-feature-card p {
    font-size: 14px;
    color: #555;
}

.cms-section2 .cms-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Section 3 */

.cms-section3 {
    background: #f8fbff;
}

.cms-section3 .cms-why-list {
    list-style: none;
    padding: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cms-section3 .cms-why-list li {
    position: relative;
    padding-left: 2.1rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.cms-section3 .cms-why-list li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: orangered;
    font-size: 1.3rem;
}

.cms-section3 .cms-stats-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.cms-section3 .cms-stat-box {
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    border: none;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.cms-section3 .cms-stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: orangered;
}

.cms-section3 .cms-stat-box i {
    font-size: 2rem;
    color: orangered;
    margin-bottom: 1rem;
}

.cms-section3 .cms-stat-box h3 {
    color: orangered;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cms-section3 .cms-stat-box p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.cms-section3 .api-highlight {
    border-left: 3px solid orangered;
    padding: 1.8rem;
    border-radius: 0.75rem;
    margin: 2.5rem 0;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cms-section3 .orange-list li::marker {
    color: orangered;
}

/*================================================
    Cookie Banner Area CSS
=================================================*/

#ecs-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: min(680px, calc(100vw - 32px));
    background: #ffffff;
    border: 1.5px solid #e8e8e8;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .15), 0 2px 10px rgba(255, 69, 0, .08);
    padding: 24px 28px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: ecsCookieSlideUp .5s cubic-bezier(.34, 1.56, .64, 1) both;
}

#ecs-cookie-banner.ecs-hiding {
    animation: ecsCookieSlideDown .4s .35s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes ecsCookieSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes ecsCookieSlideDown {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
}

.ecs-cookie-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ecs-cookie-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: #fff1ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ecs-cookie-heading {
    flex: 1;
}

.ecs-cookie-heading h6 {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    letter-spacing: -.01em;
}

.ecs-cookie-heading p {
    margin: 0;
    font-size: 13px;
    color: #555555;
    line-height: 1.55;
}

.ecs-cookie-heading p a {
    color: orangered;
    text-decoration: none;
    font-weight: 600;
}

.ecs-cookie-heading p a:hover {
    text-decoration: underline;
}

.ecs-cookie-close {
    background: none;
    border: none;
    font-size: 24px;
    color: red;
    cursor: pointer;
    padding: 2px 4px;
    line-height: 1;
    transition: color .35s cubic-bezier(.4, 0, .2, 1);
    margin-top: -2px;
}

.ecs-cookie-close:hover {
    color: orangered;
}

.ecs-cookie-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ecs-cookie-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #111111;
    letter-spacing: .02em;
    white-space: nowrap;
}

.ecs-cookie-pill.highlight {
    background: #fff1ec;
    color: orangered;
}

.ecs-cookie-prefs {
    border-top: 1px solid #e8e8e8;
    padding-top: 14px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.ecs-cookie-prefs.open {
    display: flex;
}

.ecs-pref-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ecs-pref-label {
    font-size: 13px;
    color: #111111;
    font-weight: 600;
}

.ecs-pref-desc {
    font-size: 11.5px;
    color: #555555;
    margin-top: 1px;
}

.ecs-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    min-width: 44px;
}

.ecs-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ecs-toggle-slider {
    position: absolute;
    inset: 0;
    background: #ddd;
    border-radius: 34px;
    cursor: pointer;
    transition: background .35s cubic-bezier(.4, 0, .2, 1);
}

.ecs-toggle-slider:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.ecs-toggle input:checked+.ecs-toggle-slider {
    background: orangered;
}

.ecs-toggle input:checked+.ecs-toggle-slider:before {
    transform: translateX(20px);
}

.ecs-toggle input:disabled+.ecs-toggle-slider {
    opacity: .55;
    cursor: not-allowed;
}

.ecs-cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ecs-btn {
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    cursor: pointer;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    letter-spacing: .02em;
}

.ecs-btn-accept {
    background: orangered;
    color: #ffffff;
    flex: 1;
}

.ecs-btn-accept:hover {
    background: #d93c00;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 69, 0, .35);
}

.ecs-btn-reject {
    background: #f5f5f5;
    color: #111111;
}

.ecs-btn-reject:hover {
    background: #e0e0e0;
}

.ecs-btn-prefs {
    background: none;
    color: orangered;
    border: 1.5px solid orangered;
    padding: 9px 18px;
}

.ecs-btn-prefs:hover {
    background: #fff1ec;
}

.ecs-cookie-footer {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    border-top: 1px solid #e8e8e8;
    padding-top: 10px;
    letter-spacing: .03em;
}

.ecs-cookie-footer span {
    color: orangered;
    font-weight: 700;
}

#ecs-cookie-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100000;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: all .4s ease;
}

#ecs-cookie-toast .toast-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: orangered;
    flex-shrink: 0;
}

#ecs-cookie-toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    #ecs-cookie-banner {
        bottom: 16px;
        padding: 18px 18px;
        gap: 14px;
        border-radius: 12px;
    }

    .ecs-cookie-actions {
        gap: 8px;
    }

    .ecs-btn-accept {
        flex: 1 1 100%;
    }

    .ecs-btn-reject,
    .ecs-btn-prefs {
        flex: 1 1 calc(50% - 4px);
        text-align: center;
    }

    .ecs-cookie-services {
        gap: 5px;
    }
}

@media (max-width: 480px) {
    #ecs-cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        border-radius: 16px 16px 0 0;
        border-bottom: none;
        padding: 20px 16px 28px;
        animation: ecsCookieSlideUpMobile .5s cubic-bezier(.34, 1.56, .64, 1) both;
    }

    #ecs-cookie-banner.ecs-hiding {
        animation: ecsCookieSlideDownMobile .4s ease both;
    }

    @keyframes ecsCookieSlideUpMobile {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes ecsCookieSlideDownMobile {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(40px);
        }
    }

    .ecs-cookie-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 17px;
    }

    .ecs-cookie-heading h6 {
        font-size: 14px;
    }

    .ecs-btn {
        padding: 11px 14px;
        font-size: 12.5px;
    }

    .ecs-btn-reject,
    .ecs-btn-prefs {
        flex: 1 1 calc(50% - 4px);
    }

    #ecs-cookie-toast {
        bottom: auto;
        top: 20px;
        right: 16px;
        left: 16px;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .ecs-cookie-pill {
        font-size: 10px;
        padding: 3px 8px;
    }

    .ecs-btn-reject,
    .ecs-btn-prefs {
        flex: 1 1 100%;
    }
}


/* Scroll Bar */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: orangered;
    border-radius: 10px;
}

:root {
    scroll-padding-top: 80px;
}