/* ============================================================
[xs] Extra Small — 0px to 575px
📱 Small mobile (iPhone SE, Galaxy A, etc.)
✅ This is the default — No @media query needed
============================================================ */

/* @font-face {
    font-family: Font-name original;
    src: url(local-link-here...);
} */

/* ===== Variables  ===== */
:root {
    --primary_color: #6754e9;
    --secondary_color: #000000;
    --white_color: #ffffff;
    --primary_font: 'Syne', sans-serif;
}

/* ===== Global Responsive Font Sizes ===== */
h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
}

h2 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 600;
}

h3 {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 600;
}

h4 {
    font-size: clamp(18px, 2.5vw, 26px);
}

h5 {
    font-size: clamp(16px, 2vw, 22px);
}

h6 {
    font-size: clamp(15px, 1.8vw, 18px);
}

p {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.6;
}

a {
    font-size: clamp(14px, 1.8vw, 16px);
    text-decoration: none;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    font-family: var(--primary_font);
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary_font);
}

a,
p {
    font-family: var(--secondary_font);
} */

/*========================= header start =========================*/
.navbar {
    background: var(--white_color);
    height: 80px;
    padding: 0.5rem;
}

.navbar-brand img {
    width: 52px;
}

.navbar-brand span {
    font-family: var(--primary_font);
    color: var(--primary_color);
    font-weight: 700;
    vertical-align: middle;
}

.contact-btn {
    background-color: var(--secondary_color);
    color: var(--white_color);
    padding: 8px 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: 0.3s background-color;
}

.contact-btn:hover {
    color: var(--white_color);
    background-color: var(--primary_color);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: var(--dark_grey_color);
    font-weight: 500;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary_color);
}

.offcanvas-title a img {
    width: 200px;
}

.navbar .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-brand {
    flex-shrink: 0;
}

.contact-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.navbar-toggler {
    flex-shrink: 0;
}

/*========================= header end =========================*/

/* ##################### Home page css start ##################### */

/*========================= banner section start =========================*/
#hp-banner {
    position: relative;
    background-color: #f7f7fa;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.banner {
    width: 100%;
    height: auto;
    background-color: var(--primary_color);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 35px 0px;
}

.banner-left {
    color: var(--white_color);
    padding: 0px 20px 40px 20px;
}

.consultation-form {
    background: var(--white_color);
    padding: 25px;
    border-radius: 25px;
    width: auto;
    box-shadow: 12px 9px 0 #2c1e7f;
    text-align: center;
}

.consultation-form h6 {
    color: var(--secondary_color);
    margin-bottom: 15px;
    text-align: left;
}

.consultation-form .form-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.consultation-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--secondary_color);
    border-radius: 35px;
}

.consultation-form a {
    background: var(--secondary_color);
    color: var(--white_color);
    padding: 15px 25px;
    border: none;
    border-radius: 35px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.consultation-form a:hover {
    background: var(--primary_color);
}

.banner-right {
    display: flex;
    gap: 20px;
    padding: 0px 20px;
    align-items: center;
}

.banner-right img {
    width: 155px;
    height: auto;
    border-radius: 15px;
}

.banner-right-left-image {
    flex: 1;
}

.banner-right-right-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.banner-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
}

.banner-bottom-right {
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
}

.banner-bottom-right img {
    width: 99px;
    height: auto;
}

/*========================= banner section end =========================*/

/*========================= services section start =========================*/
#hp-services {
    margin: 60px 0px;
}

.services-heading h6 {
    color: var(--primary_color);
}

.services-heading h2 {
    margin: 12px 0px;
}

.services-heading p {
    margin-bottom: 12px;
}

#underline-button {
    text-decoration: none;
    color: var(--secondary_color);
    display: inline-block;
    position: relative;
    border-bottom: 2px solid #b0a7ef;
}

#underline-button:hover {
    color: var(--primary_color);
}

#underline-button::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary_color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

#underline-button:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.services-heading img {
    display: none;
}

