        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
            
        }

h1, h2, h3, h4, h5, h6{
    font-size: unset !important;
}


h1{
    font-size: 45px !important;
}
h2{
    font-size: 33px !important;
    font-weight: 700 !important;
}

h3{
    font-size: 18px !important;
    font-weight: 600 !important;

}
a{
    text-decoration: none;
}

section{
    margin: 80px 0px
}
      
        .hero-section {
            position: relative;
            min-height: 100vh;
            width: 100%;
            background: url('https://virtualofficeaddress.arvian.in/image/virtual%20image.jpg') no-repeat center center/cover;
            display: flex;
            flex-direction: column;
            border-bottom-right-radius: 150px; 
            overflow: hidden;
        }


        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }


        .hero-header {
            position: relative;
            z-index: 10;
            background:#fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 8%;
        }
        
        .logo{
            width: 200px;
            
        }

        .logo img {
           width: 100%;
        }

        .call-btn {
            background: #ff740c;
            color: #fff;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s ease;
            width: 190px;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }


        .call-btn .btn-text {
            transition: all 0.3s ease;
        }
        .call-btn .phone-number {
            position: absolute;
            display: none;
            transition: all 0.3s ease;
        }

        .call-btn:hover {
            background:#ff740c;
            color: #fff;
        }

        .call-btn:hover .btn-text {
            display: none;
        }

        .call-btn:hover .phone-number {
            display: block;
        }
        
         .call-btn:hover .f {
            visibility: hidden;
        }


        .hero-content {
            position: relative;
            z-index: 5;
            flex: 1;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            align-items: center;
            padding: 0 8% 50px 8%;
            gap: 50px;
        }


        .content-left {
            color: #fff;
        }

        .content-left h2 {
            font-size: clamp(32px, 5vw, 60px);
            margin-bottom: 20px;
        }

        .content-left p {
            font-size: 18px;
            opacity: 0.8;
            margin-bottom: 35px;
            max-width: 500px;
            line-height: 1.6;
        }

        .cta-main {
            padding: 15px 40px;
            background: #ff740c;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }
        
        
           .content-left p{
                margin-top: 15px;
            }

        .cta-main:hover {
            background: #ff740c;
            transform: translateY(-3px);
        }


        .form-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            padding: 40px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .form-card h3 {
            font-size: 22px;
            margin-bottom: 25px;
            font-weight: 700;
            text-align: center;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 10px;
            font-size: 14px;
            outline: none;
            color: #333;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #ff740c;
            color: #fff;
        }








        .pricing-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

  
        .pricing-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .pricing-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 15px;
        }

        .pricing-header p {
            font-size: 16px;
            color: #000;
        }

   
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: stretch; 
        }

      

        .pricing-card {
            background: #fff;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

     

    
        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .price-box .currency {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .price-box .amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
        }

        .price-box .period {
            font-size: 1rem;
            color: #fff;
        }

        .billing-badge {
            background-color: #ff740c;
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .plan-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #000;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

       
        .features-list {
            list-style: none;
            margin-bottom: auto; 
        }

        .features-list li {
            margin-bottom: 18px;
            padding-left: 35px;
            position: relative;
            color: #000;
            font-size: 0.95rem;
        }

        
        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 2px;
            height: 22px;
            width: 22px;
            background-color: #ff740c;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

      
        .card-button-container {
            margin-top: 30px;
            text-align: center;
        }

        .quote-btn {
            background-color: #ff740c;
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
            display: inline-flex;
            align-items: center;
        }

        .quote-btn:hover {
            background-color: #ff740c;
        }

        .quote-btn span {
            margin-left: 8px;
            font-size: 1.2rem;
            line-height: 1;
        }

     
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

      
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            background: #fff;
            width: 600px;
            max-width: 100%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            display: flex;
            transform: translateY(20px);
            transition: transform 0.3s ease;
            position: relative;
        }

        .modal-overlay.active .modal-container {
            transform: translateY(0);
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            color: #999;
            cursor: pointer;
            z-index: 10;
            line-height: 1;
        }
        .modal-close-btn:hover { color: #333; }

      
        .modal-image {
            flex: 1;
            background-image: url('https://virtualofficeaddress.arvian.in/image/Virtual_model%20image.avif');
            background-size: cover;
            background-position: center;
            min-height: 300px;
        }

       
        .modal-form-section {
            flex: 1;
            padding: 40px;
        }

        .modal-form-section h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #000;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd !important;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
        }
        .form-textarea { resize: vertical; height: 80px; }

        .modal-submit-btn {
            width: 100%;
            padding: 14px;
            background-color: #ff740c;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        .modal-submit-btn:hover { 
              background-color: #d17a26; 
            
        }
        
       
       
       
       .Virtual_Office_City_Section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .Virtual_Office_City_Heading {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 40px;
        }

        .Virtual_Office_City_Heading span {
            color: #ff7a00; 
        }

     
        .Virtual_Office_City_Grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 15px;
            max-width: 1400px;
            margin: auto;
            margin-top: 45px;
        }

       
        .Virtual_Office_City_Card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1 / 1; 
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .Virtual_Office_City_Card:hover {
            transform: translateY(-5px);
        }

        .Virtual_Office_City_Image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

     
        .Virtual_Office_City_Overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4); 
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .Virtual_Office_City_Card:hover .Virtual_Office_City_Overlay {
            background: rgba(0, 0, 0, 0.2);
        }

        .Virtual_Office_City_Name {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }
        
        
        .left-cdr{
            padding: 60px 0px;
        }
        
        
        
           .Virtual_office_Benifit_section {
            padding: 60px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .Virtual_office_Benifit_title {
            margin-bottom: 40px;
            color: #1a1a1a;
        }

        .Virtual_office_Benifit_wrapper {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

     
        .Virtual_office_Benifit_left_content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .Virtual_office_Benifit_card {
            display: flex;
            border: 2px solid #ff740c;
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            transition: transform 0.3s ease;
        }

       
        .Virtual_office_Benifit_card_img {
            width: 250px;
            min-width: 250px;
            height: 200px;
            object-fit: cover;
            border-right: 2px solid #333;
        }

        .Virtual_office_Benifit_card_text {
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .Virtual_office_Benifit_card_title {
            color:#ff740c; 
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .Virtual_office_Benifit_card_desc {
            color: #444;
            line-height: 1.6;
            font-size: 1.1rem;
        }

      
        .Virtual_office_Benifit_right_sidebar {
            width: 400px;
            position: sticky;
            top: 40px;
        }

        .Virtual_office_Benifit_form_container {
            background-color: #ff740c;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .Virtual_office_Benifit_form_header {
            color: white;
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .Virtual_office_Benifit_form_inner {
            background: white;
            padding: 20px;
            border-radius: 10px;
        }

        .Virtual_office_Benifit_form_group {
            margin-bottom: 15px;
        }

        .Virtual_office_Benifit_form_label {
            display: block;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #333;
        }

        .Virtual_office_Benifit_form_input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            outline: none;
        }

        .Virtual_office_Benifit_form_input:focus {
            border-color: #ff740c;
        }

        .Virtual_office_Benifit_form_submit {
            width: 100%;
            background-color: #ff740c;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 10px;
        }

        .Virtual_office_Benifit_form_submit:hover {
            background-color: #ff740c;
        }
        
        
                .container-12 {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-heading {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #333;
        }

        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            
        }

       
     
     
        .video-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 4px 4px 0 0 #000;
            position: relative;
            aspect-ratio: 9/16;
            background: #000;
        }

        
        .thumbnail-box {
            position: absolute;
            inset: 0;
            z-index: 2;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            transition: opacity 0.4s ease;
        }

        .thumbnail-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.3);
        }

      
        .play-btn {
            position: relative;
            width: 65px;
            height: 65px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            box-shadow: 0 0 15px rgba(0,0,0,0.3);
        }

        .play-btn::after {
            content: '';
            border-style: solid;
            border-width: 12px 0 12px 20px;
            border-color: transparent transparent transparent #000;
            margin-left: 5px;
        }

      
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none; 
        }
        
        
              .testimonial-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden; 
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        

        .section-header p {
            color: var(--text-gray);
            font-size: 1.1rem;
        }

      
        .testimonial-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
        }

        .testimonial-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            cursor: grab;
        }

        .testimonial-wrapper:active {
            cursor: grabbing;
        }

     
        .testimonial-card {
            min-width: calc(33.333% - 20px); 
            margin: 10px;
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease;
        }
        
        
           .stars {
            color: #f1c40f;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .review-text {
            font-style: italic;
            color: var(--text-gray);
            margin-bottom: 25px;
            font-size: 1rem;
        }

        /* User Info */
        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .user-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

        .user-details h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .user-details span {
            font-size: 0.85rem;
            color: var(--primary-color);
            font-weight: 600;
        }

    
        .controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            gap: 20px;
        }

        .nav-btn {
            background: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: var(--shadow);
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Dots */
        .dots-container {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: #dcdde1;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-color);
            width: 30px;
            border-radius: 10px;
        }
        
        
        
        
        /* Floating Container */
        .floating-contact {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none;
            flex-direction: column;
            gap: 15px;
            z-index: 9999;
        }

        /* Common Button Styling */
        .btn-float {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            position: relative;
            transition: transform 0.3s ease;
        }

        .btn-float:hover {
            transform: scale(1.1);
        }

        /* Colors */
        .whatsapp { background-color: #25d366; }
        .call { background-color: #007bff; }

        /* Focus Animation (Pulse Effect) */
        .btn-float::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            z-index: -1;
            animation: pulse-animation 2s infinite;
        }

        .whatsapp::before { background-color: #25d366; }
        .call::before { background-color: #007bff; }

        @keyframes pulse-animation {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        /* Tooltip text on Hover */
        .btn-float span {
            position: absolute;
            right: 75px;
            background: #333;
            color: #fff;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 14px;
            visibility: hidden;
            opacity: 0;
            white-space: nowrap;
            transition: opacity 0.3s;
        }

        .btn-float:hover span {
            visibility: visible;
            opacity: 1;
        }
        
        
        
        
        
        /* --- Floating Chat Button --- */
        .chat-launcher {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: #ff740c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            z-index: 1000;
            border: none;
            /* New "Wobble" Animation */
            animation: focus-wobble 3s infinite;
        }

        @keyframes focus-wobble {
            0%, 100% { transform: scale(1) rotate(0deg); }
            10%, 20% { transform: scale(1.1) rotate(-10deg); }
            30%, 50%, 70% { transform: scale(1.1) rotate(10deg); }
            40%, 60% { transform: scale(1.1) rotate(-10deg); }
            80% { transform: scale(1) rotate(0deg); }
        }

        /* --- Chat Window --- */
        .chat-window {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 350px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
            display: none; /* Initially hidden */
            flex-direction: column;
            overflow: hidden;
            z-index: 1001;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .chat-window.active {
            display: flex;
            transform: translateY(0);
        }

        /* --- Chat Header --- */
        .chat-header {
            background: #ff740c;
            padding: 15px;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chat-logo {
            width: 45px;
            height: 45px;
            background: #fff;
            border-radius: 50%;
            padding: 2px;
            object-fit: cover;
        }

        .chat-info h4 { margin: 0; font-size: 16px; }
        .chat-info span { font-size: 12px; opacity: 0.8; }

        .close-chat {
            margin-left: auto;
            cursor: pointer;
            font-size: 20px;
        }

        /* --- Chat Content / Form --- */
        .chat-body {
            padding: 20px;
            background: #f9f9f9;
        }

        .bot-msg {
            background: #eee;
            padding: 10px;
            border-radius: 10px 10px 10px 0;
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.4;
        }

        .lead-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            outline: none;
        }

        .lead-form input:focus { border-color: #ff740c; }

        .submit-btnn {
            width: 100%;
            background: #ff740c;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s;
        }

        .submit-btnn:hover { background: #ff740c; }
        
     
        @media (max-width: 1100px) {
            .video-grid { grid-template-columns: repeat(2, 1fr); }
            
            .Virtual_Office_City_Grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
             .Virtual_office_Benifit_wrapper {
                flex-direction: column;
            }
            .Virtual_office_Benifit_right_sidebar {
                width: 100%;
                position: relative;
                top: 0;
            }
            .Virtual_office_Benifit_card_img {
                width: 180px;
                min-width: 180px;
            }
            
            .btn-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            .floating-contact {
                bottom: 15px;
                right: 15px;
                display: flex;
            }
            .chat-window { width: 90%; right: 5%; bottom: 100px; }
        }
       
    
        

        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 50px;
            }
            .content-left p { margin: 0 auto 35px auto; }
            .hero-section { border-bottom-right-radius: 80px; }
            
            h1{
                font-size: 20px !important;
                font-weight: 600 !important;
            }
            h2{
                font-size: 23px !important;
            }
            h3{
                font-size:18px !important;
                
            }
            .content-left p{
                font-size: 12px;
                margin-top: 10px;
            }
            
            .cta-main{
                padding: 10px 30px;
                font-size: 12px;
            }
            
            .form-group input{
                padding: 8px 8px;
            }
            
            .submit-btn{
                padding: 10px;
                font-size: 14px;
            }
            
            .modal-container {
                flex-direction: column;
            }
            .modal-image {
                min-height: 150px;
                flex: none;
            }
            .modal-form-section {
                padding: 25px;
            }
            
             .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
             .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px; 
                margin: 0 auto;
            }
            
            
            .Virtual_Office_City_Grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            .Virtual_Office_City_Name {
                font-size: 0.9rem;
            }
            .left-cdr{
                padding: 20px 20px;
            }
            .modal-form-section h3{
                font-size: 20px;
            }
            .modal-form-section p{
                font-size: 14px;
            }
            
            .modal-submit-btn{
                font-size: 13px;
                padding: 10px;
            }
            
            
              .Virtual_office_Benifit_card {
                flex-direction: column;
            }
            .Virtual_office_Benifit_card_img {
                width: 100%;
                height: 180px;
                border-right: none;
                border-bottom: 2px solid #333;
            }
            .Virtual_office_Benifit_title {
                font-size: 1.8rem;
                text-align: center;
            }
            
            .Virtual_office_Benifit_section {
                padding: 0px 20px;
            }
            
            .Virtual_office_Benifit_card_desc{
                font-size: 14px;
            }
            
            
               .testimonial-card {
                min-width: calc(50% - 20px);
            }
            
            .faq-icon{
                width: 25px !important;
                height: 15px !important;
            }
            
            .play-btn{
                width: 40px;
                height: 40px;
                
            }
            .play-btn::after{
                border-width: 5px 0 5px 10px;
            }
          .floating-contact{
          display: flex;
      }
     
 

        }

        @media (max-width: 600px) {
            .hero-header { padding: 15px 5%; }
            .call-btn { width: 160px; font-size: 13px; background:#ff740c; color:#fff; }
            .form-card { padding: 25px; }
            .content-left h2 { font-size: 36px; }
             
        .logo{
            width: 125px;
         
        }
        
         .Virtual_Office_City_Grid {
                grid-template-columns: repeat(3, 1fr);
            }
             .testimonial-card {
                min-width: calc(100% - 20px); 
            }
             
             
             .chat-launcher{
    display: none;
}

.chat-window{
    display: none;
}

.chat-window.active{
    
    display: none;
}


        }
        
        