.cf7-verification-form {
  max-width: 400px;
  margin: 30px auto;
  background: #FF8C00;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
}

.cf7-verification-form h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-align: center;
  color: #333;
}

.cf7-verification-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #555;
}

.cf7-verification-form input[type="tel"],
.cf7-verification-form input[type="text"] {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.cf7-verification-form .otp-button {
  display: block;
  width: 100%;
  background-color: #0073aa;
  color: #fff;
  padding: 10px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.cf7-verification-form .otp-button:hover {
  background-color: #005d8f;
}

.cf7-verification-form .wpcf7-submit {
  background-color: #28a745;
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cf7-verification-form .wpcf7-submit:hover {
  background-color: #218838;
}

.cf7-client-form {
  max-width: 600px;
  margin: 40px auto;
  background: #fdfdfd;
  padding: 30px 35px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.cf7-client-form h3,
.cf7-client-form h4 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #2c3e50;
}

.cf7-client-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  margin-top: 15px;
}

.cf7-client-form input[type="text"],
.cf7-client-form input[type="email"],
.cf7-client-form input[type="tel"],
.cf7-client-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border 0.3s;
}

.cf7-client-form input:focus,
.cf7-client-form textarea:focus {
  border-color: #0073aa;
  outline: none;
}

.cf7-client-form .wpcf7-submit {
  background-color: #28a745;
  color: #fff;
  padding: 12px 20px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.cf7-client-form .wpcf7-submit:hover {
  background-color: #218838;
}

.cf7-client-form .wpcf7-acceptance {
  margin-top: 15px;
  display: block;
}

.cf7-client-form span.required {
  color: red;
  margin-left: 2px;
}

.cf7-client-form p,
.cf7-client-form br {
  margin-bottom: 10px;
}

.cf7-client-form input[type="checkbox"],
.cf7-client-form input[type="radio"] {
  margin-right: 8px;
}

/* COntact Page demo css */ 
/* Main Content */
        main {
            min-height: calc(100vh - 200px);
            padding: 4rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-title h1 {
            font-size: 3.5rem;
            background: linear-gradient(135deg, #FF6B35, #9BC53D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .page-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Form */
        .contact-form-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .form-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #FF6B35;
            font-size: 2.5rem;
            font-weight: 600;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #333;
            font-size: 1rem;
        }

        input, textarea, select {
            padding: 1rem 1.5rem;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #FF6B35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
            transform: translateY(-2px);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .submit-btn {
            background: linear-gradient(135deg, #FF6B35, #9BC53D);
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: center;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Map and Contact Info Section */
        .info-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .map-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            height: 400px;
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .contact-details {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .contact-details h3 {
            color: #FF6B35;
            font-size: 2rem;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .contact-item:hover {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(155, 197, 61, 0.05));
            border-left-color: #9BC53D;
            transform: translateX(5px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FF6B35, #9BC53D);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-info h4 {
            color: #333;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-info p {
            color: #666;
            line-height: 1.5;
        }

/* 08-08-25 */
    #main-navigation {
        z-index: 999;
    }

.cf7-verification-form,.cf7-client-form {
       background: rgb(255 140 0 / 5%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.cf7-verification-form .otp-button,.cf7mls_next.action-button,.cf7-client-form .wpcf7-submit {
    background-color: #FF8C00;
}
.cf7-verification-form .otp-button:hover,.cf7mls_next.action-button:hover,.cf7-client-form .wpcf7-submit:hover{
 background-color: rgb(255 140 0 / 85%);
}
.cf7-verification-form label,.cf7-client-form label {
    font-size: 14px;
    color: #212529;
}

.wpcf7-list-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  margin: 0 10px 0 0;
  font: inherit;
  color: #f57c00; /* Orange */
  width: 18px;
  height: 18px;
  border: 2px solid #f57c00;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  transition: border 0.2s ease-in-out;
  padding:0;
}

.wpcf7-list-item input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
  background-color: #f57c00;
display:inline-block;
}

.wpcf7-list-item input[type="radio"]:checked::before {
  transform: scale(1);
}

.wpcf7-list-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  margin: 0 10px 0 0;
  font: inherit;
  width: 18px;
  height: 18px;
  border: 2px solid #FF8C00;
  border-radius: 4px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding:0;
}

.wpcf7-list-item input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
  background-color: #f57c00;
  border-radius: 2px;
}

.wpcf7-list-item input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.wpcf7-list-item label {
  color: #242424;
  font-weight: 500;
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-checkbox,.wpcf7-form-control.wpcf7-radio{margin-left:-16px;}

/*13-08-25 */ 
#main-navigation .menu {
    align-items: center;
}
.user-registration-btn {
display: inline-flex;
    align-items: center;
    gap: 12px;
       padding: 12px 16px !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  background-color: var(--primary);
    color: #fff !important;
    outline: 2px solid transparent;
}
.user-registration-btn::after{display:none;}

.user-registration-btn:hover {
  background-color: transparent;
    color: var(--primary) !important;
    outline: 2px solid var(--primary);
}

.contact-item .contact-info{flex:1;}
@media(max-width:767px){
  .info-section{grid-template-columns: 1fr; gap: 2rem;}
  .form-row{grid-template-columns: 1fr; gap: 1rem;}
  .contact-details{padding:2rem;}
  .contact-item:last-child{margin:0;}
}
