
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
                font-family: Poppins, sans-serif;
            background-color: #000000;
            color: #ffffff;
            line-height: 1.6;
        }

ul {
    list-style: none;
}

h2{
    font-size: 34px;
    font-weight: bold;
    line-height: 1.25;
}

h3{
    font-size: 25px;
}
h4{
    font-size: 23px;
}
p{
        color: #fff;
    max-width: none;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
}


        /* Banner Section CSS */
        .Arvian_Coworking_First-Section__header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .Arvian_Coworking_First-Section__header-container {
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .Arvian_Coworking_First-Section__logo {
            display: flex;
            align-items: center;
            width: 135px;
            height: 78px;
        }

        .Arvian_Coworking_First-Section__logo-text {
            width: 135px;
            height: 78px;
            font-size: 2rem;
            font-weight: bold;
            color: #ffffff;
            background: linear-gradient(45deg, #ffffff, #cccccc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .Arvian_Coworking_First-Section__nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .Arvian_Coworking_First-Section__menu-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: #000;
            letter-spacing: 1px;
        }

        .Arvian_Coworking_First-Section__book-btn {
            background-color: #000;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 2px solid #000;
        }

        .Arvian_Coworking_First-Section__book-btn:hover {
            background-color: transparent;
            color: #000;
            transform: translateY(-2px);
        }

        /* Main Section Styles */
        .Arvian_Coworking_First-Section__main {
            margin-top: 100px;
            min-height: calc(100vh - 100px);
            padding: 2rem 0;
        }

        .Arvian_Coworking_First-Section__container {
            
            margin: 0 auto;
            padding: 0 2rem;
         display: flex;
         flex-wrap: wrap;
            gap: 2rem;
            min-height: calc(100vh - 140px);
        }

        /* Left Content Styles */
        .Arvian_Coworking_First-Section__left-content {
            flex: 56%;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .Arvian_Coworking_First-Section__title {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .Arvian_Coworking_First-Section__title-underline {
            width: 200px;
            height: 4px;
            background-image: linear-gradient(to right, #fff, #5F8D8A 50%, #5F8D8A);
            border-radius: 2px;
            margin-bottom: 2rem;
        }

        .Arvian_Coworking_First-Section__image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .Arvian_Coworking_First-Section__main-image {
            width: 100%;
            height: 450px;
            display: block;
            border-radius: 20px;
            transition: transform 0.3s ease;
            opacity: 0;
            animation: fadeIn 1s ease-in-out forwards;
        }

       
        /* Right Content Styles */
        .Arvian_Coworking_First-Section__right-content {
            flex: 33%;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .Arvian_Coworking_First-Section__subtitle {
            font-size: 1.2rem;
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .Arvian_Coworking_First-Section__form-container {
            background-color: #ffffff;
            border-radius: 20px;
            padding:30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .Arvian_Coworking_First-Section__form-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 2rem;
            text-align: center;
        }

        .Arvian_Coworking_First-Section__form {
            display: flex;
            flex-direction: column;
            gap: .6rem;
        }

        .Arvian_Coworking_First-Section__form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .Arvian_Coworking_First-Section__label {
            font-size: 0.9rem;
            font-weight: 500;
            color: #333333;
        }

        .Arvian_Coworking_First-Section__input,
        .Arvian_Coworking_First-Section__textarea {
            padding: 11px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #ffffff;
            color: #333333;
        }

        .Arvian_Coworking_First-Section__input:focus,
        .Arvian_Coworking_First-Section__textarea:focus {
            outline: none;
            border-color: #5F8D8A;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
        }

        .Arvian_Coworking_First-Section__textarea {
            resize: vertical;
            min-height: 100px;
        }

        .Arvian_Coworking_First-Section__submit-btn {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .Arvian_Coworking_First-Section__submit-btn:hover {
            background-color: #333333;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Fixed Button Styles */
        .Arvian_Coworking_First-Section__fixed-button {
            position: fixed;
            right: 2rem;
            bottom: 2rem;
            z-index: 999;
        }

        .Arvian_Coworking_First-Section__tour-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #fff;
            color: #000;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .Arvian_Coworking_First-Section__tour-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        }

        .Arvian_Coworking_First-Section__tour-icon {
            font-size: 1.2rem;
        }

        .Arvian_Coworking_First-Section__tour-text {
            white-space: nowrap;
        }
        
        
        
        
        

        /* Animations */
        @keyframes pulse {
            0% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            }
            50% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
            }
            100% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }


/*Banner Section CSS */


.MAIN-Section{
    padding: 0px 2rem;
    text-align: left;
    margin:110px 0px;
}
.uder-line{
       align-items: center;
    display: flex;
}
.underline{
    flex: 0 auto;
    min-width: 120px;
    height: 4px;
    margin-left: 40px;
    margin-right: 40px;
    background-image: linear-gradient(to right, #fff, #5F8D8A 50%, #5F8D8A);
}

/* benifit section start */

.benifit{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
    
}

.benifit-box{
    flex: 32%;
    margin-top: 20px;
}

.benifit-box h4{
    margin-top: 10px;
}

/*host Desk Section */

.HOT_Desk{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    
}

.HOT_Desk_Box{
    flex: 40%;
}
.HOT_Desk_Box img{
    width: 100%;
    height: 100%;
    border-radius: 250px 0 0 250px;
}



/*coworking Slide */

   /* Main Slider Container */
        .office-spaces-slider {
            width: 100%;
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Owl Carousel Customization */
        .owl-carousel {
            position: relative;
        }

        .owl-stage-outer {
            padding: 2rem 0;
        }

        /* Slide Content */
        .slide-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2rem;
            min-height: 80vh;
            justify-content: center;
        }

        /* Image Container */
        .slide-image-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 0 auto 3rem;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            background: linear-gradient(45deg, #333, #555);
            transition: transform 0.6s ease;
        }

        .slide-image-container:hover {
            transform: scale(1.02) rotate(1deg);
        }

        .slide-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
            opacity: 0;
            animation: fadeInImage 1s ease-in-out forwards;
        }

        .slide-image-container:hover .slide-image {
            transform: scale(1.05);
        }

        /* Content Text */
        .slide-text-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .slide-title {
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #ffffff, #cccccc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInUp 0.8s ease-out 0.3s both;
        }

        .slide-description {
            color: #cccccc;
            font-weight: 400;
            animation: slideInUp 0.8s ease-out 0.5s both;
        }

        /* Slide Variants */
        .slide-variant-1 .slide-image-container {
            border-radius: 60px;
        }

        .slide-variant-2 .slide-image-container {
            border-radius: 40px;
            transform: rotate(-1deg);
        }

        .slide-variant-3 .slide-image-container {
            border-radius: 80px;
            transform: rotate(1deg);
        }

        .slide-variant-4 .slide-image-container {
            border-radius: 50px;
        }

        .slide-variant-5 .slide-image-container {
            border-radius: 70px;
            transform: rotate(-0.5deg);
        }

        /* Custom Navigation */
        .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .owl-nav button {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1) !important;
            border: 2px solid rgba(255, 255, 255, 0.2) !important;
            color: #ffffff !important;
            font-size: 20px !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            pointer-events: all;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .owl-nav button:hover {
            background: rgba(255, 255, 255, 0.2) !important;
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .owl-nav button.owl-prev {
            left: 0;
        }

        .owl-nav button.owl-next {
            right: 0;
        }

        .owl-nav button span {
            font-size: 24px;
            font-weight: bold;
        }

        /* Custom Pagination */
        .owl-dots {
            text-align: center;
            margin-top: 3rem;
            position: relative;
            z-index: 10;
        }

        .owl-dot {
            display: inline-block;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3) !important;
            margin: 0 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .owl-dot.active {
            background: #ffffff !important;
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .owl-dot:hover {
            background: rgba(255, 255, 255, 0.6) !important;
            transform: scale(1.1);
        }

        /* Progress Bar */
        .progress-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 10;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #4CAF50, #2196F3, #FF9800);
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Loading Animation */
        @keyframes fadeInImage {
            to {
                opacity: 1;
            }
        }

         @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* coworking-4 start here */

        .Coworking-4{
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            
        }
        .Coworking-4-1_{
            flex: 45%;
            border-radius: 50px;
            background-color: #ffffff;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 0 40px 20px;
            display: flex;
            color: #000 !important;
        }
         .Coworking-4-1_ p{
            color: #000 !important;
         }
 .Coworking-4-1 {
    flex: 45%;
 }
        .Coworking-4-1 img{
           width: 100%;
           height: 100%;
           border-radius: 50px;
        }





         @media (max-width: 1200px) {
            .owl-nav button.owl-prev {
                left: -60px;
            }
            .owl-nav button.owl-next {
                right: -60px;
            }
        }
       
        @media (max-width: 1024px) {
            .Arvian_Coworking_First-Section__container {
                gap: 3rem;
            }
            
            .Arvian_Coworking_First-Section__title {
                font-size: 3rem;
            }
            
          
            
            .slide-image {
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            .Arvian_Coworking_First-Section__header-container {
                padding: 0 1rem;
            }
            
            .Arvian_Coworking_First-Section__nav {
                gap: 1rem;
            }
            
            .Arvian_Coworking_First-Section__menu-text {
                display: none;
            }
            
            .Arvian_Coworking_First-Section__container {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 0 1rem;
            }
            
            .Arvian_Coworking_First-Section__title {
                font-size: 2.5rem;
                text-align: center;
            }
            
            .Arvian_Coworking_First-Section__title-underline {
                margin: 1rem auto 2rem;
            }
            
            .Arvian_Coworking_First-Section__subtitle {
                text-align: center;
                font-size: 1.1rem;
            }
            
            .Arvian_Coworking_First-Section__form-container {
                padding: 2rem;
            }
            
            .Arvian_Coworking_First-Section__fixed-button {
                right: 1rem;
                bottom: 1rem;
            }
            
            .Arvian_Coworking_First-Section__tour-btn {
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
            }
            .Arvian_Coworking_First-Section__left-content{
                gap: 0rem;
            }
            .Arvian_Coworking_First-Section__input, .Arvian_Coworking_First-Section__textarea{
                padding: 6px;
            }
            .Arvian_Coworking_First-Section__submit-btn{
                padding: 0.5rem 1rem;
            }
            .Arvian_Coworking_First-Section__main-image{
                height: auto;
            }
            .uder-line{
                flex-direction: column;
                align-items: flex-start;
            }
            .uder-line h2{
                padding-bottom: 14px;
            }
            .underline{
                margin-bottom: 14px;
                margin-left: 0px;
            }
            .MAIN-Section{
                text-align: start !important;
                margin: 55px 0px;
                padding: 0px 1rem;
            }
          
            .Arvian_Coworking_First-Section__header{
                padding: 0px;
            }
            h2{
                font-size: 25px;
            }
            h4{
                font-size: 16px;
            }
            .benifit-box img{
                width: 50px;
            }
            .benifit-box p{
                font-size: 13px;
            }
            .benifit{
                gap: 20px;
            }
            .benifit-box{
                margin-top: 8px;
                border: 1px white solid;
                border-radius: 27px;
                padding: 11px;
            }
            .HOT_Desk_Box{
                flex: 60%;
            }
            .HOT_Desk h4{
                margin-bottom: 10px;
            }
            
            .tr{
                gap: 0px !important;
            }

             .slider-container {
                padding: 0 0rem;
            }
            
            .slide-item {
                padding: 1rem;
                min-height: 70vh;
            }
            
          
           
            .slide-image {
                height: 350px;
            }
            
            .slide-image-container {
                margin-bottom: 2rem;
                border-radius: 40px;
            }
            
            .slide-variant-2 .slide-image-container,
            .slide-variant-3 .slide-image-container,
            .slide-variant-5 .slide-image-container {
                transform: none;
            }
            
            .owl-nav {
                display: none;
            }
            
            .owl-dots {
                margin-top: 2rem;
            }
            
             .Coworking-4-1_{
                flex: 100%;
                padding: 23px 40px 20px;
             }

             .owl-stage-outer{
                padding: 0rem;
             }
            
        }

        @media (max-width: 480px) {
            .Arvian_Coworking_First-Section__header-container {
                padding: 0 0.7rem;
            }
            
            .Arvian_Coworking_First-Section__book-btn {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
            }
            
            .Arvian_Coworking_First-Section__container {
                padding: 0 1rem;
            }
            
            .Arvian_Coworking_First-Section__title {
                font-size: 2rem;
            }
            
            .Arvian_Coworking_First-Section__form-container {
                padding: 1.5rem;
            }
            
            .Arvian_Coworking_First-Section__form-title {
                font-size: 1.5rem;
            }
            
            .Arvian_Coworking_First-Section__tour-text {
                display: none;
            }
            
            .Arvian_Coworking_First-Section__tour-btn {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                padding: 0;
                justify-content: center;
            }

              .slide-image {
                height: 280px;
            }
            
            .slide-image-container {
                border-radius: 30px;
            }
            
            .slide-item {
                padding: 0.5rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Focus styles for accessibility */
        .Arvian_Coworking_First-Section__input:focus,
        .Arvian_Coworking_First-Section__textarea:focus,
        .Arvian_Coworking_First-Section__submit-btn:focus,
        .Arvian_Coworking_First-Section__book-btn:focus,
        .Arvian_Coworking_First-Section__tour-btn:focus {
            outline: 2px solid #5F8D8A;
            outline-offset: 2px;
        }


         /* Auto-play indicator */
        .autoplay-indicator {
            position: absolute;
            display: none;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        /* Slide counter */
        .slide-counter {
            display: none;
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        /* Custom scrollbar for webkit browsers */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }