@font-face {
    font-family: 'Arkhip';
    src: url('/public/fonts/arkhip/Arkhip_font.woff2') format('woff2'),
        url('/public/fonts/arkhip/Arkhip_font.woff') format('woff'),
        url('/public/fonts/arkhip/Arkhip_font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.alert {
    color: var(--secondText);
    text-align: center;
}

.activeRoute {
    color: var(--secondText) !important;
    font-weight: bold;
}

/* Custom scrollbar styles */
body::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background of the scrollbar track */
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: #ED2AEF;
    /* Color of the scrollbar thumb */
    border-radius: 10px;
    border: 2px solid #f1f1f1;
    /* Border around the thumb to add some spacing */
}

body::-webkit-scrollbar-thumb:hover {
    background: #D021CF;
    /* Darker shade of the thumb color for hover */
}

.fade {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade.in-view {
    opacity: 1;
}

* {
    font-family: 'Arkhip', sans-serif;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
P {
    margin: 0 !important;
}

a {
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    /* Inherits color from parent element */
}

a[href^="tel:"] {
    text-decoration: none;
    /* Removes underline for phone links */
    /* Or any color you prefer */
}

a:link,
a:visited {
    text-decoration: none;
    color: var(--mainText);
    /* Remove underline for unvisited and visited links */
    /* Use the color of the surrounding text */
}

.nav-link {
    text-decoration: none;
    /* Override framework defaults */
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: 28px;
}

p {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    * {
        font-family: 'Arkhip';
        box-sizing: border-box;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 13px;
    }

    h4 {
        font-size: 15px;
    }

    p {
        font-size: 12px;
    }

}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    overflow-x: hidden !important;
}

:root {
    --mainText: #2E0A7A;
    --secondText: #ED2AEF;
    --paddingRightLeft: 80px;
}

.languageContainer {
    position: relative;
    display: inline-block;
}

.languageContainer img {
    height: 25px;
}

.dropdown-toggle {
    background-color: transparent !important;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--mainText);
    min-width: 100px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: 15px;
    top: 50px;
    /* transform: translateX(50%); */
}

.dropdown-menu a {
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    font-size: 10px;
    text-align: center;
}

.dropdown-menu a:hover {
    background-color: #100147;
}

.languageContainer:hover .dropdown-menu {
    display: block;
}

.languageArrow {
    height: 15px !important;
}

.flagContainer {
    display: flex;
    align-items: center;
    padding: 5px;
    border: 1px solid var(--mainText);
    background-color: var(--mainText);
    border-radius: 20px;
    gap: 3px;
}

.flagContainer p {
    color: #fff;
}

/* ################## LOADING SCREEN SECTION  */

.loadingScreenContainer {
    width: 100vw;
    height: 100vh;
    background-color: #100147;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    overflow: hidden;
    z-index: 1000;
    animation: fadeOut 500ms linear 2000ms forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
        z-index: -99999;
    }
}

.loadingScreenLogo {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomOut 800ms linear 1100ms forwards;
}