.services-tabs {
    background-color: var(--secondary_color);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 25px;
    overflow: hidden;
    margin-top: 50px;
    padding: 30px 20px;
}

.services-item {
    overflow: hidden;
}

.services-item .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--primary_color);
    color: var(--white_color);
    cursor: pointer;
    user-select: none;
    gap: 16px;
    border-radius: 35px;
    margin-bottom: 15px;
}

.services-item .heading span {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white_color);
    line-height: 1.3;
}

.services-item .heading .icon {
    font-size: 26px;
    color: var(--primary_color);
    flex-shrink: 0;
    line-height: 1;
    color: var(--white_color);
}

.services-item .description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 35px;
}

.services-item.active .description {
    max-height: 900px;
}

.description-image img {
    width: 100%;
    height: auto;
}

.description-text {
    background-color: #f7f7fa;
    padding: 30px 20px;
}

.description-text h3 {
    line-height: 1.65;
    margin-bottom: 20px;
}

.description-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
    padding: 0px;
}

.description-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.description-text ul li i {
    color: var(--primary_color);
    font-size: 16px;
    flex-shrink: 0;
}

/*========================= services section end =========================*/

/*========================= about section start =========================*/
.about-left h6 {
    color: var(--primary_color);
}

.about-left h2 {
    margin: 12px 0px;
}

.about-left p {
    margin-bottom: 12px;
}

.about-right img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    margin: 50px 0;
}

.about-bottom-left {
    background-color: var(--primary_color);
    color: var(--white_color);
    padding: 25px;
    border-radius: 25px;
    margin-bottom: 25px;
}

.about-bottom-right {
    background-color: var(--secondary_color);
    color: var(--white_color);
    padding: 25px;
    border-radius: 25px;
}

.about-bottom-left p {
    margin: 0px;
}

.about-bottom-right p {
    margin: 0px;
}

/*========================= about section end =========================*/

/*========================= audit section start =========================*/
#hp-audit {
    margin: 60px 0px;
}

.audit-main {
    background-color: #e9e5ff;
    padding: 25px;
    border-radius: 25px;
}

.audit-left h2 {
    font-weight: bold;
}

.audit-left p {
    margin: 15px 0px;
}

.audit-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--white_color);
    padding: 25px;
    border-radius: 35px;
    width: auto;
    box-shadow: 12px 9px 0 #2c1e7f;
    text-align: center;
}

.audit-right input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--secondary_color);
    border-radius: 35px;
}

.audit-right a {
    text-decoration: none;
    background: var(--secondary_color);
    color: var(--white_color);
    padding: 15px 25px;
    border: none;
    border-radius: 35px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.audit-right a:hover {
    background: var(--primary_color);
}

/*========================= audit section end =========================*/

/*========================= work section start =========================*/
.work-heading h6 {
    color: var(--primary_color);
}

.work-heading h2 {
    margin: 12px 0px;
}

.work-carousel {
    margin-top: 35px;
}

.work-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.work-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-item-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.2),
            transparent);
}

.work-item-text h5 {
    font-weight: bold;
    margin-bottom: auto;
}

.work-item-text h2 {
    font-weight: bold;
    margin: 0;
}

.work-item-text p {
    margin: 0px !important;
}

