@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=PT+Sans+Narrow:wght@400;700&display=swap');
:root {
    --primary-color: #a26aea;
    --primary-color--50: #a26aea3d;
    --orange-color: #ff942f;
    --orange-color-50: #ff932f48;
    --primary-color-50: #ffffffaa;
    --secondary-color-50: rgba(255, 255, 255, 0.373);
    --secondary-color: rgb(28, 28, 28);
    --secondary-color-black: #000000fc;
    --secondary-color-black-50: #000000b9;
    --background-color: rgb(231, 231, 231);
}

* {
    box-sizing: border-box;
    list-style: none;
}

body {
    /* background-image: url(https://images.pexels.com/photos/34235329/pexels-photo-34235329.jpeg); */
    font-family: "Inter", sans-serif;
    height: 300vh;
    background-color: var(--background-color);
    overflow: hidden;
    background-size: cover;
}

.text-primary {
    color: var(--primary-color) !important;
}

a:hover {
    color: var(--primary-color) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.text-primary-50 {
    opacity: .4;
    color: var(--primary-color) !important;
}

.bg-orange {
    background: var(--orange-color) !important;
}

.text-orange {
    color: var(--orange-color) !important;
}

.text-orange-50 {
    opacity: .5;
    color: var(--orange-color) !important;
}

html {
    overflow: hidden;
}


/* Scroll smoother structure */

#smooth-wrapper {
    height: 100%;
    overflow: hidden;
}

#smooth-content {
    will-change: transform;
}

a {
    text-decoration: none;
    color: inherit;
}

.pt-sans-narrow-bold {
    font-family: "PT Sans Narrow", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.obj {
    object-fit: cover;
    object-position: center;
}

header {
    position: fixed;
    width: 100%;
    z-index: 999999;
}

.blurBg {
    border-radius: 100px;
    background-color: var(--primary-color-50);
    backdrop-filter: blur(2px);
    z-index: 2;
    position: relative;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.158);
}

.blurBg.blackbg {
    background-color: var(--secondary-color-black-50);
    color: white;
}

.blurBg.blackbg::after {
    background-color: var(--secondary-color-black-50);
}

nav .logo {
    width: 150px;
    font-size: 2em;
    /* height: 50px; */
}

.blurBg::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: var(--secondary-color-50);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    backdrop-filter: blur(10px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100px;
}

nav .logo img {
    width: 50px;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

.menu {
    display: none;
    padding: 50px;
    margin-top: 10px;
    width: 300px;
    position: absolute;
    border-radius: 30px;
    border-top-right-radius: 10px;
    /* 🌫️ Glass + blur core */
    background: rgba(255, 255, 255, 0.25);
    /* softer, more glassy */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    /* 💫 Light gradient for iOS depth */
    background-image: linear-gradient( 135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 100%);
    /* 🌈 Optional subtle border + inner glow */
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.5), 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999999999;
    transform: translateX(-90%);
}

.menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu ul li {
    transition: all .3s;
    line-height: 25px;
}

.menu ul li:hover {
    font-size: 2em;
    font-weight: bold;
}

.menubtn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.social a {
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    display: inline-flex;
    width: 30px;
    height: 30px;
    border: 1px solid black;
    border-radius: 100%;
}


/* Slider common styles */

.upSlider {
    position: relative;
    width: 150px;
    height: 130px;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* transform: rotate(5deg); */
}

.upSlider .track {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    column-gap: 20px;
}

.upSlider.up {
    transform: rotate(-5deg);
}

.upSlider.up .track {
    flex-direction: column;
}

.upSlider.side .track {
    flex-direction: row;
}

.upSlider img {
    width: 140px;
    height: 130px;
    object-fit: cover;
    flex-shrink: 0;
}

.upSlider.side {
    transform: rotate(5deg);
    background-color: #333;
    flex-direction: row;
}

.upSlider.side img {
    width: 80px;
    height: 91px;
}

section {
    width: 100%;
    /* height: 100vh; */
}