@keyframes zoomOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    75% {
        transform: translate(-50%, -50%) scale(1.5);
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.loadingScreenContent {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gradientPoint {
    opacity: 0;
    margin-top: 60px;
    animation: LoadingH1FadeIn 1s linear 100ms;
}

.loadingScreenContainer h1 {
    color: #fff;
    transform: translate(-200px);
    opacity: 0;
    animation: LoadingH1FadeIn 800ms linear 100ms forwards;

}

@keyframes LoadingH1FadeIn {

    0% {
        opacity: 0;
    }

    100% {
        transform: translate(0px);
        opacity: 1;
    }
}

.loadingScreenLogoSmall {
    opacity: 0;
    animation: fadeIn 1s linear 100ms forwards;
    z-index: 1000;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* ################## NAVBAR  */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--paddingRightLeft);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
}

.navLogo img {
    width: 40px;
}

.trendLogo {
    color: var(--secondText);
    font-size: 13px;
}

.solutionsLogo {
    color: var(--mainText);
    font-size: 13px;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Burger menu styling */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--mainText);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive styling */
@media screen and (max-width: 768px) {

    nav {
        padding: 10px;
        position: fixed;
        width: 100%;
        background-color: #fff;
    }

    .trendLogo {
        font-weight: bold;
    }

    .solutionsLogo {
        font-weight: bold;
    }

    .nav-items {
        display: none;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 60px;
        left: 0;
        background-color: white;
        padding: 50px 20px;
        align-items: center;
    }

    .nav-items.active {
        display: flex;
    }

    .burger {
        display: flex;
    }

}

/* Burger animation */
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Burger animation */
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}



/* ################## HERO SECTION  */

.heroSection {
    width: 100%;
    height: 100vh;
    padding: 0px var(--paddingRightLeft);
    margin-top: -102.5px;
    z-index: 1;
    /* Ensure it's behind the contact icons */
}

.logoOverlay {
    height: 100%;
    width: 45%;
    position: absolute;
    right: 0;
}

.heroSectionContentContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Ensure it's behind the contact icons */
}

.object {
    transition: transform 0.3s ease;
    width: 700px;
    z-index: 2;
    /* Ensure it's behind the contact icons */
    /* width: 400px; */
}

.objectMob {
    display: none;
}

@media screen and (max-width: 1024px) {

    .object {
        transition: transform 0.3s ease;
        width: 400px;
        z-index: 2;
        /* width: 400px; */
    }



}

@media screen and (max-width: 768px) {

    .object {
        display: none;
    }

    .objectMob {
        display: block;
        width: 300px;
    }


}



.heroSectionContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 102.5px;
    z-index: 2;
    /* Ensure it's behind the contact icons */
}

h1 {
    color: var(--mainText);
}

.trend {
    color: var(--secondText);
}

.solutions {
    color: var(--mainText);
}

.heroSectionContent .quotation {
    display: flex;
    align-items: center;
}

.heroSectionContent .quotation a {
    border-bottom: 1px solid var(--secondText);
}

.scrollToExploreContainer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: moveUpDownScrollBtn 3s ease-in-out infinite;
    z-index: 888;
}

.mob {
    display: none;
}