.work-item-text-white-line {
    margin: 20px 0;
    width: 100%;
    height: 2px;
    background: #fff;
    margin-bottom: 15px;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tags li {
    background-color: var(--white_color);
    color: var(--secondary_color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.owl-nav {
    display: none;
}

.owl-dots {
    position: absolute;
    content: '';
    left: 49%;
    bottom: -12%;
    transform: translateX(-49%);
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 30px !important;
    background-color: var(--primary_color);
}

/*========================= work section end =========================*/

/*========================= logo section start =========================*/
#hp-logo {
    margin: 80px 0px 60px 0px;
}

.logo-section .logo-heading h5 {
    font-weight: bold;
}

.logo-section .logo-heading span {
    color: var(--primary_color);
}

.logo-content {
    margin-top: 35px;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-images {
    display: flex;
    width: max-content;
    animation: marquee-scroll 18s linear infinite;
}

.logo-images:hover {
    animation-play-state: paused;
}

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    flex-shrink: 0;
}

.logo-image img {
    width: 120px;
    height: auto;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

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

/*========================= logo section end =========================*/

/*========================= cta section start =========================*/
#cta {
    background-color: var(--primary_color);
    color: var(--white_color);
    padding: 50px 20px;
    border-radius: 25px;
}

.cta-left p {
    margin: 15px 0px;
}

.cta-left ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 0px;
}

.cta-left ul li i {
    margin-right: 10px;
}

.cta-right {
    background: var(--white_color);
    padding: 35px;
    border-radius: 35px;
    box-shadow: 12px 9px 0 #2c1e7f;
}

.cta-right h2 {
    color: var(--secondary_color);
    margin-bottom: 15px;
}

.cta-right .form-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
    text-align: center;
}

.cta-right .form-box input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--secondary_color);
    border-radius: 35px;
}

.cta-right .form-box a {
    text-decoration: none;
    background: var(--secondary_color);
    color: var(--white_color);
    padding: 15px 25px;
    border: none;
    border-radius: 35px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta-right .form-box a:hover {
    background: var(--primary_color);
}

/*========================= cta section end =========================*/

/* ##################### Home page css end ##################### */

/*##################### sub banner section start #####################*/
#sub-banner {
    position: relative;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.sub-banner-main {
    width: 100%;
    height: auto;
    background-color: #efecff;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 35px 0px;
}

.sub-banner-left {
    color: var(--secondary_color);
    padding: 0px 20px 40px 20px;
}

.sub-banner-left h1 span {
    color: var(--primary_color);
}

.sub-banner-left p {
    margin: 15px 0px;
}

.sub-banner-left a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary_color);
    color: var(--white_color);
    padding: 5px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 3px 5px 0 var(--secondary_color);
}

.sub-banner-left a i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sub-banner-left a:hover {
    transform: translateY(-3px);
    box-shadow: 3px 5px 0 var(--secondary_color);
    color: var(--white_color);
}

.sub-banner-left a:hover i {
    transform: translateX(6px);
}

.sub-banner-left a:active {
    transform: scale(0.96);
}

.sub-banner-right {
    display: flex;
    justify-content: center;
}

.sub-banner-right img {
    width: 75%;
    height: auto;
    border-radius: 15px;
}

/*##################### sub banner section end #####################*/

/* ##################### Service page css start ##################### */
#sp-services {
    margin-top: 60px;
}

.sp-services-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sp-services-item {
    position: relative;
    color: var(--white_color);
    background-color: var(--primary_color);
    padding: 30px 25px;
    border-radius: 20px;
    transition: 0.3s ease;
}

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

.sp-service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white_color);
}

.sp-service-icon {
    width: 90px;
    height: 90px;
    margin: 20px auto;
    border-radius: 50%;
    background-color: var(--white_color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-service-icon i {
    font-size: 36px;
    color: var(--primary_color);
}

.sp-services-item h3 {
    margin-top: 10px;
    margin-bottom: 8px;
}

.sp-services-item h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--white_color);
    margin-top: 6px;
    border-radius: 2px;
}

.sp-services-item p {
    margin: 15px 0;
}