#Herosection h1 {
    font-size: 1em;
    margin-bottom: 20px;
    color: gray;
}

#Herosection h2 {
    width: 60%;
    margin: auto;
    font-size: 6em;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: gray;
    letter-spacing: -4px;
    justify-content: center;
}

#Herosection h2 span.fw-bold {
    color: black;
}

.revel {
    line-height: 50px;
}

.fadeText {
    font-weight: bold;
    font-size: 3em;
    color: #333;
    line-height: 1.5;
    text-align: center;
    max-width: 800px;
    margin: 1px auto;
}

.fadeText .word {
    display: inline-block;
    opacity: 0.2;
    transform: translateY(10px);
    transition: opacity 0.3s;
}

.sidePills,
.sidePills2 {
    font-size: 1em;
    position: absolute;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: grab;
}

.sidePills.pill1 {
    top: 50px;
    left: 200px;
    transform: rotate(15deg);
}

.sidePills.pill2 {
    left: 200px;
    top: 130px;
    transform: rotate(5deg);
}

.sidePills.pill3 {
    left: 200px;
    top: 220px;
    transform: rotate(-10deg);
}

.sidePills2.pill1 {
    bottom: 300px;
    left: 200px;
}

.sidePills2.pill2 {
    left: 200px;
    bottom: 130px;
    transform: rotate(5deg);
}

.sidePills2.pill3 {
    left: 200px;
    bottom: 220px;
    transform: rotate(-10deg);
}

.helloSection {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
}

.sidePills.pill4 {
    right: 200px;
    top: 10px;
    transform: rotate(-12deg);
}

.sidePills.pill5 {
    right: 200px;
    top: 90px;
    transform: rotate(8deg);
}

.sidePills.pill6 {
    right: 200px;
    top: 180px;
    transform: rotate(-5deg);
}

.sidePills2.pill4 {
    right: 200px;
    bottom: 300px;
    transform: rotate(-12deg);
}

.sidePills2.pill5 {
    right: 200px;
    bottom: 220px;
    transform: rotate(8deg);
}

.sidePills2.pill6 {
    right: 200px;
    bottom: 140px;
    transform: rotate(-5deg);
}

.pill1,
.pill4 {
    background: rgb(255, 196, 69);
}

.pill2,
.pill5 {
    background: rgba(203, 82, 255, 0.836);
}

.pill3,
.pill6 {
    background: rgba(255, 95, 226, 0.859);
}

.lineHeading {
    display: inline-flex;
    position: relative;
    left: 50%;
    font-weight: normal;
    font-size: 1.3em;
    transform: translateX(-50%);
    /* display: flex; */
    align-items: center;
    color: var(--orange-color);
}

.lineHeading::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    right: 0;
    transform: translateX(120%);
    background: linear-gradient(to right, #ffaf40, rgba(228, 155, 102, 0.293));
}

.lineHeading::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    left: 0;
    transform: translateX(-120%);
    background: linear-gradient(to left, #ffaf40, rgba(228, 155, 102, 0.293));
}