@keyframes moveUpDownScrollBtn {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.scrollToExplore {
    position: relative;
}

.scrollToExploreImg {
    width: 75px;
    animation: rotateScrollBtn 10s linear infinite;
}

.scrollToExploreArrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scrollToExploreArrow {
    width: 15px;
}


@keyframes rotateScrollBtn {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* iframe {
    display: block;
} */


/* Responsive styling */
@media screen and (max-width: 768px) {

    /* iframe {
        display: none;
    } */

    .scrollToExploreContainerMob {
        margin-top: 20px;
    }

    .scrollToExploreImg {
        width: 50px;
        animation: rotateScrollBtn 10s linear infinite;
    }

    .scrollToExploreArrow {
        width: 15px;
    }


    .desktop {
        display: none;
    }

    .heroSection {
        padding: 0px 20px;
        margin-top: 80px;
        margin-bottom: 20px;
    }

    .heroSectionContentContainer {
        flex-direction: column-reverse;
        gap: 2px;
    }

    .object {
        animation: moveUpDownScrollBtn 12s ease-in-out infinite;
        transition: none;
        margin-right: 140px;
        /* width: 250px; */
    }

    .heroSectionContent {
        gap: 20px;
        margin-top: 0;
    }

    .heroSectionContent h1 {
        text-align: center;
    }

    .mob {
        display: block;
    }

}

/* ################## CONTACT BUTTON  */

.contactCircle,
.contactIcon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    cursor: pointer;
    z-index: 999;
    /* Increased z-index to ensure it's above other content */
}

.contactIcon {
    animation: growShrink 3s infinite ease-in-out;
    z-index: 999;
}

@keyframes growShrink {

    0%,
    100% {
        transform: scale(1);
        /* Normal size */
    }

    50% {
        transform: scale(0.75);
        /* Bigger size */
    }
}

.contactIconsContent {
    position: fixed;
    right: 30px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Disable pointer events initially */
    opacity: 0;
    /* Initially hidden */
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
}


.contactIconsContent.show {
    pointer-events: auto;
    /* Enable pointer events when shown */
    opacity: 1;
    z-index: 999;
    /* Show the icons */
}

.contactIconsContent img {
    cursor: pointer;
    width: 40px;
    z-index: 999;
    transform: translateY(10px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.contactIconsContent.show img {
    opacity: 1;
    transform: translateY(0);
    z-index: 999;
}

.linkedInIcon {
    transform: translateY(200px);
    z-index: 999;
}

.twitterIcon {
    transform: translateY(150px);
    z-index: 999;
}

.facebookIcon {
    transform: translateY(100px);
    z-index: 999;
}

.instagramIcon {
    transform: translateY(50px);
    z-index: 999;
}

.whatsappIcon {
    transform: translateY(0);
    z-index: 999;
}



/* ################## WHO WE ARE SECTION  */

.whoWeAreSection {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
}

@media screen and (max-width: 768px) {

    .whoWeAreSection {
        padding: 80px 20px 20px 20px;
    }

}

.whoWeAreSectionContent {
    display: flex;
    justify-content: space-between;
    padding: 0 var(--paddingRightLeft);
    text-wrap: wrap;
}

@media screen and (max-width: 768px) {

    .whoWeAreSectionContent {
        flex-direction: column;
        padding: 0;
    }

}

.whoWeAreSectionContentLeft {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

@media screen and (max-width: 768px) {

    .whoWeAreSectionContentLeft {
        width: 100%;
        align-items: center;
    }

    .whoWeAreSectionContentLeft h3,
    .whoWeAreSectionContentLeft h2,
    .whoWeAreSectionContentLeft p {
        text-align: center;
    }

}

.whoWeAreSection h3 {
    color: var(--secondText);
}

.whoWeAreSection h2 {
    color: var(--mainText);
}

.whoWeAreSection p {
    color: var(--mainText);
}

.whoWeAreImg img {
    width: 100%;
}

@media screen and (max-width: 768px) {

    .whoWeAreImg {
        text-align: center;
    }

    .whoWeAreImg img {
        width: 70%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 426px) {
    .whoWeAreImg img {
        width: 100%;
        height: 300px;
        margin-top: 20px;
    }
}

.purpleLineImg {
    width: 100vw;
}

.scrollingTextContainer {
    display: flex;
}

.scrollingText {
    margin-top: 50px;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {

    .scrollingText {
        margin-top: 0px;
    }

}

.scrollingTextContent h4 {
    color: var(--mainText);
    padding: 10px;
}

.scrollingTextContent {
    display: flex;
    align-items: center;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ################## SERVICES SECTION  */

.servicesSection {
    width: 100%;
    height: 100vh;
    position: relative;
}

.servicesBg {
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -5;
}

.servicesTopElement img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -4;
}

.servicesTopElement h2 {
    text-align: center;
    padding-top: 50px;
    color: var(--secondText);
    z-index: -4;
}

.servicesSectionContent img {
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.servicesBottomElement {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%);
    color: #fff;
    text-wrap: nowrap;
}


#servicesLogo {
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-180deg);
    opacity: 0;
}

#servicesLogo.animate {
    animation: servicesLogoOpacity 500ms ease-out 500ms forwards, servicesLogoRotation 500ms ease-out 1000ms forwards;
}

#servicesFirstBranch,
#servicesSecondBranch,
#servicesThirdBranch,
#servicesFourthBranch,
#servicesSixthBranch,
#servicesSeventhBranch {
    opacity: 0;
}

#servicesFirstBranch.animate {
    animation: servicesLogoOpacity 250ms ease-out 1700ms forwards;
}

#servicesSecondBranch.animate {
    animation: servicesLogoOpacity 250ms ease-out 2150ms forwards;
}

#servicesThirdBranch.animate {
    animation: servicesLogoOpacity 250ms ease-out 2600ms forwards;
}