.sp-services-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.sp-services-item ul li {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.sp-services-item ul li i {
    color: var(--white_color);
    font-size: 16px;
}

.sp-services-item a {
    text-decoration: none;
    color: var(--white_color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.sp-services-item a i {
    transition: 0.3s;
}

.sp-services-item a:hover i {
    transform: translateX(5px);
}

/* ##################### Service page css end ##################### */

/* ##################### online e-commerce solution page css start ##################### */

/* ========================= oes solution section start ========================= */
#oes-solution {
    margin: 60px 0px;
}

.oes-solution-section-heading {
    text-align: center;
    margin-bottom: 15px;
}

.oes-solution-section-heading h2 span {
    color: var(--primary_color);
}

.oes-solution-main {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.oes-solution-item {
    background-color: var(--primary_color);
    color: var(--white_color);
    padding: 25px;
    border-radius: 25px;
    flex: 1 1 100%;
}

.oes-solution-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white_color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.oes-solution-item-icon i {
    font-size: 25px;
    color: var(--primary_color);
}

.oes-solution-item h3 {
    font-size: 25px;
    margin-top: 15px;
}

.oes-solution-item a {
    text-decoration: none;
    color: var(--white_color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.oes-solution-item a i {
    transition: 0.3s;
}

.oes-solution-item a:hover i {
    transform: translateX(5px);
}

/* ========================= oes solution section start ========================= */

/* ========================= counter section start ========================= */
.counter-main {
    background-color: #efecff;
    padding: 45px 0px;
    border-radius: 50%;
}

.counter-item {
    text-align: center;
    margin-bottom: 25px;
}

.counter-item:last-child {
    margin: 0px;
}

.counter-item h5 {
    font-size: 25px;
    font-weight: bold;
    color: var(--primary_color);
}

/* ========================= counter section start ========================= */

/* ========================= our process section start ========================= */
#our-process {
    margin: 60px 0px;
}

.our-process-heading {
    text-align: center;
}

.our-process-heading p {
    color: var(--primary_color);
}

.our-process-heading h2 {
    margin-bottom: 25px;
}

.our-process-main {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    flex: 1 1 100%;
}

.our-process-item {
    position: relative;
    color: var(--white_color);
    background-color: var(--primary_color);
    padding: 30px 25px;
    border-radius: 20px;
    transition: 0.3s ease;
}

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

.our-process-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white_color);
}

.our-process-icon {
    width: 50px;
    height: 50px;
    margin: 25px 0px 0px;
    border-radius: 50%;
    background-color: var(--white_color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-process-icon i {
    font-size: 25px;
    color: var(--primary_color);
}

.our-process-item h3 {
    margin-top: 10px;
    margin-bottom: 8px;
}

.our-process-item h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--white_color);
    margin-top: 6px;
    border-radius: 2px;
}
/* ========================= our process section end ========================= */

/* ========================= oes cta section start ========================= */
.oes-cta-section {
    background-color: #efecff;
    padding: 25px 0px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.oes-cta-left h1 span {
    color: var(--primary_color);
}

.oes-cta-left a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary_color);
    color: var(--white_color);
    padding: 5px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 3px 5px 0 var(--secondary_color);
}

.oes-cta-left a:hover {
    transform: translateY(-3px);
    box-shadow: 3px 5px 0 var(--secondary_color);
    color: var(--white_color);
}

.oes-cta-right {
    margin-top: 25px;
}

.oes-cta-right img {
    width: 100%;
}
/* ========================= oes cta section end ========================= */

/* ##################### online e-commerce solution page css end ##################### */

/*========================= footer start =========================*/
#footer {
    padding: 30px 0px;
    background-color: #f7f7fA;
    color: #333333;
}

#footer h6 {
    color: var(--primary_color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-nav ul li a {
    text-decoration: none;
    color: #333333;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--primary_color);
}

.divider {
    border: 0;
    border-top: 1px solid var(--secondary_color);
    margin: 20px 0;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-menu a {
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary_color);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 13px;
    margin-top: 20px;
}

.copyright {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.copyright a {
    margin-left: 0;
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--primary_color);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary_color);
}

/*========================= footer end =========================*/

/*========================= back to top start =========================*/
#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    text-indent: -9999px;
    display: none;
    border-radius: 50%;
    z-index: 9999;
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll:hover {
    background-color: #e74c3c;
}

/*========================= whatsapp button start =========================*/
.btn-floating {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    z-index: 9999;
    cursor: pointer;
    transition: 0.3s;

    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-floating:hover {
    width: 50px;
    padding: 0;
}

.btn-floating img {
    width: 20px;
    height: 20px;
}

.btn-floating.whatsapp {
    background-color: #34af23;
    right: 15px;
    bottom: 70px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12;
}

/*========================= other css =========================*/