@import url('https://fonts.googleapis.com/css2?family=Jomolhari&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');

@font-face {
    font-family: 'the-shape-of-things';
    src: url('fonts/the-shape-of-things.otf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Webkit */
::-webkit-input-placeholder {
    color: #999;
}

/* Firefox 4-18 */
:-moz-placeholder {
    color: #999;
}

/* Firefox 19+ */
::-moz-placeholder {
    color: #444;
}

/* IE10+ */
*:-ms-input-placeholder {
    color: #a9a5ae !important;
}

/*html {width: 100%;}*/
.clr {
    clear: both;
}

body {
    width: 100%;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.5px;
}

iframe {
    border-radius: 22px;
}

a {
    text-decoration: none !important;
    color: #000000 !important;
}

.fade {
    opacity: 0;
    transition: opacity 0.5s;
}

.fade.show {
    opacity: 1;
    text-align: justify;
}

img {
    max-width: 100%;
    height: auto;
}

h5,
h6,
h1,
h2,
h3,
h4 {
    font-weight: normal;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
}

dl,
dt,
dd,
ol,
ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;

}

a:active,
select,
select:focus,
a:focus,
a:hover,
input:focus,
button:focus,
textarea:focus {
    outline: none !important;
    text-decoration: none;
    color: #fff;
}

a,
button {
    text-decoration: none;
    cursor: pointer;
}

option {
    padding: 10px;
}

textarea {
    resize: none;
}

.inter {
    font-family: "Inter", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 400 !important;
}

.jomolhari {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-style: normal;
}

.Georgia {
    font-family: 'Georgia', serif;
    font-weight: bold;
}

.itim-regular {
    font-family: "Itim", serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.CrafTextSec h2 {
    font-size: 126px;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-end {
    display: flex;
    justify-content: end;
    align-items: center;
}

.flex-start {
    display: flex;
    justify-content: start;
    align-items: center;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-space-evenly {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.NavBarLineB {
    max-width: 100%;
    border-top: #0B040C 1px solid;
    position: relative;
    margin: 6px 0;
}

.nav-link.active {
    position: relative;
    font-weight: bold;
    color: #0B040C;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-image: url('https://storage.googleapis.com/mkv_imagesbackend/links/mmv-traiangle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-nav-container .nav-link.active::before {
    content: none !important;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 60px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    touch-action: pan-y pinch-zoom;
    transform-style: preserve-3d;
}

.carousel-slide {
    min-width: calc(100% / 3);
    text-align: center;
    position: relative;
    aspect-ratio: 1.5;
    opacity: 0.5;
    overflow: hidden;
    display: flex;
    border-radius: 50px;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    flex-direction: column;
    align-items: center;
    user-select: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateZ(0);
}

.carousel-slide.previous {
    opacity: 0.7;
    transform: scale(0.7) translateX(20%) translateZ(-100px);
}

.carousel-slide.next {
    opacity: 0.7;
    transform: scale(0.7) translateX(-20%) translateZ(-100px);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.carousel-label {
    position: absolute;
    width: 70%;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    padding: 5px 0;
    font-size: 1.2em;
    border-radius: 30px;
    max-width: 577.42px;
    height: 76.61px;
    transition: transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.top-label {
    top: -40px;
    display: flex;
    flex-direction: column-reverse;
    font-weight: bold;
}

.bottom-label {
    bottom: -40px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 120px;
    color: black !important;
    border: none;
    background: none;
    cursor: pointer;
    transform: translateY(-50%);
    font-size: 80px;
    opacity: 0.7;
    z-index: 1;
    transition: opacity 0.3s;
}

.carousel-button:hover {
    opacity: 1;
}

.carousel-button.prev {
    left: 25%;
}

.carousel-button.next {
    right: 25%;
}

.header-title {
    text-align: center;
}

.website-mobile-logo {
    display: none;
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-pills {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-pills a {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    margin: 0 48px;
    text-decoration: none;
}

.line_menu {
    position: absolute;
    top: 5px;
    color: black !important;
}

.wave-group {
    position: relative;
}

.wave-group .input {
    font-size: 16px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 250px;
    color: black;
    border: none;
    border-bottom: 1px solid black;
    background: transparent;
}

.wave-group .input:focus {
    outline: none;
}

.wave-group .label {
    color: black;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    bottom: 0px;
    display: flex;
}

.wave-group .label-char {
    transition: 0.2s ease all;
    transition-delay: calc(var(--index) * .05s);
}

.wave-group .input:focus~label .label-char,
.wave-group .input:valid~label .label-char {
    transform: translateY(-35px);
    font-size: 14px;
    color: black;
}

.wave-group .bar {
    position: relative;
    display: block;
    width: 250px;
}

.wave-group .bar:before,
.wave-group .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: black;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.wave-group .bar:before {
    left: 50%;
}

.wave-group .bar:after {
    right: 50%;
}

.wave-group .input:focus~.bar:before,
.wave-group .input:focus~.bar:after {
    width: 50%;
}

.HeaderTitle {
    max-width: 100%;
}

.HeaderTitle h1 {
    font-size: 106px;
    margin: 0 9px;
}

.ProjectTitle {
    margin: 28px 0 0 22px;
}

.ProjectTitle h2 {
    margin: 0 9px;
}

.ProjectTitle h2:last-child {
    margin: 0 9px;
    font-size: 48px;
}

.ProjectTitle h1 {
    font-size: 100px;
    margin: 0 9px;
}

.HeaderTitleSecond {
    display: flex;
    justify-content: space-between;
}

.HeaderTitleSecond h2 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 58px;
    position: relative;
    overflow: hidden;
    height: 1.2em;
}

#animatedText {
    display: inline-block;
    transition: transform 0.5s ease-in-out;
    transform: translateY(100%);
    white-space: nowrap;
}

.GetQBtn {
    height: 44px;
    padding: 10px 20px;
    background-color: #fff;
    color: black !important;
    border: 1px solid #000;
    font-size: 16px;
    border-radius: 28px;
}

.GetQBtnSec {
    height: 44px;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 16px;
    border-radius: 28px;
    margin: 20px 0;
}

.GetQBtnSerPro {
    height: 44px;
    padding: 10px 18px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    border-radius: 28px;
    border: none !important;
}

.GetQBtn:hover {
    background-color: #000;
    color: #fff !important;
}

.GetQBtnSec:hover {
    background-color: #000;
    color: #fff !important;
}

.GetQBtnSerPro:hover {
    background-color: #fff;
    color: #000 !important;
    border: #000 1px solid !important;
}

.logo-container {
    --logo-width: 220px;
    --logo-height: 120px;
    --gap: 20px;

    display: flex;
    flex-direction: column;
    margin: auto;
    overflow: hidden;
    max-width: 100vw;
}

.logo-scroll {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.logo-scroll__wrapper {
    display: flex;
    gap: var(--gap);
    animation: none;
}

.logo-item {
    flex-shrink: 0;
    width: var(--logo-width);
    height: var(--logo-height);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-item:hover {
    transform: scale(1.05);
}

.CrafText h2 {
    margin: 18px 0 0 0;
    font-size: 126px;
}

.LogoSectHeaad h2 {
    margin: 18px 0 0 0;
    font-size: 44px;
}

.MmvStory-Container {
    max-width: 100%;
    height: auto;
    padding: 0 30px;
}

.MmvStory-Container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 22px;
}

.MMvStory-text {
    font-size: 100px;
    margin-top: 24px;
    text-align: center;
}

.MMvStory-text h3 {
    font-size: 22px;
}

.StoryText h2 {
    font-size: 134px;
}

.OurTextSec h2 {
    margin: 18px 0 0 0;
    font-size: 52px;
}

.TestiText h2 {
    margin: 18px 0 0 0;
    font-size: 104px;
    background-color: white;
    padding: 20px;
    transform: translate(-1px, -50px);
    width: fit-content;
    border-radius: 0 25px;
    height: 156px;
}

.AbotUsText,
.StoryText {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


.StoryTextSec h2 {
    font-size: 52px;
}

.StoryText h2 {
    margin: 0 0 18px 0;
    font-size: 52px;
}

.AbotUsText h2 {
    margin: 0 0 18px 0;
    font-size: 52px;
    transform: translate(20px, -58px);
}

.StoryTellingCon {
    padding: 6px 12px 0 12px;
}

.StoryTellingChild img {
    max-width: 100%;
    height: auto;
    border-radius: 60px;
}

.StoryTellingSecon {
    padding: 45px 80px;
}

.StoryTellingSecon h3 {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 42px;
    margin: 22px 0;
}

.StoryTellingSecon p {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
}

.ExploMBtn {
    height: 44px;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 16px;
    border-radius: 28px;
}

.ExploreMore {
    display: flex;
    justify-content: flex-end;
}

.PracticalProj {
    max-width: 100%;
    background-color: #000;
    padding: 56px 0;
    margin: 18px 0 0 0;
}

.PracticalTitle {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    flex-wrap: wrap;
}

.PracticalTitle h2 {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 126px;
    margin: 0 0 0 48px;
}

.PracticalChilds {
    margin: 52px 0 0 0;
}

.ServicesChilds {
    margin: 52px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.PracticalTitle h3 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 50px;
    margin: 0 18px;
}

.PracticalProjects h2 {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 42px;
    margin: 0 64px;
}

.ServicesProjects {
    text-align: left;
    margin-bottom: 20px;
}

.ServicesProjects h2 {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 42px;
    margin: 0 64px;
}


.ServicCon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ServicConChilds {
    display: flex;
    justify-content: center;
    text-align: left;
    width: 100%;
    gap: 25px;
    padding: 0 10% !important;
}

.PracticalProjects i {
    font-style: normal;
    color: #fff;
    font-size: 24px;
    margin: 0 18px;
}

.Whiline {
    width: 70%;
    height: 3px;
    background-color: #ffffff;
    margin: 8px 64px;
}

.Blaline {
    width: 100%;
    max-width: 100%;
    height: 2px;
    background-color: black;
    margin: 20px 0;
}

.PracVidsF {
    color: #fff;
    padding: 78px 112px;
}

.PracVidsF h4 {
    font-size: 20px;
}

.PracVidsF h3 {
    font-size: 30px;
}

.GetTBtn {
    height: 44px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 16px;
    border-radius: 28px;
}

.GetTBtn .btn-link {
    text-decoration: none;
    color: #fff !important;
    margin-right: 10px;
}

.GetTBtn i.play-icon {
    font-size: 20px;
    color: #fff;
}

.VidiCon {
    padding: 8px 5px 5px 8px;
    background-color: #fff;
    width: 36px;
    border-radius: 50%;
    text-align: center;
    margin: 0 0 0 12px;
}

.VidiCon i {
    color: #000000;
    font-size: 22px;
}

.GetTBtnVids {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.PracVidsList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 48px 0 44px 0;
}

.PracVidsList li {
    /*list-style-type: disc;
    margin: 0 24px;*/
    font-size: 22px;
}

.ViAllProjBtn {
    height: 44px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    border-radius: 6px;
    border: none;
}

.ViAllProjBtn:hover {
    background-color: #000000;
    color: #ffffff !important;
    border: solid 1px #fff;
}

.PracVidsS img {
    max-width: 70%;
    height: auto;
    margin: 24px auto;
    display: block;
}

.VidiCon {
    cursor: pointer;
}

.PracticalProjects {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
}

.content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.content.expanded {
    padding: 22px 0;
    max-height: fit-content;
    opacity: 1;
}

.toggle-icon {
    transition: transform 0.4s ease;
}

.toggle-icon.rotate {
    transform: rotate(90deg);
}

.BDots {
    max-width: 10%;
    padding: 20px;
}

.TestiMonials {
    margin: 0 0 64px 0;
}

.BDots i {
    font-size: 20px;
    margin: 5px 0;
    color: #ccc;
}

.BDots i.active-dot {
    background-color: #000;
    border-radius: 60%;
    border: none;
}

.Reviews {
    max-width: 50%;
    margin: 12px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 274px;
}

.review-container {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

.review {
    min-height: 308px;
}

.Reviews p {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    margin: 12px 0;
}

.Reviews h4 {
    font-family: "Jomolhari", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    margin: 16px 0;
}

.NewsUpdates {
    border: 2px dashed #000000;
    border-radius: 40px;
    padding: 40px 22px;
    aspect-ratio: 1.2923;
}

.NewsUpdatesTexts h4 {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
}

.NewsUpdatesTexts p {
    margin-bottom: 25%;
}

.NewsUpdatesTexts p:first-child {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
}

.NewsUpdatesTexts p:last-child {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
}

.NewsUpdatesTexts button {
    height: 44px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding: 10px 38px;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 16px;
}

.NewsUpdates img {
    width: 1000px;
    object-fit: cover;
    border-radius: 30px;
    aspect-ratio: 0.7055;
}

.an_img {
    aspect-ratio: 0.6592;
}

.NewsUpdatesTexts {
    padding: 0 24px 0 24px;
    text-align: left;
}

.NewsUpdatesTexts * {
    margin-bottom: 27px;
}

.NewsTitles {
    margin: 64px 0 0 0;
    text-align: right;
}

.NewsTitles h4 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 58px;
}

.NewsTitles h3 {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-size: 112px;
}

.NewsTitlesMob {
    margin: 64px 0 0 0;
    text-align: right;
    display: none;
}

.NewsTitlesMob h4 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 58px;
}

.NewsTitlesMob h3 {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-size: 145px;
}

.lets-talk-section {
    /* display: flex;
    align-items: end;
    justify-content: space-between; */
    padding: 20px 30px;
    position: relative;
    margin-top: 50px;
}

.text-container {
    text-align: left;
    max-width: 50%;
}

.text-container h1 {
    font-size: 162px;
    font-family: 'Georgia', serif;
    font-weight: bold;
    line-height: 0.8;
    letter-spacing: -2px;
}

.image-container {
    position: relative;
    max-width: 75%;
}

.image-container img {
    width: 100%;
    border-radius: 55px;
    object-fit: cover;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.get-in-touch-btn {
    position: absolute;
    /* top: 148px; */
    left: 34%;
    bottom: 10px;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    border: #000 1px solid;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.get-in-touch-btn-sec {
    position: absolute;
    top: 148px;
    left: -3px;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 2px 9px;
    border-radius: 50px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.get-in-touch-btn span {
    margin-right: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.get-in-touch-btn-sec i {
    font-size: 28px;
    color: #000;
}

.talk-section {
    width: 100%;
    text-align: center;
}

.talk-section h2 {
    font-family: 'Georgia', serif;
    font-size: 126px;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.talk-section h1 {
    font-family: 'Georgia', serif;
    font-size: 108px;
    line-height: 0.9;
    letter-spacing: -2px;
}

.talk-section h1 {
    /* display: none; */
}

.footer {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 20px 20%;
}

.FooterMain {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-logo-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo-second {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

.FooterConMob {
    display: flex;
    gap: 70px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-logo p {
    padding: 0 258px 0 0;
}

.footer-links {}

.footer-social-media * {
    margin-bottom: 20px;
}

.footer-links ul,
.footer-social-media ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.footer-links ul li,
.footer-social-media ul li {
    margin-right: 20px;
}

.footer-links a,
.footer-social-media a {
    font-size: 14px;
    color: #fff !important;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social-media a:hover {
    color: #f4a261;
}

.footer-bottom {
    font-size: 14px;
    color: #999;
}

.FooterBottom * {
    margin-right: 16px;
    margin-left: 0;
}

.FooterBottom a {
    color: #999 !important;
    transition: color 0.3s ease !important;
}

.footer-logo-main p:last-child {
    color: #999 !important;
    transition: color 0.3s ease !important;
    margin: 0 !important;
}

.footer-bottom p {
    margin: 0;
}


.SupportImg {
    margin: 28px 0;
}

.SupportContacts {
    margin: 48px 0;
    padding: 0 15px;
}

.SupportEmail {
    text-align: left;
}

.SupportEmail h4 {
    font-size: 32px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.SupportEmail p {
    font-size: 20px;
    font-family: "Inter", sans-serif;
    margin-left: 34px;
}

.LetsTalkSec h3 {
    font-size: 4rem;
    font-family: 'Georgia', serif;
    font-weight: 400;
    text-align: center;
}

.LetsTalkSec h5 {
    font-size: 1.75rem;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    text-align: center;
}

.LetsTalkDiv {
    display: flex;
    justify-content: center;
    width: 670px;
    margin: 28px auto;
    border: dashed 4px #000;
    border-radius: 48px;
    align-items: center;
    padding: 12px;
}

.LetsTalkForm {
    display: flex;
    align-items: flex-end;
    /*align-items: flex-end;
    flex-direction: column;*/
}

.LetsTalkForm img {
    margin: 8px 10px;
}

.lableTextSt {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 10px 0;
}

.LetsTalkForm h5 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    white-space: nowrap;
}

.LetsTalkForm form {
    width: 100%;
}

.LetsTalkForm i {
    font-size: 44px;
}

.styled-input {
    max-width: 100%;
    width: 350px;
    border: 1px solid black;
    background: none;
    border-radius: 30px;
    padding: 10px 15px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    color: #000 !important;
}

.subscribe-feild {
    max-width: 100%;
    width: 350px;
    border: 1px solid #fff;
    background: none;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    color: #fff !important;
}

.SubsBtn {
    border: none;
    background: none;
    margin-left: 10px;
}

.SubsBtn i {
    font-size: 2.75rem;
    color: #fff;
}

.styled-input:focus {
    border-color: #000000;
}

.SubBtn {
    border: none;
    background: none;
    margin-left: 10px;
}

.SubBtn i {
    font-size: 2.75rem;
}

.form-group-support {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 350px;
    padding: 0 12px;
}

.service-banner {
    margin: 20px auto;
    position: relative;
    border-radius: 22px;
    /*overflow: hidden;*/
}

.service-Whitekcircle {
    position: absolute;
    bottom: -20px;
    left: 97%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-Blackcircle {
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-Blackcircle i {
    color: #fff;
    font-size: 24px;
}

.service-WhiteBox {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 500px;
    min-height: 64px;
    width: 581px;
    height: 66px;
    background-color: #fff;
    z-index: 1;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    transform: translate(-8px, -1px);
}

.service-WhiteBox p {
    position: absolute;
    left: 26px;
    top: 10px;
    font-size: 26px;
    font-family: "Jomolhari", serif;
}

.banner {
    max-width: 100%;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.WhiteBox {
    position: absolute;
    top: -12px;
    left: -7px;
    max-width: 582px;
    min-height: 64px;
    width: 581px;
    height: 66px;
    background-color: #fff;
    z-index: 3;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

.Whitekcircle {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.Blackcircle {
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Blackcircle i {
    color: #fff;
    font-size: 24px;
}

.ProjectMainVid {
    max-width: 100%;
    height: 750px;
    border-radius: 22px;
}


.AboutTheTit h3 {
    font-size: 48px;
    text-align: center;
}

.AboutTheDes {
    font-size: 24px;
    line-height: 1.5;
    padding: 12px auto;
    text-align: justify;
}

.AboutTheProjectDesscip p {
    line-height: 1.5 !important;
}

.AboutTheProject {
    margin: 74px 0 0 0;
}

.ProjectImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 22px;
    padding: 0 0 0 4px;
}

.ProjectImgBanner img {
    margin: 22px 0 0 0;
    object-fit: cover;
    border-radius: 22px;
}

.ProjectImgMain {
    margin: 74px 0 0 0;
}

.MasterText h2 {
    font-size: 52px;
}

.TeamText h2 {
    font-size: 126px;
}

.PojectFirstImg img {
    width: 100%;
    aspect-ratio: 1.5384;
    object-fit: cover;
    border-top-right-radius: 55px;
    border-top-left-radius: 55px;
    border-bottom-right-radius: 55px;
    border-bottom-left-radius: 293px;
}

.PojectForthImg img {
    width: 100%;
    aspect-ratio: 1.5384;
    object-fit: cover;
    border-top-right-radius: 292px;
    border-top-left-radius: 55px;
    border-bottom-right-radius: 55px;
    border-bottom-left-radius: 55px;
}

.PojectFirstImg iframe {
    width: 100%;
    aspect-ratio: 1.5384;
    object-fit: cover;
    border-top-right-radius: 55px;
    border-top-left-radius: 55px;
    border-bottom-right-radius: 55px;
    border-bottom-left-radius: 293px;
}

.PojectSecondImg iframe {
    width: 100%;
    aspect-ratio: 1.5743;
    object-fit: cover;
    border-top-right-radius: 292px;
    border-top-left-radius: 55px;
    border-bottom-right-radius: 292px;
    border-bottom-left-radius: 55px;
}

.PojectThirdImg iframe {
    width: 100%;
    aspect-ratio: 1.5743;
    object-fit: cover;
    border-top-right-radius: 55px;
    border-top-left-radius: 292px;
    border-bottom-right-radius: 55px;
    border-bottom-left-radius: 292px;
}

.PojectForthImg iframe {
    width: 100%;
    aspect-ratio: 1.5384;
    object-fit: cover;
    border-top-right-radius: 292px;
    border-top-left-radius: 55px;
    border-bottom-right-radius: 55px;
    border-bottom-left-radius: 55px;
}

.ProjectMobileContainer {
    display: none !important;
}

.PojectSingle {
    padding: 0 75px;
    margin: 8px 0;
}

.PojectSingleTextCon {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-direction: column;
    padding: 24px 28px;
    text-align: start;
}

.PojectSingleHead h4 {
    font-size: 32px;
    margin: 0;
}

.PojectSingleHead h6 {
    font-size: 20px;
    margin: 0;
}

.PojectSingleBtns {
    display: flex;
    align-items: start;
    justify-content: start;
}

.PojectSingleBtns i {
    font-size: 42px;
}

.PlayVidBtn {
    position: relative;
    height: 44px;
    padding: 10px 0 10px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 16px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
    transition: all 0.3s ease-in-out;
}

.PlayVidBtn:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff;
}

.PlayVidBtn i {
    font-size: 43px;
    margin-left: 12px;
    position: relative;
    right: -5px;
}

.PojectSingleList {
    padding: 16px 0 0 0;
}

.PojectSingleList li {
    font-family: 'Jomolhari';
    font-size: 22px;
}

.PojectSingleList p {
    font-family: 'Jomolhari';
    font-size: 22px;
}

.AboutusQuote p {
    padding: 12px 112px;
    font-size: 52px;
    line-height: 1.5;
    text-align: justify;
    margin: 0 0 24px 0;
    font-family: "Italiana", sans-serif;
}

.RedText {
    color: #FF1D1D;
    font-family: "Italiana", sans-serif;
}

.MissionImg img {
    width: 567px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 42px;
}

.MissioContainerMobile {
    display: none;
}

.OurVisionEle,
.OurMissionEle {
    width: 100%;
    height: auto;
    padding: 54px 24px;
    text-align: justify;
    border: dashed 5px #000;
    border-radius: 42px;
}

.OurMissionEle h2,
.OurVisionEle h2 {
    font-size: 60px;
}

.OurMissionEle p,
.OurVisionEle p {
    font-size: 22px;
    line-height: 1.7 !important;
}

.OurVisionEle i,
.OurMissionEle i {
    font-size: 48px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 458px;
    perspective: 1000px;
    margin: 22px 0;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 42px;
}

.flip-card-front {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-back {
    background-color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ClientTestiMain {
    margin: 22px 0;
}

.ClientTesti {
    margin: 12px 0;
}

.ClientImg {
    width: 300px;
    height: 300px;
}

.ClientText {
    width: 760px;
    height: auto;
    border: 4px dashed #000;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 28px;
}

.ClientText p {
    font-size: 22px;
    text-align: justify;
}

.ClientTesti h3 {
    font-size: 32px;
    text-align: start;
}

.ClientImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
}

.ClientTextI img {
    width: 88px;
    height: 50px;
    object-fit: cover;
    margin: 8px auto;
    align-items: flex-start;
}

.ClientTestImage {
    max-width: 841px;
    height: auto;
    object-fit: cover;
}

.ClientTestImage img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
}

.ClientTestView {
    display: flex;
    margin: 24px 0;
}

.ClientTestVideo video {
    width: 741px;
    height: auto;
    object-fit: cover;
    margin-right: 16px;
}

.ClientTestText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 44px;
}

.ClientTestText p {
    font-size: 22px;
    text-align: justify;
}

.ProjTeCCEV h3 {
    font-size: 100px;
    margin-top: 24px;
    font-family: "Italiana", sans-serif;
}

.video-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.video-slider-main {
    display: flex;
    width: 100%;
}

.video-slider {
    display: flex;
    flex-wrap: nowrap;
    animation: scrollSlider 35s linear infinite;
}

.video-slide {
    flex: 0 0 auto;
    width: 386px;
}

.video-slide video {
    width: 100%;
    height: auto;
    border: 10px solid #000;
}

@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.UNIflex {
    display: flex;
    justify-content: center;
}

.BoxF {
    width: 58px;
    height: 44px;
    background-color: #ffffff;
    border: 10px solid #000000;
}

.MemberImg {
    width: 292px;
    height: 292px;
    object-fit: cover;

}

.MemberImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
}

.OurTeamMain p {
    font-size: 24px;
    margin: 0 !important;
}

.OurTeamMain p:last-child {
    font-size: 24px;
    margin: 0 !important;
    color: #8F949E;
}

.text-animation {
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8%;
    flex-direction: column;
}


.text-animation .text-wrapper {
    display: flex;
    justify-content: flex-start;
    background: #000000;
    width: 200%;
    position: relative;
    rotate: 5.6deg;
    left: -15%;
}

.text-animation h1 {
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: #fff;
    text-stroke-color: #fff;
    white-space: nowrap;
    color: aliceblue;
    padding: 0 6rem;
    letter-spacing: 1px;
    animation: move-rtl 6000ms linear infinite;
    font-size: 60px;
}

.text-animation h2 {
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: #fff;
    text-stroke-color: #fff;
    white-space: nowrap;
    color: aliceblue;
    padding: 0 6rem;
    letter-spacing: 1px;
    animation: move-ltr 6000ms linear infinite;
    font-size: 60px;
}

@keyframes move-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes move-ltr {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.gallery {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery col {
    padding: 2%;
}

.gallery .jomolhari {
    font-size: 98px;
}

.gallery .inter {
    font-size: 44px;
    padding: 0 5%;
}

.gallery .g-content .inter {
    font-size: 22px;
    padding: 0 5%;
}

.gallery-container {
    display: flex;
    height: 640px;
    position: relative;
    touch-action: pan-x;
    padding: 5%;
    user-select: none;
    transition: transform 0.3s ease-out;
    justify-content: center;
    align-items: center;
}

.gallery-item {
    position: absolute;
    height: 75%;
    aspect-ratio: 0.835;
    border-radius: 20px;
    background-position: center;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.5s ease-in-out;
    cursor: grab;
}

.gallery-item img {
    object-fit: cover;
}

.gallery-item.active {
    transform: scale(1.2) translateX(0);
    z-index: 2;
    object-fit: cover;
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item.prev {
    transform: scale(0.8) translateX(-80%);
    z-index: 1;
    object-fit: cover;
    opacity: 0.6;
}

.gallery-item.next {
    transform: scale(0.8) translateX(80%);
    z-index: 1;
    object-fit: cover;
    opacity: 0.6;
}

.gallery-item.hidden {
    opacity: 0;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
}

.gallery-container.dragging {
    transition: none;
    cursor: grabbing;
}

.gallery .button {
    border-radius: 71px !important;
    border-radius: 50px;
    border: 1px solid #000000;
    padding: 4% 9%;
    margin: 0;
    font-size: 16px;
}

.gallery .g-content {
    margin: 15% 12% 2% 2%;
    display: flex;
    justify-content: space-between;
}

.MissionCardContainer {
    perspective: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.MissionCard {
    width: 100%;
    max-width: 600px;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    /* Smooth animation */
    transform-style: preserve-3d;
    position: relative;
}

.MissionFront,
.MissionBack {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    /* Optional: Rounded edges */
    padding: 20px;
    /* Add some spacing */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* Soft shadow for 3D effect */
}

.MissionFront {
    /* Style the front face (OUR MISSION) */
    background-color: #f9f9f9;
}

.MissionBack {
    /* Style the back face (OUR VISION) */
    background-color: #eaeaea;
    transform: rotateY(180deg);
}

.MissionCard.flip .MissionFront {
    transform: rotateY(180deg);
}

.MissionCard.flip .MissionBack {
    transform: rotateY(0deg);
}

.FlipBtn {
    margin-top: 10px;
    font-size: 14px;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.FlipBtn:hover {
    background-color: #0056b3;
}

.FaqSectionTitle h2 {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 126px;
    margin: 0;
}

.FaqSectionTitle span {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 52px;
    margin: 0 12px;
}

.FaqSectionMain {
    margin: 22px 0;
    padding: 0 16px;
    overflow: hidden;
}

.FaqBox {
    width: 90%;
    border: 1px solid #000000;
    border-radius: 18px;
    cursor: pointer;
    margin: 15px 12px;
    padding: 20px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.FaqBox i {
    font-size: 1.5rem;
    color: #000000;
}

.FaqBox:hover {
    background-color: #f9f9f9;
}

.answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: large;
    transition: height 0.3s ease, opacity 0.3s ease;
    margin: 0;
}

.answer.show {
    height: auto;
    opacity: 1;
    margin-top: 8px;
}

.Question {
    flex: 1;
}

.Question h3 {
    margin: 0;
    font-size: 24px;
}

.Question .answer {
    margin-top: 8px;
    font-size: 20px;
}

.Expand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Expand i {
    font-size: 1.5rem;
    color: #000000;
    transition: opacity 0.3s;
}

.Expand.active i.fa-chevron-right {
    opacity: 0;
}

.Expand.active i.fa-chevron-down {
    display: inline;
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none;
    border: none;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #000;
}

.carousel-control-prev-icon i,
.carousel-control-next-icon i {
    font-size: 1.5rem;
    color: #000;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    color: #000;
}

.swiper-container {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
    /* Match your FAQ section style */
}

.swiper-pagination-bullet {
    background: #000;
    /* Match your FAQ section style */
}

.custom-service-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: hidden;
}

.custom-service-wrapper .inter {
    font-size: 30px;
}

.custom-service-wrapper .get-quote {
    border-radius: 71px !important;
    border: 3px solid #000000;
    padding: 4% 9%;
    margin: 0;
    font-size: 16px;
    transform: translate(100%);
}

.FaqCustomPagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.FaqCustomPagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 5px;
    background-color: #000;
    opacity: 0.6;
    border-radius: 50%;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.FaqCustomPagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
    background-color: #000000;
}

.service-provid {
    font-size: 135px;
    font-weight: 400;
    margin-bottom: 20px;
}

.custom-service-carousel {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-slide {
    position: absolute;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    width: 400px;
    height: auto;
    padding: 30px;
    visibility: hidden;
}

.service-slide[data-position="left"] {
    left: 0px;
    top: 0;
    transform: translate(0%, 0%);
    aspect-ratio: 1.075;
    opacity: 1;
    visibility: visible;
}

.service-slide[data-position="left"] img,
.service-slide[data-position="center"] img {
    display: none;
}

.service-slide[data-position="right"] img {
    display: block;
    border-radius: 40px;
}

.service-slide[data-position="right"] .service-content {
    border: none;
    padding: 0;
}

.service-slide[data-position="center"] {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 0.9524;
    background: white;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.service-slide[data-position="right"] {
    right: 245px;
    top: -40%;
    aspect-ratio: 0.7324;
    transform: translate(50%, 50%);
    opacity: 1;
    visibility: visible;
}

.service-content {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: white;
    border: 5px dashed #000;
    border-radius: 40px;
    padding: 30px;
}

.service-content .jomolhari {
    font-weight: 400;
    font-size: 125px;
}

.play-btn button {
    font-size: 16px;
    font-weight: 400;
}

.service-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-title {
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.play-btn button {
    align-items: center;
    padding: 10px 20px;
    background: none;
    border: 2px solid #000;
    color: #000;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
}

.play-btn .icon-copy {
    font-size: 50px;
    cursor: pointer;
}

.play-btn button:hover {
    background: #000;
    color: white;
}

.see-all-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    color: black;
    background: none;
    border: 2px solid #000;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    background: #000;
    color: white;
}

.service-slide[data-position="right"] .service-title,
.service-slide[data-position="right"] .service-number,
.service-slide[data-position="right"] .play-btn {
    display: none;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination {
    list-style-type: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D9D9D9 !important;
    color: black !important;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-item.active {
    background-color: black !important;
    color: white !important;
    pointer-events: none;
}

.page-item:hover:not(.active) {
    background-color: black;
    color: white;
}

.page-item.active .page-link {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #fff !important;
}

.page-link {
    background-color: transparent !important;
    border: none !important;
}

.page-link:focus {
    outline: none !important;
}

.vfx_motion_grid {
    margin: 38px 0;
}

.vfx_motion_grid .card {
    justify-content: center;
}

.vfx_motion_grid .getquote .col-8 {
    width: auto;
    gap: 25px;
    transform: translate(10%, 0px);
}

.vfx_motion_grid .getquote .inter {
    font-size: 48px;
    margin-right: 38%;
    text-align: start;
    line-height: 1;
}

.vfx_motion_grid .service-btn .top-line {
    top: -15px;
    left: 10%;
}

.vfx_motion_grid .service-btn .arrow {
    font-size: 18px;
    margin-left: auto;
}

.vfx_motion_grid .arrow {
    background-color: black;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.vfx_motion_grid .service-btn .bottom-line {
    bottom: -15px;
    right: 25%;
}

.vfx_motion_grid .service-btn .line {
    position: absolute;
    background-color: black;
    height: 6px;
    border-radius: 22px;
    width: 63px;
}

.vfx_motion_grid .service-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    font-size: 24px;
    border-radius: 30px;
    margin: 10px;
    cursor: pointer;
    justify-content: space-between;
    text-align: center;
}

.vfx_motion_grid .havelook {
    display: flex;
    gap: 45px;
    flex-direction: column;
    align-items: flex-end;
}

.vfx_motion_grid .container :last-child {
    overflow: visible !important;
}

.vfx_motion_grid .card .getquote {
    height: 100%;
    aspect-ratio: 1.5010;
    width: min-content;
    position: absolute;
    border-radius: 50px;
    border: 3px solid black;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding: 30px 0;
    right: 0;
}

.vfx_motion_grid .card .getquote .button {
    border-radius: 71px !important;
    border-radius: 50px;
    border: 3px solid #000000;
    padding: 4% 9%;
    margin: 0;
    font-size: 16px;
}

.vfx_motion_grid .container {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    flex-wrap: wrap;
    justify-content: end;
}

.vfx_motion_grid .container>.col-4 {
    aspect-ratio: 0.956;
    height: 100%;
    width: 412px;
    overflow: hidden;
    background-size: cover;
    background-position: 272px 8px;
    background-attachment: fixed;
    border-radius: 60px;
}

.vfx_motion_grid .col-8 {
    width: 60%;
}


.vfx_motion_grid .jomolhari {
    font-size: 102px;
    line-height: 0.9;
    padding: 30px 0;
}

.vfx_motion_grid .inter {
    font-size: 60px;
    margin-right: 15%;
    text-align: end;
}

.vfx_motion_grid .card {
    height: 100%;
    perspective: 1000px;
    border: none;
    border-radius: 60px;
}

.vfx_motion_grid .card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.999s;
}

.vfx_motion_grid .card-front,
.vfx_motion_grid .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.vfx_motion_grid .card-front {
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 60px;
    justify-content: center;
    font-size: 24px;
    transform: rotateY(0deg);
}

.vfx_motion_grid .card-back {
    background-color: #000000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 45px;
}

.vfx_motion_grid .card .jomolhari {
    font-size: 28px;
    line-height: 1;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.video-frame {
    width: 100%;
    max-width: 1330px;
    height: 824px;
    padding: 20px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    position: relative;
}

.frame-text {
    color: white;
    font-size: 18px;
    text-align: center;
    padding: 5px;
}

.top-text {
    margin-bottom: 10px;
}

.bottom-text {
    margin-top: 10px;
}

.video-frame video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    outline: none;
}

.privacy h6 {
    font-size: 100px;
}

.privacy_img {
    aspect-ratio: 5.7051;
    width: 100%;
    border-radius: 30px;
}

.privacy .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: black !important;
    background-color: transparent
}

.privacy .nav-pills .nav-link {
    color: #9A999E !important;
    font-size: 32px;
    text-align: start;
}

.privacy .tab-content {
    font-size: 24px;
    font-weight: 600;
    padding: 30px;
}

.top-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Default Styles */

.rounded-rectangle {
    width: 900px;
    height: 350px;
    background-image: url('https://cdn.pixabay.com/photo/2023/11/14/15/46/nikon-8388022_640.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 335px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 52px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 35px;
}

.options {
    display: flex;
    gap: 30px;
    font-size: 20px;
    margin-top: 20px;
}

.option {
    cursor: pointer;
    color: #333;
}

.option-editor {
    font-weight: bold;
}

.option-editor::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin-top: 4px;
    border-radius: 2px;
}

.partner-title {
    font-size: 22px;
    margin-top: 20px;
    color: #333;
    text-align: center;
}

.dashed-rectangle .step-label {
    margin-right: 10px;
    white-space: nowrap;
}

.long-line {
    border: none;
    border-top: 2px solid #333;
    margin: 10px 0;
    width: 10%;
    align-self: center;
}

.arrow {
    background-color: black;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.arrow:hover {
    background-color: #555;
}

.arrow::after {
    content: '➔';
    font-size: 20px;
}

.large-text {
    font-size: 52px;
    color: #333;
    margin: 30px 0;
    text-align: left;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.large-text-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    padding-right: 20px;
}

.dashed-rectangle {
    width: 600px;
    height: 170px;
    border: 2px dashed #333;
    border-radius: 20px;
    padding: 20px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

.video-container video {
    width: 1112px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.editor-text {
    font-size: 180px;
    color: #a9aea9;
    text-align: center;
    margin: 0;
    margin-left: 20px;
    font-weight: bold;
    line-height: 0.8;
}

.content-layout {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-top: 10px;
}

.left-paragraph {
    flex: 1;
    padding: 10px;
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
    margin-left: 70px;
    font-weight: bold;
}

.divider {
    width: 2px;
    background-color: #333;
    margin: 0 10px;
    height: 100px;
    margin-bottom: 5px;
}

.right-empty {
    flex: 1;
}

.video-container-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-left: 20px;
    margin-bottom: 20px;
}

.video-container-right video {
    width: 1112px;
    height: auto;
    border-radius: 10px;
    margin: 0;
}

.editor-text-right {
    font-size: 180px;
    color: #a9aea9;
    margin: 0;
    font-weight: bold;
    line-height: 0.8;
}

.content-layout {
    display: flex;
    align-items: center;
    width: 100%;
}

.left-empty {
    flex: 1;
}

.divider-center {
    width: 2px;
    background-color: #333;
    margin: 0 10px;
    height: 100px;
}

.right-paragraph {
    flex: 1;
    padding: 20px;
    font-size: 22px;
    color: #333;
    margin-right: 70px;
    font-weight: bold;
}







/* Blogs Pages CSS START */
.news h1 {
    font-size: 200px;
}

.news h6 {
    font-size: 100px;
    text-align: end;
    line-height: 0;
}

.newsheadimg {
    aspect-ratio: 1.1425;
    object-fit: cover;
    border-radius: 30px;
}

.smallthumnail {
    aspect-ratio: 0.7333;
    height: 60px;
    object-fit: cover;
}

.thumnail_container {
    border-left: 2px solid black;
}

.thumnail {
    padding: 15px 16px;
}

.thumnail img {
    aspect-ratio: 0.7348;
    height: 181px;
    width: auto;
    object-fit: cover;
}

.thumnail .col-9 {
    width: 71%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.thumnail h2 {
    font-size: 24px;
}

.thumnail a {
    color: white !important;
    background-color: black;
    padding: 12px 40px;
    font-size: 16px;
}

.cnews-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: white;
    padding: 8px 0;
}

.cnews-content {
    flex-grow: 1;
}

.newsimg {
    aspect-ratio: 1.7125;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}

.newsimg img {
    object-fit: cover;
    border-radius: 30px;
}

.newsimgbtn a {
    color: white !important;
    background-color: black;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
}

.news p {
    font-size: 16px;
}

.news b {
    font-size: 20px;
}

.newsmainimg {
    aspect-ratio: 1.8829;
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.news_content {
    font-size: 16px;
    font-weight: 600;
    text-align: justify;
}

.news_content span {
    font-family: 'Inter', sans-serif !important;
    font-weight: normal !important;
    line-height: 1.5;
    margin: 0;
}

.news_content p {
    font-family: 'Inter', sans-serif !important;
    font-weight: normal !important;
    line-height: 1.5;
}

.cnews img {
    aspect-ratio: 1.0821;
    border-radius: 14px;
    object-fit: cover;
}

.news .cnewstitle {
    font-size: 100px;
    border-bottom: 2px solid black;
    line-height: 1.5;
}

.news .Blogmaintitle {
    font-size: 52px;
    border-bottom: 1px solid #cbcbcb;
    line-height: 1.2;
}

.cnews h2 {
    font-size: 22px;
}

.cnews a {
    color: white !important;
    background-color: black;
    padding: 10px 40px;
    font-size: 16px;
}

/* Blogs Pages CSS END */








.kf h1 {
    font-size: 100px;
    margin-left: 10%;
}

.kf h2 {
    font-size: 52px;
}

.kf p {
    font-size: 22px;
}


.kf img {
    aspect-ratio: 1.5;
    border-radius: 20px;
    height: 200px;
    margin: 22px;
    object-fit: fill;
}

.kf .d-flex {
    padding: 18px 0px;
}

.havelook {
    display: flex;
    gap: 45px;
    flex-direction: column;
    align-items: flex-end;
}

.havelook-releatedser {
    display: flex;
    gap: 6px;
    justify-content: space-evenly;
    flex-direction: column;
}

.kf h5 {
    font-size: 48px;
}

.service-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 468px;
    height: auto;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 30px;
    /*margin: 10px auto;*/
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.service-btn .arrow {
    font-size: 1rem;
    margin-left: 20px;
}

.service-btn .line {
    position: absolute;
    background-color: black;
    height: 6px;
    border-radius: 22px;
    width: 63px;
    z-index: 2;
}

.service-btn .top-line {
    top: -10px;
    left: 10%;
}

.service-btn .bottom-line {
    bottom: -10px;
    right: 25%;
}

.service-btn span {
    color: white;
}

.options {
    display: flex;
    gap: 30px;
    font-size: 20px;
    margin-top: 20px;
}

.option {
    cursor: pointer;
    color: #333 !important;
    font-family: 'Inter';
}

.option-editor {
    font-weight: bold;
}

.nav-pills .nav-link.active::after,
.nav-pills .show>.nav-link::after,
.option-editor::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin-top: 4px;
    border-radius: 2px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #333 !important;
    font-weight: bold;
    background-color: #ffffff00;
}

.kf {
    margin-top: 20px;
}

.mobile-view {
    display: none;
}

#customDropdownButton {
    background-color: #ffffff;
    color: #000;
    border: #00000029 solid 1px;
    border-radius: 10px;
}

#customDropdownButton:focus {
    box-shadow: none !important;
}

#customDropdownMenu .dropdown-item.active {
    background-color: #e7e7e7;
    border: #00000029 solid 1px;
    border-radius: 10px;
}

#customDropdownMenu .dropdown-item:hover {
    background-color: #00000029;
    color: #000;
}

.carousel-indicators [data-bs-target] {
    background-color: #000000;
    border: 2px solid white;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators [data-bs-target].active {
    background-color: #000;
    border-color: #fff;
    width: 14px;
    height: 14px;
}

.carousel-inner img {
    border-radius: 22px;
}

.carousel-inner {
    border-radius: 22px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

textarea.styled-input {
    resize: none;
    height: 118px;
}

.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    font-size: 1rem;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid #ccc;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1000;
    display: none;
}

.toast-notification.show {
    display: block;
}

.second-element {
    padding-top: 52px;
}

.logo-animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    z-index: 9999;
    overflow: hidden;
}

.animated-text-big {
    display: flex;
    justify-content: center;
    gap: 0.2em;
    font-size: 7em;
    letter-spacing: 5px;
    flex-wrap: wrap;
    position: relative;
}

/* Shrink and move animation */
@keyframes shrinkAndMove {
    from {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    to {
        transform: scale(0.4) translateY(-115%);
        opacity: 0;
    }
}

.shrinked {
    animation: shrinkAndMove 1s forwards;
}

.navbar-logo {
    position: fixed;
    top: 10px;
    left: 20px;
    height: 50px;
    display: none;
    transition: all 0.6s ease-in-out;
    z-index: 1000;
}

/* Keyframes for text fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sliding "A" */
.sliding-a {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(90deg);
    font-size: 1em;
    animation: slideRight 2s cubic-bezier(0.29, 0.24, 0.58, 1.05) forwards;
    animation-delay: 0.1s;
    background: white;
    margin-left: 17px;
    font-family: 'the-shape-of-things';
}

@keyframes slideRight {
    from {
        left: 0;
    }

    to {
        left: 100%;
    }
}

.animated-text-big {
    font-family: 'the-shape-of-things';
    display: flex;
    justify-content: center;
    gap: 0.2em;
    font-size: 9em;
    font-variant: petite-caps;
    letter-spacing: 5px;
    margin-bottom: 20px;
    position: relative;
    flex-wrap: wrap;
}

.tm-symbol {
    font-size: 0.3em;
    position: absolute;
    top: -0.5em;
    right: -2em;
    opacity: 0;
    transform: translate(70px, 0px);
    animation: fadeInText 2s ease forwards;
    animation-delay: 2s;
}

#makeMyVideoText {
    transform: translate(-70px, 0px);
}

.animated-text-small {
    display: flex;
    justify-content: center;
    gap: 0.2em;
    font-size: 3em;
    opacity: 0;
    animation: fadeInText 2s ease forwards;
    animation-delay: 2s;
}

.letter {
    opacity: 0;
    animation: fadeIn 0.05s forwards;
}

.makeMyVideoText:last-child {
    rotate: 30deg;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Font Sizes */
@media (max-width: 1200px) {
    .animated-text-big {
        font-size: 6em;
    }

    .animated-text-small {
        font-size: 2.5em;
    }
}

@media (max-width: 992px) {
    .animated-text-big {
        font-size: 4.5em;
    }

    .animated-text-small {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .animated-text-big {
        font-size: 3.5em;
    }

    .animated-text-small {
        font-size: 1.8em;
    }

    .vertical-lines-container {
        display: none !important;
    }

    .tm-symbol {
        transform: translate(18px, 0px);
    }

    #makeMyVideoText {
        transform: translate(-40px, 0px);
    }
}

@media (max-width: 576px) {
    .animated-text-big {
        font-size: 2.5em;
    }

    .animated-text-small {
        font-size: 1.5em;
    }
}

/* New styles for sliding animation of the letter 'a' */
.sliding-a {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(90deg);
    font-size: 1em;
    animation: slideRight 2s cubic-bezier(0.29, 0.24, 0.58, 1.05) forwards;
    animation-delay: 0.1s;
    background: rgba(255, 255, 255, 0);
    margin-left: 6px;
}

/* Keyframes for sliding animation */
@keyframes slideRight {
    from {
        left: 0;
    }

    to {
        left: 100%;
        /* Adjust to reach the last letter */
    }
}

/* Styles for the container of the vertical lines */
.vertical-lines-container {
    position: absolute;
    display: flex;
    flex-direction: row;
    gap: 0.2em;
    opacity: 0;
    animation: fadeInLines 0.2s ease forwards;
    animation-delay: 0.1s;

}

.vertical-lines-container:first-child {
    height: 50px;
}

.vertical-lines-container:last-child {
    height: 40px;
}

/* Individual line styles */
.vertical-line {
    width: 5px;
    border-radius: 5px;
    background-color: #3938cb;
    transform: scaleY(0);
    animation: growLine 0.3s ease forwards;
}

/* Animation for fading in the lines container */
@keyframes fadeInLines {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Animation for growing each line */
@keyframes growLine {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.TextColorB {
    color: #3938cb;
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.team-member-icon {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.team-member-icon img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-icon img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.team-info {
    margin-top: 15px;
}

.team-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 16px;
    color: #666;
}

/* Slider navigation buttons */
.mobile-team-slider {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    position: relative;
    display: none;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 200px;
    perspective: 1000px;
    overflow: hidden;
}

.team-member-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.6s ease, opacity 0.6s ease;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: white;
    z-index: 1;
    opacity: 0;
}

.team-member-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team-member-icon.active {
    z-index: 3;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.team-member-icon.previous {
    z-index: 2;
    opacity: 0.8;
    transform: translate(-120%, -50%) scale(1);
}

.team-member-icon.next {
    z-index: 2;
    opacity: 0.8;
    transform: translate(20%, -50%) scale(1);
}

.team-info {
    margin-top: 20px;
}

.team-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 16px;
    color: #666;
}

.social-icons-mob {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.social-icons-mob .icon {
    text-align: center;
    font-size: 20px;
    color: #fff;
    background-color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.social-icons-mob .icon:hover {
    background-color: #000;
}

.social-icons-mob .instagram {
    background-color: #fff;
}

.social-icons-mob .facebook {
    background-color: #fff;
}

.social-icons-mob .linkedin {
    background-color: #fff;
}

/* Outer circle container for social media icons */
.outercircle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    /* Make it larger to appear outside the circle */
    height: 150%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 50%;
    pointer-events: none;
}

.outercircle .icon {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    background: #000000;
    color: #ffffff !important;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    pointer-events: auto;
}

.outercircle .icon:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    transform: scale(1.1);
}

.outercircle .icon.facebook {
    top: 18%;
    left: 68%;
    transform: translate(-50%, -50%);
}

.outercircle .icon.linkedin {
    bottom: 36%;
    left: 83%;
    transform: translate(-50%, 50%);
}

.outercircle .icon.instagram {
    top: 37%;
    left: 84%;
    transform: translate(-50%, -50%);
}

.sub-circle:hover .outercircle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.second {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 50%;
    pointer-events: none;
}

.second .icon {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    background: #000;
    color: #fff !important;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    pointer-events: auto;
}

.second .icon:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    transform: scale(1.1);
}

.second .icon.facebook {
    top: 19%;
    left: 62%;
    transform: translate(-50%, -50%);
}

.second .icon.linkedin {
    bottom: 40%;
    left: 80%;
    transform: translate(-50%, 50%);
}

.second .icon.instagram {
    top: 35%;
    left: 80%;
    transform: translate(-50%, -50%);
}

.sub-circle:hover .second {
    display: flex;
    justify-content: center;
    align-items: center;
}

.third {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 50%;
    pointer-events: none;
}

.third .icon {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    background: #000;
    color: #fff !important;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    pointer-events: auto;
}

.third .icon:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    transform: scale(1.1);
}

.third .icon.facebook {
    top: 21%;
    left: 71%;
    transform: translate(-50%, -50%);
}

.third .icon.linkedin {
    bottom: 34%;
    left: 80%;
    transform: translate(-50%, 50%);
}

.third .icon.instagram {
    top: 41%;
    left: 81%;
    transform: translate(-50%, -50%);
}

.sub-circle:hover .third {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fourth {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 50%;
    pointer-events: none;
}

.fourth .icon {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    background: #000;
    color: #fff !important;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    pointer-events: auto;
}

.fourth .icon:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    transform: scale(1.1);
}

.fourth .icon.facebook {
    top: 19%;
    left: 62%;
    transform: translate(-50%, -50%);
}

.fourth .icon.linkedin {
    bottom: 40%;
    left: 80%;
    transform: translate(-50%, 50%);
}

.fourth .icon.instagram {
    top: 35%;
    left: 80%;
    transform: translate(-50%, -50%);
}

.sub-circle:hover .fourth {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.custom-modal-content {
    position: relative;
    margin: auto;
    top: 10%;
    max-width: 80%;
    text-align: center;
    background-color: transparent;
}

.custom-modal-image-container img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.custom-modal-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.custom-modal-caption {
    position: absolute;
    bottom: -146px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    max-width: 90%;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.custom-modal-close:hover {
    color: #bbb;
}

.swiper-pagination {
    position: absolute !important;
    bottom: -1004px !important;
    left: 1px !important;
    width: 100% !important;
}

.BrandCap-mainCon {
    overflow: hidden;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border: 2px solid #000;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .active {
    background-color: #000;
    transform: scale(1.3);
}

.custom-carousel-control {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
}

.carousel-control-prev {
    left: -10px;
}

.carousel-control-next {
    right: -10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .custom-carousel-control {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: -40px;
        /* Adjust for smaller screens */
    }

    .carousel-control-next {
        right: -40px;
        /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .custom-carousel-control {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: -25px;
    }

    .carousel-control-next {
        right: -25px;
    }
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #000;
    border: none;
}

.carousel-indicators .active {
    background-color: #fff;
    border: 2px solid #000;
}

.carousel-indicators {
    bottom: -20px;
}

.btnstylenone {
    background: none;
    border: none;
}

.see-all-btn:focus,
.see-all-btn:active {
    outline: none;
    color: inherit;
    background-color: inherit;
}

.dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    display: none;
}

.dropdown-menu li {
    padding: 10px 15px;
    cursor: pointer;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f1f1f1;
    color: #007bff;
}

.d-flex {
    position: relative;
}

mark {
    background-color: #000;
    color: #fff;
    padding: 0 2px;
    border-radius: 3px;
}

.fixed-service-box-wrapper {
    position: fixed;
    bottom: 4%;
    left: 1px;
    z-index: 1000;
}

.toggle-service-box-btn {
    display: none;
    background-color: #000000;
    border: none;
    border-radius: 18%;
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: absolute;
    top: 47%;
    left: 10px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.toggle-service-box-btn.active {
    transform: translateY(-50%) rotate(180deg);
}

.fixed-service-box {
    position: relative;
    background-color: #000000;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 11px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 282px;
    font-family: Arial, sans-serif;
    text-align: center;
    transition: all 0.3s ease;
}

.fixed-service-box::before,
.fixed-service-box::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #000000;
    border-radius: 12px;
}

.fixed-service-box::before {
    top: -10px;
    right: 65%;
    transform: translateX(-50%);
}

.fixed-service-box::after {
    bottom: -10px;
    left: 85%;
    transform: translateX(-50%);
}

.fixed-service-box .service-name {
    font-size: 16px;
    color: #ffffff;
}

.fixed-service-box .service-link {
    display: inline-block;
    text-decoration: none;
    color: #ffffff !important;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.fixed-service-box i {
    margin-left: 4px !important;
}

.fixed-service-box h4 {
    margin: 0 !important;
}

.CaseStudiesMain {
    margin-bottom: 42px;
}

.CaseStudiesLine {
    width: 2px;
    height: 100%;
    background-color: #000;
    margin: 0 34px;
}

.CaseStudiesChf {
    margin-left: 126px;
}

.CaseStudiesChSec {
    padding-right: 198px;
}

.CaseStudiesChSec {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.CaseStudiesPara {
    margin-top: 15px;
    font-size: 18px;
}

.KnowMoreBtn {
    width: auto;
    background: transparent;
    border: 1px solid black;
    border-radius: 2px;
    font-size: 18px;
    padding: 12px 14px;
}

/* Custom Carousel Indicators */
.custom-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.custom-carousel-indicators button {
    width: 15px;
    height: 15px;
    background-color: #ddd;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-carousel-indicators button.active {
    background-color: #000;
    /* Active indicator color */
}

.custom-carousel-indicators button:hover {
    background-color: #555;
    /* Hover state */
}


/* Loader Overlay CSS*/
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.247);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: #183153;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Cookie Banner Styling */
.cookie-policy {
    position: fixed;
    bottom: 20px;
    left: 130px;
    background-color: #000;
    color: white;
    padding: 18px;
    border-radius: 20px;
    z-index: 1000;
    width: 250px;
    display: none;
}

.cookie-policy p {
    margin: 0 0 12px 0;
    padding: 0;
    font-size: 14px;
    text-align: justify;
}

.cookie-policy a {
    color: #fff !important;
    text-decoration: underline !important;
    font-weight: bold;
}

.cookie-policy button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 3px;
    cursor: pointer;
}

.cookie-policy button#denyCookies {
    background-color: #cdcdcd;
}

/* Blog Carousel */
.Blogcarouselmain {
    margin: 24px 0;
    display: flex;
    align-items: center;
    /* Center align the carousel items vertically */
    position: relative;
    overflow: hidden;
    flex-wrap: nowrap;
    /* Ensure carousel items do not wrap */
}

.carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transform: translateY(-50%);
    padding: 10px;
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-items {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    transition: transform 0.5s ease;
    overflow: hidden;
    /* Hide the scrollbar */
}

.BlogcarouselItem {
    position: relative;
    width: 97%;
    /* Full width by default for small devices */
    height: auto;
    padding: 250px 18px 18px 18px;
    margin: 10px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.BlogcarouselItem::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    z-index: 1;
    transition: background 0.3s ease;
}

.BlogcarouselItem:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

.BlogcarouselItem p {
    font-size: 14px;
    margin: 0;
    margin-top: 10px;
    color: #fff;
    z-index: 2;
    position: relative;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
    transition: text-shadow 0.3s ease;
}

.BlogcarouselItem h4,
.BlogcarouselItem p {
    color: #fff;
    z-index: 2;
    position: relative;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
    transition: text-shadow 0.3s ease;
}

.BlogcarouselItem:hover h4,
.BlogcarouselItem:hover p {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.5);
}