        :root {
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #46505e;
            --text-primary: #109292;
            --text-secondary: #229796;
            --text-highlight: #109292;
            --background-primary: #40CBC9;
            --background-secondary: #0FB3AB;
            --background-third: #8BF0F6;
        }   
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            color: var(--dark);
            overflow-x: hidden;
            background: url('./images/home-bg.jpg') center center no-repeat fixed;
            background-size: cover;
            font-size: 1.1rem;
            font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
        }

        h1, h2, h3 {
            font-family: 'Gendy', sans-serif;
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        .color-primary {
            color: var(--text-primary)
        }

        .color-medium {
            color: var(--gray)
        }

        .font-ex {
            font-size: 0.9rem;
        }

        .font-sm {
            font-size: 1rem;
        }

        .divider-primary {
            height: 3px;
            width: 100%;
            background-color: var(--primary);
        }

        .static-elm {
            position: relative !important;
        }
        
        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 3000;
            transition: all 0.3s ease;
        }
        header.solutions-active, header.capabilities-active, header.contact-active {
            background: linear-gradient(to right,  rgba(64,203,201,0) 41%,rgba(64,203,201,0.02) 42%,rgba(64,203,201,0.4) 60%,rgba(64,203,201,1) 89%);
        }
        .blured-bg {
            position: fixed;
            top: 0;
            width: 100%;
            height: 100px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            z-index: 2999;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2%;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .main-logo {
            width: 250px;
            width: clamp(150px, 50vw, 250px);
            height: auto;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            margin-right: 10%;
            letter-spacing: 0.02rem;
            text-shadow: 0px 0px 1px #000;
        }

         .nav-links li { 
            list-style-type: none;
         }
        
        .nav-links a {
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            font-size: clamp(0.9rem, 1.1vw, 1.1rem);
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--text-highlight);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--text-highlight);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a.active {
            color: var(--text-highlight);
        }
        
        .nav-links a.active::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Hero Section */
        section {
            min-height: 100vh;
            padding: 8rem 5% 4rem;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        /* HOME */
        .home-large-text {
            position: relative;
            z-index: 1;
        }
        .home-large-text h2 {
            /* font-size: 8rem; */
            font-size: clamp(1rem, 7vw, 8rem);
            color: #fff;
            font-weight: normal;
        }

        /* HOME END */

        .hero-content {
            max-width: 600px;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content h1 span {
            color: var(--primary);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2rem;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        }
        
        .hero-image {
            position: absolute;
            right: 20%;
            top: 60%;
            transform: translateY(-50%);
            width: 10%;
            height: auto;
        }
        
        /* Scroll Indicator Triangle */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 25px solid var(--primary);
            cursor: pointer;
            opacity: 1;
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 10;
            animation: bounce 2s infinite;
            display: none;
        }
        
        .scroll-indicator.hide {
            opacity: 0;
            transform: translate(-50%, -100vh);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-15px) translateX(-50%);
            }
            60% {
                transform: translateY(-7px) translateX(-50%);
            }
        }

        .inner-page-gradient {
            background: linear-gradient(to bottom,  #40cbc9 0%,#ffffff 45%);
        }

        .inner-page-gradient-radial-1 {
            background: radial-gradient(ellipse at center,  rgba(64,203,201,1) 0%,rgba(255,255,255,1) 70%);
        }

        .inner-page-gradient-2 {
            background: linear-gradient(to bottom,  rgba(64,203,201,1) 0%,rgba(251,254,254,1) 26%,rgba(255,255,255,0.98) 45%,rgba(64,203,201,0.2) 76%,rgba(64,203,201,1) 100%);
        }

        .hyper-focused-holder {
            width: 100%
        }

        .hyper-focused h2{
            font-size: clamp(1rem, 6vw, 6rem);
            line-height: 110%;
            letter-spacing: 0.2rem;
            font-weight: normal;
            color: #fff;
        }

        .sliding-text-holder {
            width: 100%;
        }
        
        /* CAROUSEL */
        .carousel-container {
            position: relative;
            width: 100%;
            height: auto;
            margin-bottom: 0px;
            padding: 0;
            z-index: 2000;
            min-height: 500px;
            padding-bottom: 150px;
            transition: all 0.6s ease;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .paragraph {
            position: absolute;
            width: 33.3%;
            padding: 30px 30px 30px 0px;
            /* background-color: white; */
            border-radius: 8px;
            transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
            will-change: transform, opacity;
            opacity: .2;
            font-size: 1.2rem;
            font-family: 'inter', sans-serif;
        }

        .paragraph-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #4a6fa5;
            opacity: 0;
            transition: all 0.4s ease;
            transform: scale(0.8);
        }

        .paragraph-icon img {
            width: 150px;
            height: auto;
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .paragraph.active {
            opacity: 1;
            z-index: 3;
            transform: translate(0, 0) scale(1);
            left: 0;
            top: 0;
        }

        .paragraph.active .paragraph-icon {
            opacity: 1;
            transform: scale(1.2);
        }

        .paragraph.next1 {
            opacity: 0.7;
            z-index: 2;
            transform: translate(100%, 80px) scale(0.9);
            left: 0;
            top: 0;
        }

        .paragraph.next2 {
            opacity: 0.4;
            z-index: 1;
            transform: translate(200%, 160px) scale(0.8);
            left: 0;
            top: 0;
        }

        .paragraph.hidden-right {
            transform: translate(300%, 240px) scale(0.7);
            opacity: 0;
            z-index: 0;
            left: 0;
            top: 0;
        }

        .paragraph.hidden-left {
            transform: translate(-100%, -80px) scale(0.7);
            opacity: 0;
            z-index: 0;
            left: 0;
            top: 0;
        }

        .paragraph h3 {
            font-size: clamp(1rem, 1.5vw, 1.6rem);
            margin-bottom: 15px;
            color: #ffffff;
            font-family: 'inter', sans-serif;
        }

        .paragraph p {
            color: #ffffff;
            line-height: 1.4;
            font-size: clamp(1rem, 1.1vw, 1.2rem);
        }

        .carousel-navigation {
            display: flex;
            justify-content: center;
            gap: 20px;
            position: absolute;
            bottom: 70px;
            left: 150px;
            transform: translateX(-50%);
            margin-bottom: 20px;
        }

        .nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #29B1B1;
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .nav-btn:hover {
            background-color: #2a7070;
            transform: scale(1.1);
        }

        .nav-btn:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
            transform: none;
        }
        /* CAROUSEL END */

        /* Solutions Section */
        #solutions {
            padding: 0px 2% 0 5%p;
        }
        .solution-title {
            color: var(--text-primary);
            font-size: clamp(1rem, 8vw, 9rem);
            letter-spacing: 0.5rem;
            font-weight: normal;
            margin: 0px 0 0 0px;
            line-height: 1;
        }
        #solutions-middle {
            display: block;
            background: url('./images/solutions-bg.jpg') center center no-repeat fixed;
            padding-bottom: 140px;
            background-size: cover;
        }
        .solutions-wrapper.inner-page {
            width: 100%;
        }
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            width: 100%;
        }

        .solution-sub-title {
            color: var(--text-primary);
            opacity: .6;
            font-size: clamp(1rem, 3vw, 3rem);
            letter-spacing: 0.2rem;
            margin-top: clamp(50px, 2vw, 100px);
            line-height: 120%;
        }

        .solutions-p-text {
            margin-top: clamp(35px, 2vw, 65px);
            max-width: 620px;
            color: var(--text-primary);
            line-height: 140%;
            font-size: clamp(1rem, 1.2vw, 1.2rem);
        }

        .solutions-text-block img {
            width: 30%;
            mix-blend-mode: multiply;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .section-title p {
            color: #000;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .solutions-text-block {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            transition: all 0.5s ease;
        }

        @media screen and (max-width: 768px) {
            .solutions-text-block {
                flex-direction: column;
            }
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            width: 100%;
        }
        
        .solution-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .solution-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            transition: all 0.5s ease;
        }
        
        .solution-card:hover i {
            transform: rotate(15deg) scale(1.1);
            color: var(--secondary);
        }
        
        .solution-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .solution-card p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }
        
        .learn-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .learn-more:hover {
            gap: 1rem;
        }
        
        /* Capabilities Section */
        #capabilities {
            /* padding: 0px 2% 150px 2%; */
            display: block;
        }
        
        .capabilities-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        
        .capability-image {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            transition: all 0.5s ease;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
        }
        
        .capability-image:hover {
            transform: scale(1.02);
            filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
        }
        
        .capability-content {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }
        
        .capability-item {
            margin-bottom: 2rem;
        }
        
        .capability-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .capability-item h3 i {
            color: var(--secondary);
        }
        
        .capability-item p {
            color: var(--gray);
            line-height: 1.6;
        }

        .capablities-title {
            color: var(--text-primary);
            font-size: clamp(1rem, 8vw, 9rem);
            letter-spacing: 0.5rem;
            font-weight: normal;
            margin: 0px 0 0 0px;
            line-height: 1;
        }

        .capabilities-p-text {
            margin: 65px auto 0 auto;
            max-width: 620px;
            color: var(--text-primary);
            font-size: clamp(1rem, 1.2vw, 1.2rem);
        }

        .grid-one {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            grid-column-gap: 20px;
            grid-row-gap: 20px;
        }

        .grid-one p {
            line-height: 120%;
        }

        .grid-one-item {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            min-height: 250px;
            color: var(--text-primary);
        }

        .grid-one-grid-item-title-wrapper {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 20px;
        }

        .grid-one-grid-item-title-wrapper h5 {
            color: var(--text-primary);
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            max-width: 60%;
            line-height: 120%;
        }

        .capabilities-p-text {
            line-height: 120%;
        }

        .capabilities-grid-holder {
            padding: 0 60px 0 60px;
            margin: 0 0 0 0;
        }

        .capabilities-grid {
            margin: 120px 0 0 0;
        }

        /* clients section */
        #clients {
            min-height: 300px;
            padding: 8rem 0 8rem;
            background-color: #fff;
        }
        .clients-sections {
            display: flex;
            justify-content: space-between;
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .clients-sections h5, .clients-sections h5 span  {
            font-family: 'Doto', sans-serif;
            font-size: 4rem;
            color: var(--text-primary);
            line-height: 110%;
            font-weight: bold;
        }
        .clients-sections h6 {
            margin-top: 0px;
            font-size: 1rem;
            font-weight: normal;
            color: #000;
             line-height: 110%;
        }
        
        /* Contact Section */
        #contact {
            display: block;
        }
        #contact .section-title h2 {
            font-weight: normal;
        }
        #contact .section-title p.font-sm {
            font-size: 1rem;
        }
        .contact-container {
            display: flex;
            gap: 2rem;
            width: 100%;
            justify-content: space-between;
            min-width: 300px;
            max-width: 1000px;
            background-color: white;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 0 auto;
        }

        .contact-left {
            border-radius: 10px;
            width: 200px;
            background-color: var(--background-secondary);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-left h3 {
            font-size: 2.4rem;
            margin: 20px;
            color: #fff;
            font-weight: normal;
        }

        .contact-left svg {
            margin: 10px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            max-width: 400px;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .contact-detail i {
            font-size: 1.2rem;
            color: var(--primary);
            margin-top: 0.2rem;
        }
        
        .contact-detail div h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        
        .contact-detail div p {
            color: var(--gray);
        }
        
        .contact-form {
            flex: 1;
           margin-top: 30px;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--background-secondary);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        .submit-btn:hover {
            background-color: var(--background-primary);
        }
        
         /* FOOTER */
        .footer {
            padding-top: 100px;
            padding-bottom: 30px;
            width: 96%;
            display: flex;
            gap: 50px;
            justify-content: space-between;
            margin: 50px auto 0px auto;
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        }
        .footer-right {
            flex: 1;
        }   
        .menu-title {
            font-weight: bold;
            font-size: 1rem;
            color: black;
            margin-bottom: 10px;
        }
        .menu-col {
            font-size: 1rem;
            line-height: 120%;
        }
        .footer-menu-holder {
            display: flex;
            gap: 100px;
            justify-content: end;
        }
        .footer-menu-holder a {
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            color: var(--gray);
        }
        .footer-menu-holder a:hover {
            text-decoration: underline;
        }
        .footer-left {
            flex: 1;
        }
        .footer-left-logo {
            width: 270px;
        }
        .social-menu {
            margin-top: 20px;
            margin-left: 33px;
        }
        /* FOOTER END */
        
        .copyright {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px) translateY(-50%);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(-50%);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        @keyframes wave {
            0% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(5deg);
            }
            50% {
                transform: rotate(0deg);
            }
            75% {
                transform: rotate(-5deg);
            }
            100% {
                transform: rotate(0deg);
            }
        }
        
        @keyframes gradient {
            0% {
                background-position: 0% center;
            }
            100% {
                background-position: 200% center;
            }
        }
        
        @keyframes letterSpacing {
            from {
                letter-spacing: -2px;
            }
            to {
                letter-spacing: 1px;
            }
        }
        
        /* Animation Classes */
        .animate-slide-left {
            animation: slideInLeft 1s ease forwards;
        }
        
        .animate-slide-right {
            animation: slideInRight 1s ease forwards;
        }
        
        .animate-zoom {
            animation: zoomIn 1s ease forwards;
        }
        
        .animate-float {
            animation: float 3s ease-in-out infinite;
        }
        
        .animate-wave {
            animation: wave 2s ease-in-out infinite;
            transform-origin: bottom center;
            display: inline-block;
        }
        
        .animated-gradient-text {
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            animation: gradient 3s linear infinite;
        }
        
        .animate-letter-spacing {
            animation: letterSpacing 2s ease forwards;
        }
        
        .delay-100 {
            animation-delay: 0.1s;
        }
        
        .delay-200 {
            animation-delay: 0.2s;
        }
        
        .delay-300 {
            animation-delay: 0.3s;
        }
        
        .delay-400 {
            animation-delay: 0.4s;
        }
        
        .delay-500 {
            animation-delay: 0.5s;
        }
        
        .delay-600 {
            animation-delay: 0.6s;
        }
        
        .delay-700 {
            animation-delay: 0.7s;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3rem;
                transition: all 0.5s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
            }
            
            .hero-image {
                display: none;
            }
            
            .cta-button {
                margin: 0 auto;
            }
            
            .capabilities-container {
                flex-direction: column;
            }
            
            .capability-image {
                order: -1;
                max-width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

       .scroll-object {
            position: fixed;
            left: 40%;
            bottom: 20px;
            transform: translateX(-50%) translateY(0);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            z-index: 100;
        }

        .arrow-main {
            position: absolute;
            left: 50%;
            bottom: -180px;
            transform: translateX(-50%);
            transition: transform 1s ease, opacity 1s ease;
            z-index: 1000;
        }

        .arrow-main img {
            width: 60%;
        }

        .move-middle {
            transform: translate(-50%, -50vh);
        }

        .move-top {
            transform: translate(-50%, -100vh);
            opacity: 0;
        }

        .anim-object {
            position: absolute;
            transition: all 0.3s ease;
        }

         .home-arrow-main {
            width: 140px;
            height: 585px;
            left: 40%;
            opacity: 0;
            bottom: -210px;
        }

        .portforlio-btn-holder {
            width: 330px;
            position: fixed;
            top: 50px;
            left: 50px;
            z-index: 0;
        }

        .portfolio-link {
            border-radius: 30px;
            background-color: var(--background-third);
            color: #fff;
            padding: 10px 20px 10px 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 160px;
            height: 30px;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 1px 1px 1px rgba(251, 254, 254, 0.5);
            position: absolute;
            top: 40%;
            right: 0;
        }
        .portfolio-link:hover {
            box-shadow: 1px 1px 1px rgba(251, 254, 254, 1);
        }

        .home-paragraph-holder {
            position: fixed;
            max-width: 480px;
            right: 5%;
            top: 140px;
            will-change: transform, opacity;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .home-paragraph-holder p {
            font-weight: bold;
            color: #fff;
            font-size: clamp(0.75rem, 1.4vw, 1.2rem);
            line-height: 120%;
        }
        .home-paragraph-holder p span {
            opacity: 0.6;
        }

        .home-arrow-second {
            width: 140px;
            height: 585px;
            left: 40%;
            opacity: 0;
            bottom: -115%;
        }

        .home-arrow-second img {
            width: 30%;
        }

        .home-arrow-third {
            width: 109px;
            height: 109px;
            left: 30%;
            opacity: 0;
            bottom: -65%;
        }

        .home-arrow-third {
            width: 109px;
            height: 109px;
            left: 28%;
            opacity: 0;
            bottom: -75%;
        }