/* Ads Demo Form Styles */
.ads-demo-form {
    max-width: 420px;
    margin: auto;
    font-family: "Plus Jakarta Sans", Sans-serif;
    background: #a09d9c30;
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #e0e0e03d;
}
.ads-demo-form .wortal-demo-form-title {
    margin: 0 0 20px;
	font-size: 22px;
	font-weight:700;
    text-align: center;
    color: #ffffff;
}
.ads-demo-form .wortal-demo-form-title span {
    background: linear-gradient(135deg, #33A0BF 0%, #33A0BF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ads-demo-form .form-group {
    position: relative;
    margin-bottom: 20px !important;
}
.ads-demo-form label {
    position: absolute;
    left: 0;
    top: -22px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    pointer-events: none;
    transition: all 0.3s ease;
}
.ads-demo-form input,
.ads-demo-form select {
    width: 100%;
    padding: 11px 14px !important;
    font-size: 16px;
    border: none !important;
    border-radius: 14px !important;
    background-color: #ffffffd6;
    color: #2d2d2d;
    outline: none;
    transition: all 0.3s ease !important;
}
.ads-demo-form select:invalid {
    color: #969696;
}

.ads-demo-form input::placeholder {
    color: #999;
    opacity: 0.7;
}
.ads-demo-form input:focus {
    background-color: #f5f5f5;
    box-shadow: 0 0 0 3px rgba(255, 87, 51, 0.1);
}
.ads-demo-form .phone-wrapper {
    position: relative;
    display: flex;
    gap: 12px;
    align-items: center;
}
.ads-demo-form .phone-wrapper select {
    width: 100px;
    padding: 12px 12px 14px 40px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('https://textilecrm.ai/wp-content/uploads/2026/01/india.png'), url('https://textilecrm.ai/wp-content/uploads/2026/01/drop.png');
    background-repeat: no-repeat, no-repeat;
    background-position: 12px center, right 12px center;
    background-size: 20px auto, 18px;
    cursor: pointer;
    font-weight: 600;
}
.ads-demo-form .phone-wrapper select:focus {
    background-color: #f5f5f5;
    box-shadow: 0 0 0 3px rgba(255, 87, 51, 0.1);
}
.ads-demo-form .phone-wrapper input {
    flex: 1;
}
.ads-demo-form .phone_label {
    left: 0;
    top: -22px;
}
.ads-demo-form button[type="submit"] {
    width: 100%;
    background: #093d4b;
        
    color: #FFFFFF;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Plus Jakarta Sans;
    border: 1px solid #ffffff30;
}
.ads-demo-form button[type="submit"]:active {
    transform: translateY(0);
}
.ads-demo-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .ads-demo-form {
        padding: 30px 25px;
        max-width: 100%;
    }
    .ads-demo-form label {
        font-size: 13px;
    }
    .ads-demo-form input,
    .ads-demo-form select {
        padding: 14px 16px;
        font-size: 13px;
    }
    .ads-demo-form .phone-wrapper select {
        width: 100px;
    }
	 .ads-demo-form .wortal-demo-form-title {
        font-size: 21px !important;
    }
}

/* Animations */
.ads-demo-form {
    animation: fadeInUp 0.6s ease-out;
}
.ads-demo-form .form-group {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}
.ads-demo-form .form-group:nth-child(2) { animation-delay: 0.1s; }
.ads-demo-form .form-group:nth-child(3) { animation-delay: 0.2s; }
.ads-demo-form .form-group:nth-child(4) { animation-delay: 0.3s; }
.ads-demo-form .form-group:nth-child(5) { animation-delay: 0.4s; }
.ads-demo-form button[type="submit"] {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}