.processCard {
    width: calc((100% / 4) - 20px);
    height: 450px;
    padding: 2em 3em;
    position: relative;
    /* overflow: hidden; */
    border-radius: 20px !important;
    /* background: rgba(255, 255, 255, 0.75); */
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.servies .processCard {
    height: 350px;
}

.bgtranswhite {
    background-color: var(--primary-color--50);
}

.bgtransblack {
    background-color: var(--orange-color-50);
}


/* .tiltInner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 800px;
    transition: transform 0.2s ease;
    position: relative;
} */

.processCard:nth-child(1) {
    background-color: #fcf6bd !important;
}

.processCard:nth-child(2) {
    background-color: #d0f4de !important;
}

.processCard:nth-child(3) {
    background-color: #a9def9 !important;
}

.processCard:nth-child(4) {
    background-color: #e4c1f9 !important;
}

.processCard.blurBg::after {
    border-radius: 20px;
}


/* .processCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient( 75deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.0) 100%);
    transform: skewX(-25deg);
    opacity: 0;
    border-radius: 20px;
} */

.processCard:nth-child(even) {
    transform: translateY(-15%);
}

.processCard .number {
    font-size: 4em;
    font-weight: bold;
    transform: all .4s;
}

.bottomContent {
    position: absolute;
    padding-right: 2em;
    bottom: 2em;
}

.bottomContent h3,
.bottomContent h2 {
    font-size: 1.2em;
    font-weight: bold;
}


/* Hover glow + lift */

.processCard:hover {
    transform: translateY(-20px) scale(1.05);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(100, 100, 255, 0.3); */
    /* border: 1px solid rgba(100, 100, 255, 0.3); */
}

.processCard:hover .number {
    color: var(--primary-color);
}


/* .processCard:hover h3 {
    color: var(--primary-color);
} */

.review p {
    font-size: 1.5em;
}

.reveal2 {
    display: inline-block;
    line-height: 1.6;
    font-size: 1.1em;
    color: #333;
}

.reveal2 span {
    display: inline-block;
    opacity: 0;
    filter: blur(6px);
    transform: translateY(10px);
}

.quote i {
    font-size: 2em;
    color: #6366f1;
}

.Authimg {
    background-color: #6366f1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.Author h4 {
    font-weight: bold;
    color: #333;
}

.rightLi {
    border-left: 1px solid gray;
}

.rightRe {
    margin-top: 200px;
}

.pop {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(20px);
}

h2 {
    font-size: 2.5em;
}

.projects {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 50px;
}

.mybogs .project .proImage {
    /* margin: ; */
    padding: 10px;
    height: 300px;
    position: relative;
    background-color: var(--primary-color--50);
    /* width: calc((100% / 3) - 50px); */
}

.mybogs .project .proImage img {
    height: 100%;
    border-radius: 25px;
}

.mybogs .blogContent {
    margin-top: 10px;
    background-color: var(--primary-color--50);
    border-radius: 20px;
    height: 130px;
}

.mybogs .avilbtn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mybogs .project {
    width: calc((100% / 3) - 50px);
}

.mybogs .bdate {
    font-size: .9em;
}

.project,
.ps {
    position: relative;
    width: calc((100% / 2) - 50px);
    cursor: none;
    /* hide default cursor when hovering */
}

.project .name,
.ps .name {
    font-size: 1.2em;
    font-weight: bold;
}

.project .proImage,
.ps .proImage {
    background-color: var(--primary-color);
    border-radius: 30px;
    /* border: 2px solid black; */
    overflow: hidden;
}

.project .proImage img,
.ps .proImage img {
    transition: all .5s ease-in-out;
}

.project:hover>.proImage img {
    display: inline-block;
    transform: scale(1.2) !important;
}

.project .tag,
.ps .tag {
    background-color: var(--orange-color);
    color: rgb(255, 255, 255);
    font-size: .9em;
}

.position-xl-absolute {
    position: absolute;
}


/* Mouse tracking icon */

.project .mouseIcon {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    z-index: 9999;
    pointer-events: none;
    /* allows hover to pass through */
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project .mouseIcon i {
    color: #000;
    font-size: 1.2em;
}

.Fimg {
    overflow: hidden !important;
    padding: 10px;
    border-radius: 20px;
}

.founderImage.blurBg {
    border-radius: 20px;
    /* transform: scale(1.2); */
    box-shadow: 0 10px 20px rgba(128, 128, 128, 0.559);
    overflow: hidden;
}

.founderImage.blurBg img {
    border-radius: 20px;
}

.founderImage.blurBg::after {
    border-radius: 20px;
}

.founderinfo h3 {
    font-size: 1em;
}

.Fsocial a {
    font-size: 1.5em;
    color: gray;
}

.Fsocial a:hover {
    color: black;
}

.bottom-20 {
    bottom: 100px;
}

.faj {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aj {
    justify-content: center;
    align-items: center;
}

.text-gray {
    color: gray;
}

.fs24 {
    font-size: 24px;
}

.blurBg.br2 {
    border-radius: 20px;
}

.blurBg.br2::after {
    border-radius: 20px;
}

.QuestionProfile {
    transform: rotate(0deg) scale(0.9);
    opacity: 0;
    filter: blur(8px);
    transition: all 0.6s ease;
    transform-origin: center;
}

.accordion-item {
    padding: 20px 0;
    background-color: transparent;
    /* border-top: 1px solid black !important; */
    border-bottom: 1px solid black !important;
}

.accordion-item:nth-child(1) {
    /* background-color: transparent; */
    border-top: 1px solid black !important;
    /* border-bottom: 1px solid black !important; */
}

.accordion-button {
    background-color: transparent;
    box-shadow: none !important;
    font-size: 24px;
    flex-wrap: wrap;
}

.accordion-button::after {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a26aea'%3e%3cpath d='M7 1h2v6h6v2H9v6H7V9H1V7h6V1z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: black;
    box-shadow: none !important;
}

.accordion-body {
    color: gray;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* height: 100vh; */
    width: 100%;
    color: white;
    overflow: hidden;
}

.footerinner {
    width: 100%;
    overflow: hidden;
    height: 100%;
    border-radius: 20px;
    background-color: var(--secondary-color-black-50);
}

.mainHead {
    font-size: 6em;
    color: gray;
}

.sideFromAbove {
    opacity: 1;
    filter: blur(2px);
    transform: translateY(-400px);
    transition: all 0.6s ease;
}

.projectShowcase .projects {
    position: relative;
    background-color: var(--primary-color-50);
    width: 95%;
    padding: 100px;
    height: 100vh;
    margin: auto;
    border-radius: 20px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: inset 0 300px 300px -300px black, /* top */
    inset 0 -300px 300px -300px black;
}

.projectShowcase .projects::after {
    position: absolute;
    content: "";
    z-index: 1;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 500px 500px -500px black, inset 0 -500px 500px -500px black;
    top: 0;
    left: 0;
}

.columnLeft,
.columnRight {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 45%;
}

.ps {
    position: relative;
    width: 100%;
}

.ps .proImage {
    background-color: var(--primary-color--50);
    border-radius: 30px;
    overflow: hidden;
}

.ps .proImage img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease-in-out;
}

.projectShowcase {
    position: relative;
}

.seeMore {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 7;
}

.seeMoreicon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6em;
    width: 180px;
    height: 180px;
    background-color: rgba(255, 255, 255, 0.541);
    border-radius: 50%;
    color: rgb(61, 61, 61);
    position: absolute;
    z-index: 2;
}

.orbitText {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(0deg);
    z-index: 1;
}

.orbitTextLabel {
    fill: var(--primary-color);
    stroke: var(--secondary-color-black-50);
    stroke-width: 10px;
    paint-order: stroke fill;
    font-size: 25px;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
}

.orbitTextLabel textPath {
    letter-spacing: 2px;
}

.slidesBox {
    transform: translateY(-50px);
}


/* container to hold background layers */

.bg-container {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}


/* gradient circle blob */

.gradient-circle {
    position: absolute;
    width: 350px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--orange-color) 0%, var(--primary-color) 100%);
    filter: blur(120px);
    opacity: 0.9;
    pointer-events: none;
    transition: background 1s ease;
}