#servicesFourthBranch.animate {
    animation: servicesLogoOpacity 250ms ease-out 3050ms forwards;
}

#servicesSixthBranch.animate {
    animation: servicesLogoOpacity 250ms ease-out 3500ms forwards;
}

#servicesSeventhBranch.animate {
    animation: servicesLogoOpacity 250ms ease-out 3950ms forwards;
}




@keyframes servicesLogoOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes servicesLogoRotation {
    0% {
        transform: translate(-50%, -50%) rotate(-180deg);
        /* Start from 180deg */
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
        /* End at 0deg */
    }
}


/* MOBILE */

#servicesLogoMob {
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-180deg);
    opacity: 0;
}

#servicesLogoMob.animate {
    animation: servicesLogoOpacity 500ms ease-out 500ms forwards, servicesLogoRotation 500ms ease-out 1000ms forwards;
}

#servicesFirstBranchMob,
#servicesSecondBranchMob,
#servicesThirdBranchMob,
#servicesFourthBranchMob,
#servicesSixthBranchMob,
#servicesSeventhBranchMob {
    opacity: 0;
}

#servicesFirstBranchMob.animate {
    animation: servicesLogoOpacity 250ms ease-out 1700ms forwards;
}

#servicesSecondBranchMob.animate {
    animation: servicesLogoOpacity 250ms ease-out 2150ms forwards;
}

#servicesThirdBranchMob.animate {
    animation: servicesLogoOpacity 250ms ease-out 2600ms forwards;
}

#servicesFourthBranchMob.animate {
    animation: servicesLogoOpacity 250ms ease-out 3050ms forwards;
}

#servicesSixthBranchMob.animate {
    animation: servicesLogoOpacity 250ms ease-out 3500ms forwards;
}

#servicesSeventhBranchMob.animate {
    animation: servicesLogoOpacity 250ms ease-out 3950ms forwards;
}




@keyframes servicesLogoOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes servicesLogoRotation {
    0% {
        transform: translate(-50%, -50%) rotate(-180deg);
        /* Start from 180deg */
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
        /* End at 0deg */
    }
}

/* ################## OUR WORK SECTION  */

.ourWorkSection {
    background-image: url('../images/ourWorkBg.jpg');
    background-size: contain;
    padding: var(--paddingRightLeft);
    overflow: hidden;
}

@media screen and (max-width: 768px) {

    .ourWorkSection {
        padding: 20px;
        background-image: url('../images/ourWorkBgMob.jpg');
        background-size: contain;
    }

}

.ourWorkSection h2 {
    color: var(--secondText);
    padding-top: 100px;
    padding-bottom: 50px;
    text-align: center;
}

@media screen and (max-width: 768px) {

    .ourWorkSection h2 {
        padding: 20px 0;
    }
}

.ourWorkSection p {
    color: #fff;
    padding-top: 10px;
    text-align: center;
}

.ourWorkImagesContainer a {
    background-color: transparent;
    padding: 0 !important;
    border-radius: 20px;
    box-shadow: none;
}

.ourWorkImagesContainer a:hover {
    background-color: transparent;
    padding: 0 !important;
    box-shadow: none;
}

