
        .body-main-new {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc ;
            color: #1e293b;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            
        }

       

        a { text-decoration: none; }

        .hero-main-new {
            background: linear-gradient(96deg, #c76bd5 10.47%, #3c0145 77.17%);
            color: #ffffff;
            padding: 80px 20px 100px; 
            text-align: center;
            position: relative;
        }

        .hero-main-new h1 {
            color: #ffffff;
            font-size: 2.8rem;
            margin-bottom: 10px;
            font-weight: 700;
            
        }

        .hero-main-new p {
            font-size: 1.25rem;
            /* opacity: 0.9; */
            max-width: 700px;
            margin: 0 auto 30px;
            font-weight: 400;
            color: #fff;
        }

        .hero-main-new-btns {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-main-new {
            padding: 14px 30px;
            border-radius: 50px; 
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: #ffffff;
            color: #3C0145;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255,255,255,0.3);
            color: #ffffff;
        }

        .btn-outline:hover {
            border-color: #ffffff;
            background: rgba(255,255,255,0.1);
        }

        .contact-strip {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1100px;
            margin: -60px auto 40px; 
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .info-card-mini {
            background: #ffffff;
            padding: 25px;
            border-radius: 0px;
            box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .info-card-mini:hover {
            transform: translateY(-5px);
        }

        .info-card-mini i {
            font-size: 1.8rem;
            color: #3C0145;
            margin-bottom: 15px;
        }

        .info-card-mini h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #3C0145;
        }

        .info-card-mini p {
            color: #64748b;
            font-size: 0.95rem;
        }

        .container-main-new {
            max-width: 850px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .form-wrapper {
            background: #ffffff;
            border-radius: 0px;
            box-shadow: 0 15px 35px rgba(60, 1, 69, 0.08); 
            padding: 50px;
            position: relative;
            overflow: hidden;
        }

        .form-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #3C0145, #a339b3);
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #3C0145;
        }

        .form-header p {
            color:  #64748b;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #1e293b;
        }

        .form-control {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #e2e8f0;
            background-color: #fcfcfc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            color: #1e293b;
            transition: all 0.2s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #3C0145;
            background-color: #ffffff;
            box-shadow: 0 0 0 4px rgba(60, 1, 69, 0.1); 
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            background: #3C0145;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 16px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .submit-btn:hover {
            background: #2a0130;
            box-shadow: 0 5px 15px rgba(60, 1, 69, 0.2);
        }

        #appointmentFields {
            display: block; 
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Messages */
        .message-box {
            display: none;
            padding: 15px;
            margin-top: 20px;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
        }
        .success-msg { background-color: #ecfdf5; color:#10b981; border: 1px solid #a7f3d0; }
        .error-msg { background-color: #fef2f2; color: #ef4444; border: 1px solid #fecaca; }

        .bottom-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .bottom-card {
            background: #ffffff;
            padding: 30px;
            border-radius: 0px;
            border: 1px solid #e2e8f0;
        }

        .bottom-card h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #3C0145;
        }

        .bottom-card-two {
            background: #ffffff;
            padding: 30px;
            border-radius: 0px;
            border: 1px solid #e2e8f0;
            height: 50%;
        }

        .bottom-card-two h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #3C0145;
        }

        .location-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f5f9;
        }

        .location-item:last-child { border: none; }

        .location-item strong { display: block; color: #3C0145; }
        
        .map-box {
            background: #f1f5f9;
            height: 100px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-main-new h1 { font-size: 2rem; }
            .form-grid { grid-template-columns: 1fr; }
            .form-wrapper { padding: 30px 20px; }
            .bottom-info { grid-template-columns: 1fr; }
            .hero-main-new-btns { flex-direction: column; width: 100%; }
            .btn { width: 100%; justify-content: center; }
        }
        .btn-last{
            padding: 14px 30px; border-radius: 50px; font-weight: 600; font-size: 1rem;
            transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px;
            cursor: pointer; border: none;
            width: 100%;
            justify-content: center;
            
        }
         .btn-primary-last { background-color: white; color: #3C0145; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