/* frosted blur layer */

.blur-layer {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(60px) saturate(180%) contrast(120%);
    -webkit-backdrop-filter: blur(60px) saturate(180%) contrast(120%);
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

#AboutHerosection.blog .hero-text h1 {
    font-size: 3em;
    text-shadow: none;
}

#AboutHerosection {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    /* background: #fff; */
}

.bimage {
    background-color: var(--orange-color-50);
    backdrop-filter: blur(8px);
    padding: 10px;
    border-radius: 20px;
}

.bimage img {
    border-radius: 20px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
    /* position: relative; */
    text-align: center;
}

.hero-text h1 {
    font-size: 10rem;
    color: var(--orange-color, #ff9a3c);
    text-shadow: 5px 5px 1px rgba(0, 0, 0, 0.2);
}

.hero-text span.chnageFontstyles {
    color: var(--primary-color, #a26aea);
    display: inline-block;
    transition: all 0.1s ease;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
}

#AboutHerosection p {
    width: 50%;
    text-align: center;
    margin: auto;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}


/* .floating-balls {
    width: 100%;
    position: absolute;
    inset: 0;
    z-index: -4;
    overflow: hidden;
    pointer-events: none;
}


/* 🟣 Solid colorful balls */

.ball {
    position: absolute;
    border-radius: 50%;
    background: #a26aea;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    box-shadow: 0 0 15px rgba(162, 106, 234, 0.5);
}

.blurBg1 {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contactForm {
    color: #000;
}

.inputField {
    background: rgba(255, 255, 255, 0.75);
    border: none;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.inputField:focus {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(162, 106, 234, 0.3);
    outline: none;
}

.submitBtn {
    background-color: #a26aea;
    color: white;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.submitBtn:hover {
    background-color: #8b4eea;
    transform: scale(1.05);
}

.swiper {
    height: auto;
    /* let content define height */
}

.bimgs {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.service h1 {
    font-size: 7em;
}

h2.serviceHeadings {
    font-size: 3em;
}

body#SingleService .processCard {
    height: var(--c-height);
    width: calc((100% / var(--n-cards)) - 20px) !important;
}

body#SingleService .processCard .bottomContent {
    /* --n-cards: 2; */
    position: relative;
    bottom: auto;
}

body#SingleService .fadeText {
    max-width: 90%;
}

body#SingleService .w-100.h-100.obj.reveal {
    max-height: 500px !important;
    height: auto !important;
}

.iconBottom {
    background-color: var(--orange-color-50);
    color: var(--orange-color);
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 100%;
    font-size: 1.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

@media screen and (max-width:1500px) and (min-width:1300px) {
    .slidesBox {
        transform: translateY(-50px);
    }
    .col-8s {
        width: 70%;
    }
    .sidePills.pill1 {
        top: 50px;
        left: 50px;
        transform: rotate(15deg);
    }
    .sidePills.pill2 {
        left: 50px;
        top: 130px;
        transform: rotate(5deg);
    }
    .sidePills.pill3 {
        left: 50px;
        top: 220px;
        transform: rotate(-10deg);
    }
    .sidePills.pill4 {
        right: 50px;
        top: 10px;
        transform: rotate(-12deg);
    }
    .sidePills.pill5 {
        right: 50px;
        top: 90px;
        transform: rotate(8deg);
    }
    .sidePills.pill6 {
        right: 50px;
        top: 180px;
        transform: rotate(-5deg);
    }
}

@media screen and (max-width:1300px) and (min-width:1000px) {
    .container {
        min-width: 95%;
    }
    .slidesBox {
        transform: translateY(-50px);
    }
    .sidePills.pill1 {
        top: 50px;
        left: 50px;
        transform: rotate(15deg);
    }
    .sidePills.pill2 {
        left: 50px;
        top: 130px;
        transform: rotate(5deg);
    }
    .sidePills.pill3 {
        left: 50px;
        top: 220px;
        transform: rotate(-10deg);
    }
    .sidePills.pill4 {
        right: 50px;
        top: 10px;
        transform: rotate(-12deg);
    }
    .sidePills.pill5 {
        right: 50px;
        top: 90px;
        transform: rotate(8deg);
    }
    .sidePills.pill6 {
        right: 50px;
        top: 180px;
        transform: rotate(-5deg);
    }
}

@media screen and (max-width:500px) {
    .hero-text h1 {
        font-size: 4rem;
        text-shadow: none;
    }
    .upSlider {
        width: 80px;
        height: 50px;
    }
    #Herosection h2 {
        width: 95%;
        font-size: 3em;
    }
    nav .logo img {
        width: 40px;
    }
    nav .logo {
        width: 100px;
        font-size: 1.2em;
    }
    .projectShowcase .projects {
        width: 90%;
        padding: 10px;
        border-radius: 50px;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .columnLeft,
    .columnRight {
        width: 100%;
    }
    .sidePills,
    .sidePills2 {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 2;
    }
    .sidePills.pill1 {
        top: -10px;
        left: 0;
    }
    .sidePills.pill2 {
        top: -25px;
        left: 20px;
    }
    .sidePills.pill3 {
        top: 30px;
        left: 10px;
    }
    .sidePills.pill4 {
        top: 20px;
        right: -20px;
    }
    .sidePills.pill5 {
        top: 60px;
        right: -50px;
    }
    .sidePills.pill6 {
        top: 50px;
        right: -70px;
    }
    .fadeText {
        font-size: 2em;
    }
    .Process.allp .processCard {
        width: calc((100% / 2) - 20px);
        padding: 1em;
    }
    .Process.allp .bottomContent p {
        font-size: .6em;
    }
    .processCard {
        width: 100%;
        height: auto;
    }
    .processCard:nth-child(even) {
        transform: translateY(0);
    }
    .rightLi {
        width: 100%;
        border-bottom: 2px solid black;
        /* display: none; */
    }
    .rightRe {
        margin-top: 0px;
    }
    .review p {
        font-size: 1em;
    }
    .Author h4 {
        font-size: 1em;
    }
    .Authimg {
        width: 50px;
        height: 50px;
    }
    h2 {
        font-size: 2em;
    }
    .project {
        position: relative;
        width: calc((100% / 1) - 0px);
        cursor: none;
    }
    .project .name {
        font-size: .9em;
        width: 40%;
        display: inline-block;
    }
    .project .tag {
        font-size: .8em;
    }
    .accordion-button {
        font-size: 16px;
        display: inline-block;
        padding: 0px 0;
        flex-wrap: wrap;
        align-items: center;
        /* width: 80%; */
        justify-content: space-between;
    }
    .accordion-button .reveal2 {
        width: 80%;
        flex-wrap: wrap;
    }
    .accordion-item {
        padding: 10px 0;
    }
    .sidePills2.pill1 {
        top: -10px;
        left: 0;
    }
    .sidePills2.pill2 {
        top: -25px;
        left: 20px;
    }
    .sidePills2.pill3 {
        top: 30px;
        left: 10px;
    }
    .sidePills2.pill4 {
        top: 20px;
        right: -20px;
    }
    .sidePills2.pill5 {
        top: 40px;
        right: -25px;
    }
    .sidePills2.pill6 {
        top: 50px;
        right: -70px;
    }
    .mainHead {
        font-size: 3em;
    }
    .fs24 {
        font-size: 15px;
    }
    .position-xl-absolute {
        position: relative;
    }
    .upSlider.side img {
        width: 30px;
        height: 30px;
    }
    .upSlider img {
        width: 50px;
        height: 50px;
    }
    /* .founderSection {
        height: 400vh;
    } */
    .bottom-20 {
        bottom: auto;
    }
    #AboutHerosection p {
        width: 90%;
        text-align: center;
        margin: auto;
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
    }
    #AboutHerosection {
        padding: 100px 0 0 0;
        min-height: auto;
    }
    .bottomContent {
        position: relative;
        bottom: auto;
        padding-right: 0 !important;
    }
    /* .bg-container {
        display: none;
    } */
    .reveal2 span {
        display: inline-block;
        opacity: 0;
        filter: blur(0px);
        transform: translateY(10px);
    }
    .bimgs {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    .service h1 {
        font-size: 2em;
    }
    .blogWrapper .fadeText {
        font-size: 1.2em;
    }
    .serviceWrapper .fadeText {
        font-size: 1.2em;
    }
    body#SingleService .processCard {
        height: auto;
        width: 100% !important;
    }
    .hero-icon {
        width: 200px;
    }
    .mybogs .project {
        width: 100%;
    }
    .mybogs .blogContent {
        display: flex;
        flex-direction: column;
    }
    .mybogs .blogContent .name {
        width: 100%;
    }
}