* {
            font-family: 'Poppins', sans-serif;
        }

        .modern-modal {
            --primary-color: #47DA71;
            --secondary-color: #2a2e54;
            --accent-color: #0092ff;
            --text-dark: #000000;
            --text-light: #666;
            --border-radius: 20px;
        }

        .modern-modal .modal-dialog {
            max-width: 1000px;
            margin: 150px auto;
        }
		.modern-modal#mobile-exit-popup .modal-dialog{
			margin: 80px auto;
		}
		.modern-modal#seo-exit-popup .modal-dialog{
			margin: 80px auto;
		}

        .modern-modal .modal-content {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        .modern-modal .modal-body {
            padding: 0;
        }

        /* Left Section - Hero */
        .hero-section {
            background: url("../new-images/popup/mobile-app-popup-updated.webp");
            color: white;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
            overflow: hidden;
			background-size: contain;
        }
		
		.seo-exit-hero-section {
            background: url("../new-images/popup/seo-exit-popup.webp");
			background-size: contain;
        }
		.seo-hero-section {
            background: url("../new-images/popup/seo-popup.webp");
			background-size: contain;
        }
		.mobile-exit-hero-section {
            background: url("../new-images/popup/mobile-exit.webp");
			background-size: contain;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: rgba(111, 192, 71, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 150px;
            height: 150px;
            background: rgba(0, 146, 255, 0.1);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 15px;
            line-height: 1.2;
        }
		.seo-exit-hero-title{
			font-size:43px;
			font-weight:300;
			line-height: 64px;
			margin-top: 160px;
		}
		.seo-exit-hero-title span{
			font-weight:700;
		}
		.seo-hero-title{
			font-size:43px;
			font-weight:300;
			line-height: 70px;
			margin-top: 30px;
		}
		.seo-hero-title span{
			font-weight:700;
		}

        .hero-subtitle {
            font-size: 36px;
            opacity: 1;
            margin-bottom: 20px;
            font-weight: 700;
			line-height: 38px;
        }

        .hero-highlight {
            color: var(--primary-color);
        }

        .app-mockup {
            max-width: 280px;
            margin: 2rem auto 0;
            position: relative;
        }

        .phone-frame {
            background: #000;
            border-radius: 25px;
            padding: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .phone-screen {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 9/19.5;
        }

        .status-bar {
            background: #f8f9fa;
            padding: 8px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .app-content {
            padding: 15px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            height: 100%;
        }

        .feature-badge {
            background: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin: 5px 0;
            box-shadow: 0 3px 10px rgba(111, 192, 71, 0.3);
        }

        /* Right Section - Form */
        .form-section {
            padding: 25px 20px 16px 20px;
            background: #fff;
        }

        .form-header {
            margin-bottom: 1rem;
        }

        .form-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
			line-height: 28px;
        }

        .form-subtitle {
            color: var(--text-light);
            font-size: 1rem;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-label {
            display: none;
        }

        .form-control {
            border: 1px solid #D1D5DB;
            border-radius: 7px;
            padding: 8px 12px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #ffffff;
			height: auto;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(111, 192, 71, 0.15);
            background: #fff;
        }

        .form-select {
            border: 1px solid #D1D5DB;
            border-radius: 7px;
            padding: 8px 12px;
            font-size: 14px;
            background: #ffffff;
            transition: all 0.3s ease;
        }

        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(111, 192, 71, 0.15);
            background: #fff;
        }

        /*.phone-input-group {
            display: flex;
        }*/

        .country-code {
            flex: 0 0 120px;
        }

        .phone-number {
            flex: 1;
        }

        /* Remove unused radio button styles */

        .checkbox-group {
            margin: 0.8rem 0;
        }

        .custom-checkbox {
            position: relative;
            cursor: pointer;
        }

        .custom-checkbox input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .checkmark {
            width: 20px;
            height: 20px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .custom-checkbox input:checked + .checkmark {
            background: var(--primary-color);
            border-color: var(--primary-color);
        }

        .custom-checkbox input:checked + .checkmark::after {
            content: '✓';
            color: white;
            font-weight: bold;
            font-size: 12px;
        }
		.custom-checkbox-main{
			display: flex;
			flex-wrap: nowrap;
			gap: 10px;
			align-items: center;
			font-size: 14px;
		}

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, #5da83a 100%);
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 15px;
            width: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
			margin-top: 15px;
        }
		.submit-btn.seo-exit-button {
            background: linear-gradient(135deg, #252527 0%, #863377 100%);
        }
		
		.submit-btn.seo-button {
            background: linear-gradient(135deg, #462dbd 0%, #a371fe 100%);
        }
		.submit-btn.mobile-exit-button {
            background: linear-gradient(135deg, #005DFF 0%, #2d96d3 100%);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(111, 192, 71, 0.3);
        }

        .submit-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .submit-btn:hover i {
            transform: translateX(5px);
        }

        .bottom-section {
            background: #ffffff;
            padding: 0rem 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #e9ecef;
        }

        .bottom-left {
            display: flex;
            align-items: center;
			width: 40%;
        }

        .expert-badge {
            display: flex;
            align-items: center;
            gap: 0px;
        }

        .badge-icon {
            width: 170px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .badge-icon::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
            border-radius: 50%;
            z-index: -1;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .badge-icon i {
            font-size: 24px;
            color: #333;
        }

        .badge-content {
            text-align: left;
			border-right: 1px solid #CDD7DF;
			padding-right: 40px;
        }

        .badge-title {
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 600;
            margin: 0;
        }

        .badge-highlight {
            background: #ffa500;
            color: #000000;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            display: inline-block;
            margin: 2px 0;
        }

        .badge-subtitle {
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 600;
            margin: 0;
        }

        .client-logos {
            display: flex;
            gap: 30px;
            align-items: center;
			margin: 0px 15px;
			width: 60%;
        }

        .logo-item {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
		.mobile-exit-hero-section .logo-item{
			justify-content: center;
		}
		
		.popup-testimonials-slider{
			margin-top: 110px;
			overflow:hidden;
			height: 330px;
		}
		.popup-bot{
			z-index: 999;
		}
		.popup-bot img{
			width:40%;
			position: absolute;
			right: -24px;
			bottom: -20px;
		}
		
		
		
		/*.logo-item img{
			width: 100%;
		}*/


        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }
		
		.lead-popup .intl-tel-input{
			width: 100%;
		}
		.lead-popup .intl-tel-input.separate-dial-code .selected-dial-code{
			font-size: 14px;
		}
		.lead-popup .intl-tel-input .flag-container {
			top: -1px !important;
		}
		.popup-recaptcha {
			transform-origin: 0 0;
			-webkit-transform-origin: 0 0;
			transform: scale(0.6);
			-webkit-transform: scale(0.75);
			-moz-transform: scale(0.75);
			-ms-transform: scale(0.75);
			-o-transform: scale(0.75);
			height: 54px;
		}
		.lead-popup .intl-tel-input .selected-flag .iti-arrow{
			border-top: 5px solid #6c6969 !important;
		}
		.lead-popup .intl-tel-input .selected-flag .iti-arrow{
			right: 11px;
		}
		.lead-popup .form-select{
			position: relative;
			-webkit-appearance: auto;
			-moz-appearance: auto;
			appearance: auto;
			cursor:pointer;
		}
		
		.mobile-exit-hero-section .owl-theme .owl-nav{
			position: absolute;
			top: 40%;
			left: 0;
			width: 100%;
		}
		.mobile-exit-hero-section .owl-nav .owl-prev span, .mobile-exit-hero-section .owl-nav .owl-next span {
			display: none;
		}
		.mobile-exit-hero-section .owl-prev {
			background: url(../new-images/popup/arrow-circle-right.png) no-repeat !important;
			width: 39px;
			height: 39px;
			transform: rotate(180deg);
			left: 19px;
			position: absolute;
		}
		.mobile-exit-hero-section .owl-next {
			background: url(../new-images/popup/arrow-circle-right.png) no-repeat !important;
			width: 39px;
			height: 39px;
			right: 19px;
			position: absolute;
		}
		
		
		#seo-dubai-modal.fade:not(.show){
			opacity: 1;
		}
		.modal-backdrop.fade {
			opacity: 0.5 !important;
		}
		
		
		
		/*---------------Error--------------*/
		
		.error-active {
            border-color: #fd2f2f40;
			box-shadow: 0 0 0 0.2rem rgb(231 23 23 / 15%);
			background: #ffcece54;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .modern-modal .modal-dialog {
                max-width: 90%;
                margin: 1rem auto;
            }

            .hero-section {
                padding: 2rem;
            }

            .form-section {
                padding: 2rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .app-mockup {
                max-width: 220px;
            }
			.bottom-section, .hero-section{
				display:none;
			}
			.custom-checkbox-main{
				margin-bottom: 15px;
			}
			.popup-recaptcha-box{
				justify-items: center;
			}
        }

        @media (max-width: 768px) {
            .modern-modal .modal-content {
                border-radius: 15px;
            }

            .hero-section {
                padding: 1.5rem;
                text-align: center;
            }

            .form-section {
                padding: 1.5rem;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .phone-input-group {
                flex-direction: column;
            }

            .country-code {
                flex: none;
            }

            /* Remove unused media query content */

            .bottom-section {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
                padding: 2rem 1.5rem;
            }

            .expert-badge {
                justify-content: center;
            }

            .client-logos {
                justify-content: center;
                flex-wrap: wrap;
                gap: 20px;
            }
			#mobile-exit-popup{
				top: 15%;
			}
        }

        @media (max-width: 576px) {
            .modern-modal .modal-dialog {
                margin: 0.5rem;
            }

            .hero-section,
            .form-section {
                padding: 1rem;
            }

            .hero-title {
                font-size: 1.5rem;
            }

            .form-title {
                font-size: 1.5rem;
            }

            .app-mockup {
                max-width: 180px;
            }

            /* Remove unused media query content */
        }

        /* Loading Animation */
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .submit-btn.loading .loading-spinner {
            display: inline-block;
        }

        .submit-btn.loading .btn-text {
            display: none;
        }