.ourWorkImagesContainer {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

@media screen and (max-width: 426px) {
    .ourWorkImagesContainer {
        flex-direction: column;
        gap: 20px;
    }
}

.ourWorkImage1 {
    width: 100%;
    height: 600px;
    position: relative;
    box-shadow: 7px 10px 20.9px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

@media screen and (max-width: 426px) {

    .ourWorkImage1 {
        width: 100%;
    }
}

.ourWorkImage1 h4 {
    display: none;
}

.ourWorkImage1:hover {
    .purpleOverlay {
        display: none;
        transition: all 1s ease-in-out;
    }
}

.ourWorkImage1:hover.ourWorkImage1 h4 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: var(--mainText);
    padding: 15px;
    border-radius: 20px;
}



.purpleOverlay {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--BG-MAIN-PURPLE, #37277163);
    mix-blend-mode: overlay;
    backdrop-filter: blur(1px);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 1s ease-in-out;
}

@media screen and (max-width: 768px) {

    .purpleOverlay {
        display: none;
        transition: all 1s ease-in-out;
    }
}


.ourWorkImagesRight {
    display: flex;
    flex-direction: column;
    gap: 30px;
}



.ourWorkImage2,
.ourWorkImage3 {
    width: 100%;
    height: 300px;
    position: relative;
    box-shadow: 7px 10px 20.9px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

@media screen and (max-width: 426px) {

    .ourWorkImage2,
    .ourWorkImage3 {
        width: 100%;
        height: 181px;
    }
}

.ourWorkImage2 h4 {
    display: none;
}

.ourWorkImage2:hover {
    .purpleOverlay {
        display: none;
        transition: all 1s ease-in-out;
    }
}

.ourWorkImage2:hover.ourWorkImage2 h4 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: var(--mainText);
    padding: 15px;
    border-radius: 20px;
}

.ourWorkImage3 h4 {
    display: none;
}

.ourWorkImage3:hover {
    .purpleOverlay {
        display: none;
        transition: all 1s ease-in-out;
    }
}

.ourWorkImage3:hover.ourWorkImage3 h4 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: var(--mainText);
    padding: 15px;
    border-radius: 20px;
}

.ourWorkImage1Img,
.ourWorkImage2Img,
.ourWorkImage3Img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.ourWorkImagesLeft {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.ourWorkImagesLeft1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ourWorkImagesLeft1 h4 {
    display: none;
}

.ourWorkImagesLeft1:hover {
    .purpleOverlay {
        display: none;
        transition: all 1s ease-in-out;
    }
}

.ourWorkImagesLeft1:hover.ourWorkImagesLeft1 h4 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: var(--mainText);
    padding: 15px;
    border-radius: 20px;
}

.ourWorkImagesLeft2 h4 {
    display: none;
}

.ourWorkImagesLeft2:hover {
    .purpleOverlay {
        display: none;
        transition: all 1s ease-in-out;
    }
}

.ourWorkImagesLeft2:hover.ourWorkImagesLeft2 h4 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: var(--mainText);
    padding: 15px;
    border-radius: 20px;
}

.ourWorkImagesLeft1,
.ourWorkImagesLeft2 {
    width: 100%;
    height: 300px;
    position: relative;
    box-shadow: 7px 10px 20.9px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

@media screen and (max-width: 426px) {

    .ourWorkImagesLeft1,
    .ourWorkImagesLeft2 {
        width: 100%;

    }
}

.ourWorkImagesLeft1 img,
.ourWorkImagesLeft2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}



.ourWorkImagesRightEndImg {
    width: 100%;
    height: 600px;
    position: relative;
    box-shadow: 7px 10px 20.9px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

@media screen and (max-width: 426px) {

    .ourWorkImagesRightEndImg {
        width: 100%;
    }

}

.ourWorkImagesRightEndImg h4 {
    display: none;
}

.ourWorkImagesRightEndImg:hover {
    .purpleOverlay {
        display: none;
        transition: all 1s ease-in-out;
    }
}

.ourWorkImagesRightEndImg:hover.ourWorkImagesRightEndImg h4 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: var(--mainText);
    padding: 15px;
    border-radius: 20px;
}

.ourWorkImagesRightEndImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ################## OUR VISION SECTION  */

.ourVisionSection {
    background-color: #100147;
    padding: var(--paddingRightLeft);
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

@media screen and (max-width: 768px) {

    .ourVisionSection {
        padding: 20px;
        gap: 20px;
    }

}

.ourVisionSection h2 {
    color: var(--secondText);
}

.ourVisionSection h4 {
    color: #fff;
    text-align: center;
}

/* ################## EVENTS SECTION  */

.eventsSection {
    padding: var(--paddingRightLeft);
}

.eventsSection a {
    background-color: transparent;
    padding: 0 !important;
    border-radius: 20px;
    box-shadow: none;
}

.eventsSection a:hover {
    background-color: transparent;
    padding: 0 !important;
    box-shadow: none;
}

@media screen and (max-width: 768px) {

    .eventsSection {
        padding: 20px;
    }

}

.eventsSection h2 {
    color: var(--secondText);
    text-align: center;
    padding-bottom: 50px;
}

@media screen and (max-width: 768px) {

    .eventsSection h2 {
        padding-bottom: 20px;
    }


}

.eventsTopContainer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {

    .eventsTopContainer {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

}

.eventsLeftcont {
    width: 525px;
    height: 495px;
    position: relative;
}

@media screen and (max-width: 768px) {

    .eventsLeftcont {
        width: 100%;
    }

}

.eventsLeftcont p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    color: #fff;
    z-index: 10;
    background-color: #100147;
    width: 100%;
    text-align: center;
    padding: 10px 0px;
    border-radius: 0px 0px 20px 20px;
}

.eventsLeftcont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.eventsRightcont {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.eventsRightImg1,
.eventsRightImg2 {
    width: 525px;
    height: 233px;
    position: relative;
}

@media screen and (max-width: 768px) {

    .eventsRightImg1,
    .eventsRightImg2 {
        width: 100%;
    }

}

.eventsRightImg1 p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    color: #fff;
    z-index: 10;
    background-color: #100147;
    width: 100%;
    text-align: center;
    padding: 10px 0px;
    border-radius: 0px 0px 20px 20px;
}


.eventsRightImg1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;

}

@media screen and (max-width: 768px) {

    .eventsRightImg1 img {
        width: 100%;
    }
}

.eventsRightImg2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.eventsRightImg2 p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    color: #fff;
    z-index: 10;
    background-color: #100147;
    width: 100%;
    text-align: center;
    padding: 10px 0px;
    border-radius: 0px 0px 20px 20px;
}

.eventsBottomContainer {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

@media screen and (max-width: 768px) {

    .eventsBottomContainer {
        flex-direction: column;
        gap: 20px;
    }

}

.eventsBottomImgLeft {
    width: 820px;
    height: 355px;
    position: relative;
}

@media screen and (max-width: 768px) {

    .eventsBottomImgLeft {
        width: 100%;
    }

}

.eventsBottomImgLeft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.eventsBottomImgLeft p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    color: #fff;
    z-index: 10;
    background-color: #100147;
    width: 100%;
    text-align: center;
    padding: 10px 0px;
    border-radius: 0px 0px 20px 20px;
}

.eventsBottomImgRight {
    background-color: #100147;
    border-radius: 20px;
    text-align: center;
    padding: 15px;
    position: relative;
    margin: 0 auto;
    /* Center the block horizontally */
}

.eventsBottomImgRightContent {
    position: relative;
    /* Changed from absolute to relative */
    top: auto;
    left: auto;
    transform: none;
    /* Removed transform for better alignment */
}

.eventsBottomImgRight h1 {
    color: #fff;
    margin-bottom: 10px !important;
    font-size: 1.5rem;
    /* Adjusted font size for responsiveness */
}

@media screen and (max-width: 768px) {
    .eventsBottomImgRight {
        width: 100%;
        /* Full width on smaller screens */
        border-radius: 10px;
        /* Smaller border radius for better fit */
        padding: 10px;
        /* Adjusted padding */
    }

    .eventsBottomImgRightContent {
        position: relative;
        /* Relative positioning for mobile */
        width: 100%;
        /* Ensure content fits within container */
        height: auto;
        /* Adjust height for better fit */
        padding: 10px;
        /* Padding inside content for mobile view */
    }

    .eventsBottomImgRight h1 {
        font-size: 1.2rem;
        /* Smaller font size on mobile */
    }

    .eventsBottomImgRight img {
        max-width: 100%;
        /* Ensure image scales down with the container */
        height: auto;
        /* Maintain aspect ratio of image */
    }
}


/* ################## OUR PARTNERS SECTION  */

.ourPartnersLine {
    width: 100%;
}

.ourPartnersContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px var(--paddingRightLeft);
}

@media screen and (max-width: 768px) {

    .ourPartnersContainer {
        flex-direction: column;
        padding: 20px;
    }

}

.ourPartnersContainerLeft {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media screen and (max-width: 768px) {

    .ourPartnersContainerLeft {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .ourPartnersContainerRight img {
        width: 100%;
        padding: 20px;
    }
}

.ourPartnersContainer h4 {
    color: var(--mainText);
}

.ourPartnersContainer p {
    color: var(--secondText);
}

/* ################## CONTACT US SECTION  */

.contactUsSection {
    padding: 50px var(--paddingRightLeft);
    position: relative;
}

@media screen and (max-width: 768px) {

    .contactUsSection {
        padding: 20px;
    }

}

.contactUsContainer {
    background-image: url('../images/contactUsBg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {

    .contactUsContainer {
        padding: 20px;
    }

}

.contactUsTop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {

    .contactUsTop {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

}

.contactUsTop h2 {
    text-align: center;
    color: #fff;
}

.contactUsTop p {
    text-align: center;
    color: var(--secondText);
}

.contactUsBottom img {
    max-height: 450px;
}

.contactUsBottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {

    .contactUsBottom {
        flex-direction: column;
        gap: 20px;
        margin-left: 0px;
    }

    .contactUsBottom img {
        width: 100%;
    }


}

.contactUsBottomFormInputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contactUsBottomFormInputs input {
    width: 400px;
    height: 50px;
    border-radius: 20px;
    border: 1px solid var(--secondText);
    background: #FFF;
}

.contactUsBottomFormInputs input::placeholder {
    color: #d0d0d0;
    padding: 20px;
}

.contactUsBottomFormInputs textarea {
    width: 400px;
    height: 250px;
    border-radius: 20px;
    border: 1px solid var(--secondText);
    background: #FFF;
}

.contactUsBottomFormInputs textarea::placeholder {
    color: #d0d0d0;
    padding: 20px;
}

.contactUsBottom button {
    padding: 15px 50px;
    border-radius: 20px;
    border: 1px solid var(--secondText);
    background: var(--secondText);
    margin-top: 20px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {

    .contactUsBottomFormInputs {
        align-items: center;
    }

    .contactUsBottomFormInputs input {
        width: 300px;
        height: 30px;
        border-radius: 20px;
    }

    .contactUsBottomFormInputs textarea {
        width: 300px;
        height: 200px;
    }

    .contactUsBottom button {
        padding: 10px 40px;
        margin-top: 20px;
    }

    .formBtn {
        text-align: center;
    }
}

/* ################## OUR CLIENTS SECTION  */

.ourClientsSection {
    background-image: url('../images/ourClientsSection.png');
    background-size: contain;
}

.ourClientsSection h2 {
    color: var(--secondText);
    text-align: center;
    padding-bottom: 20px;
}

.logo-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 20px;
}

.logo-scroll {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    /* Adjust duration as needed */
}

.logo-scroll img {
    height: 60px;
    margin: 15px;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the total width */
    }
}

@media screen and (max-width: 768px) {
    .logo-scroll img {
        height: 40px;
    }
}



/* ################## FOOTER SECTION  */

.footerSection {
    background-color: #100147;
}

.footerPurpleLine {
    width: 100%;
}

.footerPurpleContent {
    padding: 50px;
}

@media screen and (max-width: 768px) {

    .footerPurpleContent {
        padding: 20px;
    }


}

.footerTrend {
    color: var(--secondText);
}

.footerSolutions {
    color: #fff;
}

.footerSlogan {
    color: #fff;
    padding-bottom: 10px;
}

.footerTop {
    border-bottom: 1px solid var(--secondText);
    width: fit-content;
    margin: auto;
}


@media screen and (max-width: 768px) {

    .footerTop {
        margin: auto;
    }

}


.footerRights {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    align-items: center;

}

.footerRights p {
    color: var(--mainText);
    font-size: 13px;
    padding: 10px;
    border-top: 1px solid var(--secondText);
    width: fit-content;
}

.contactIconsFooter {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.contactIconsFooter img {
    width: 25px;
}

/* Remove text decoration and styling effects on links */
.contactIconsFooter a,
.footerSection a {
    text-decoration: none;
    color: inherit;
    /* Ensure the link color inherits from its parent */
    outline: none;
    /* Remove focus outline if not needed */
    border: none;
    /* Ensure no border styling is applied */
    color: #fff;
}

.contactIconsFooter a:hover,
.contactIconsFooter a:focus {
    color: inherit;
    /* Maintain text color on hover/focus */
    background: none;
    /* Remove any background effects */
}

.footerContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 50px;
}

.footerTitle {
    text-align: center;
    padding: 25px 0px;
    color: var(--secondText);
}

@media (max-width: 768px) {

    .footerTitle {
        padding: 10px 0px;
    }

}

.cell {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Borders for large screens */
.cell:nth-child(1) {
    border-right: 1px solid var(--secondText);
    border-bottom: 1px solid var(--secondText);
}

.cell:nth-child(2) {
    border-bottom: 1px solid var(--secondText);
}

.cell:nth-child(3) {
    border-right: 1px solid var(--secondText);
}

@media (max-width: 768px) {
    .footerContainer {
        grid-template-columns: 1fr;
        padding: 15px;
    }


    /* Borders for large screens */
    .cell:nth-child(1) {
        border-right: 0px;
        border-bottom: 1px solid var(--secondText);
    }

    .cell:nth-child(2) {
        border-bottom: 1px solid var(--secondText);
    }

    .cell:nth-child(3) {
        border-right: 0px;
        border-bottom: 1px solid var(--secondText);
    }

}


.footerAddress {
    display: flex;
    align-items: center;
    gap: 10px;
}


.footerAddress img {
    width: 75px;
}

.footerContainer p {
    color: #fff;
}

.footerLocation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footerLocation img {
    width: 50px;
}

.contactFooter {
    display: flex;
    align-items: center;
    gap: 10px;
}



.contactFooter img {
    width: 50px;
}

.contactFooter div {
    display: flex;
    flex-direction: column;
}



/* PORTFOLIO CSS  */

/* PROJECTSS */

.container {
    padding: 50px;
}

.container h1 {
    text-align: center;
    padding-bottom: 20px;
    color: var(--secondText);
}

@media screen and (max-width: 768px) {

    .container {
        padding-top: 100px;
    }

}

.projectsIndexTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projectsIndexTop button {
    background-color: var(--secondText);
    color: var(--mainText);
    border: none;
    padding: 5px 10px;
    border-radius: 20px;
}

.card-text {
    margin: 20px 0px !important;
}

.card {
    border: 1px solid #2d0a7a2a;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.btn {
    display: block;
    width: fit-content;
}

.btn-primary {
    background-color: var(--secondText);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    padding: 10px 20px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--mainText);
}

.btn-primary:hover {
    background-color: #fc9dfe;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-warning {
    background-color: #ED2AEF;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-warning:hover {
    background-color: #2E0A7A;
}

.card-body {
    padding: 15px;
    background-color: #10014705;
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.portfolioImgCont {
    width: 400px;
    height: 300px;
    object-fit: cover;

}

.card-body img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {

    .card-body {
        flex-direction: column-reverse;
        justify-content: space-around;
        align-items: center;
    }

    .portfolioImgCont {
        width: 100%;
        height: 300px;
        object-fit: cover;

    }

    .container {
        padding: 100px 20px;
    }


}


.card-body h5,
.card-body p {
    color: var(--mainText);
}

.projectDesc {
    text-align: center;
    color: var(--mainText);
}


/* Project Image Display */

.project-images-cont {
    gap: 25px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0px;
}


.project-images {
    width: 400px;
    height: 300px;
    object-fit: cover;
}



.project-images img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-video video{
    height: 60vh;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .projectCont {
        padding-top: 125px;
    }
}